pax_global_header00006660000000000000000000000064132170641200014506gustar00rootroot0000000000000052 comment=87d81bbbbe8d0927aa900ec00968656bd9164e53 OWSLib-0.16.0/000077500000000000000000000000001321706412000126715ustar00rootroot00000000000000OWSLib-0.16.0/.travis.yml000066400000000000000000000006131321706412000150020ustar00rootroot00000000000000language: python python: - "2.7" - "3.4" - "3.6" # - "pypy" sudo: false env: - LXML=true - LXML=false install: - pip install -r requirements.txt - pip install -r requirements-dev.txt - if [ "$LXML" == "true" ]; then pip install lxml; fi script: - python -m pytest - pep8 owslib/wmts.py after_success: - coveralls notifications: irc: - "irc.freenode.org#geopython" OWSLib-0.16.0/CHANGES.txt000066400000000000000000000026471321706412000145130ustar00rootroot00000000000000Changes ======= 0.7 (2013-02-18) --------------- - Support for SOS 1.0.0, SOS 2.0.0, SensorML (thanks @kwilcox) - Support for TMS (thanks @cleder) - numerous bug fixes 0.6 (2012-12-22) ---------------- - Support for WMTS (thanks @bradh) - packaging support (thanks @kalxas) for: - openSUSE - Debian - addition of owslib.__version__ - ISO support: - multiple gmd:identificationInfo elements - gmd:distributorInfo elements - WMS - read additional Layer attributes (thanks @elemoine) - numerous bug fixes 0.5 (2012-06-15) ---------------- - Support for the following parsers: - WPS 1.0.0 - WFS 1.1.0 - CRS handling - URNs - URIs - EPSG:xxxx style - etree.py looks for lxml.etree first now - catch WMS service exceptions on GetCapabilities - CSW exceptions are now Pythonic 0.4 (2011-10-02) ---------------- - Support for the following parsers: - CSW 2.0.2 - OWS Common 1.0.0, 1.1.0, 2.0.0 - Filter Encoding 1.1.0 - ISO 19115:2003 - FGDC CSDGM - NASA DIF - Dublin Core - WFS 2.0 - WCS 1.1 - New SCM/bug/mailing list infrastructure - Sphinx documentation 0.3 (2008-05-08) ---------------- - WCS support. - Support for basic authorization in WMS requests (#107). 0.2.1 (2007-08-06) ------------------ - Added support for Python 2.5. - Fixed ticket #105: Don't depend on Content-length in the http headers for getfeature. 0.2.0 (2007-02-01) ------------------ - Change license to BSD. - Added service contact metadata. OWSLib-0.16.0/CREDITS.txt000066400000000000000000000010121321706412000145210ustar00rootroot00000000000000 * Sean Gillies * Julien Anguenot * Kai Lautaportti * Dominic Lowe * Jo Walsh * Tom Kralidis * Jachym Cepicky * Luca Cinquini * Brad Hards * Christian Ledermann * Sean Cowan * Kyle Wilcox * Angelos Tzotsos OWSLib-0.16.0/DEPENDENCIES.txt000066400000000000000000000000261321706412000152560ustar00rootroot00000000000000- elementtree or lxml OWSLib-0.16.0/FAQ.txt000066400000000000000000000000001321706412000140270ustar00rootroot00000000000000OWSLib-0.16.0/HISTORY.txt000066400000000000000000000012351321706412000145740ustar00rootroot00000000000000HISTORY ======= OWSLib 0.1: 19 October 2006 --------------------------- - New and improved metadata API. - Wrappers for GetCapabilities, WMS GetMap, and WFS GetFeature requests. - Doctests. OWSLib 0.0: 30 July 2006 ------------------------ - Brought OWSLib up out of the PCL trunk into its own space. - Updated the testing frameworm. - Initial test coverage: Name Stmts Exec Cover Missing ------------------------------------- wms 105 68 64% 36, 41-48, 61-63, 114-118, 125-155, 172, 203-205 wfs 74 69 93% 146, 166, 199-201 wmc 111 0 0% 33-220 ------------------------------------- TOTAL 290 137 47% OWSLib-0.16.0/INSTALL.txt000066400000000000000000000000641321706412000145400ustar00rootroot00000000000000See http://geopython.github.io/OWSLib/#installation OWSLib-0.16.0/LICENSE.txt000066400000000000000000000030151321706412000145130ustar00rootroot00000000000000 Copyright (c) 2006, Ancient World Mapping Center All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Ancient World Mapping Center nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OWSLib-0.16.0/MANIFEST.in000066400000000000000000000000151321706412000144230ustar00rootroot00000000000000include *.txtOWSLib-0.16.0/README.txt000066400000000000000000000074301321706412000143730ustar00rootroot00000000000000OWSLib ====== OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models. Full documentation is available at http://geopython.github.io/OWSLib OWSLib provides a common API for accessing service metadata and wrappers for numerous OGC Web Service interfaces. Dependencies ------------ OWSLib requires elementtree (standard in 2.5 as xml.etree) or lxml. Usage ----- Find out what a WMS has to offer. Service metadata:: >>> from owslib.wms import WebMapService >>> wms = WebMapService('http://wms.jpl.nasa.gov/wms.cgi', version='1.1.1') >>> wms.identification.type 'OGC:WMS' >>> wms.identification.version '1.1.1' >>> wms.identification.title 'JPL Global Imagery Service' >>> wms.identification.abstract 'WMS Server maintained by JPL, worldwide satellite imagery.' Available layers:: >>> list(wms.contents) ['us_landsat_wgs84', 'modis', 'global_mosaic_base', 'huemapped_srtm', 'srtm_mag', 'daily_terra', 'us_ned', 'us_elevation', 'global_mosaic', 'daily_terra_ndvi', 'daily_aqua_ndvi', 'daily_aqua_721', 'daily_planet', 'BMNG', 'srtmplus', 'us_colordem', None, 'daily_aqua', 'worldwind_dem', 'daily_terra_721'] Details of a layer:: >>> wms['global_mosaic'].title 'WMS Global Mosaic, pan sharpened' >>> wms['global_mosaic'].boundingBoxWGS84 (-180.0, -60.0, 180.0, 84.0) >>> wms['global_mosaic'].crsOptions ['EPSG:4326', 'AUTO:42003'] >>> wms['global_mosaic'].styles {'pseudo_bright': {'title': 'Pseudo-color image (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'pseudo': {'title': '(default) Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'visual': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping), gamma 1.5'}, 'pseudo_low': {'title': 'Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping)'}, 'visual_low': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping)'}, 'visual_bright': {'title': 'Real-color image (Uses the visual bands, 321 mapping), gamma 1.5'}} Available methods, their URLs, and available formats:: >>> [op.name for op in wms.operations] ['GetTileService', 'GetCapabilities', 'GetMap'] >>> wms.getOperationByName('GetMap').methods {'Get': {'url': 'http://wms.jpl.nasa.gov/wms.cgi?'}} >>> wms.getOperationByName('GetMap').formatOptions ['image/jpeg', 'image/png', 'image/geotiff', 'image/tiff'] That's everything needed to make a request for imagery:: >>> img = wms.getmap( layers=['global_mosaic'], ... styles=['visual_bright'], ... srs='EPSG:4326', ... bbox=(-112, 36, -106, 41), ... size=(300, 250), ... format='image/jpeg', ... transparent=True ... ) >>> out = open('jpl_mosaic_visb.jpg', 'wb') >>> out.write(img.read()) >>> out.close() A very similar API exists for WebFeatureService. See tests/wfs_MapServerWFSCapabilities.txt for details. There is also support for Web Coverage Service (WCS), Catalogue Service for the Web (CSW), Web Processing Service (WPS), and Web Map Tile Service (WMTS). Some of those are beta quality. Logging ------- OWSLib logs messages to the 'owslib' named python logger. You may configure your application to use the log messages like so: >>> import logging >>> owslib_log = logging.getLogger('owslib') >>> # Add formatting and handlers as needed >>> owslib_log.setLevel(logging.DEBUG) Support ------- http://lists.osgeo.org/mailman/listinfo/owslib-users http://lists.osgeo.org/mailman/listinfo/owslib-devel OWSLib-0.16.0/VERSION.txt000066400000000000000000000000071321706412000145540ustar00rootroot000000000000000.16.0 OWSLib-0.16.0/docs/000077500000000000000000000000001321706412000136215ustar00rootroot00000000000000OWSLib-0.16.0/docs/Makefile000066400000000000000000000134151321706412000152650ustar00rootroot00000000000000# Makefile for Sphinx documentation # # $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/$$lang; # # You can set these variables from the command line. BUILDDIR = build SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = TRANSLATIONS = LANGUAGES = en $(TRANSLATIONS) # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees/$$lang $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) -c . -A language=$$lang -D language=$$lang -A target=$(TARGET) -A languages='$(LANGUAGES)' .PHONY: help clean html web pickle htmlhelp latex changes linkcheck help: @echo "Please use \`make ' where is one of" @echo " html to make standalone HTML files" @echo " init to preprocess translation directories" @echo " pickle to make pickle files" @echo " json to make JSON files" @echo " htmlhelp to make HTML files and a HTML help project" @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" @echo " all-pdf to make PDF file" @echo " all-ps to make PS file" @echo " changes to make an overview over all changed/added/deprecated items" @echo " linkcheck to check all external links for integrity" clean: -rm -rf $(BUILDDIR)/* init: @for lang in $(TRANSLATIONS) ;\ do \ # We change the Internal Field Separator (IFS) because to handle filename with special char like space. \ OLDIFS="$$IFS"; \ IFS=$$'\n'; \ for file in `cd en; find . -type f -a -regex '.*\.txt$$' -a -not -regex '.*\.svn.*' -printf "%p\n" ; cd ..;`; \ do \ if [ ! -f $$lang/$$file ]; then \ mkdir -p `dirname "$$lang/$$file"`; \ (echo ".. meta::"; echo " :ROBOTS: NOINDEX") | cat - "en/$$file" > "$$lang/$$file"; \ fi \ done; \ IFS=$$OLDIFS; \ # Copy all no .txt files \ yes n | cp -ipR en/* $$lang &> /dev/null; \ done @echo "Init finished. Other targets can now be built.";\ html: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/html/$$lang $(BUILDDIR)/doctrees/$$lang; \ echo "$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/html/$$lang";\ $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/html/$$lang;\ done @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html/.";\ singlehtml: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/singlehtml/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/singlehtml/$$lang;\ done @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/singlehtml/.";\ pickle: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/pickle/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/pickle/$$lang;\ done @echo @echo "Build finished; now you can process the pickle files." web: pickle json: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/json/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/json/$$lang;\ done @echo @echo "Build finished; now you can process the JSON files." htmlhelp: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/htmlhelp/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/htmlhelp/$$lang;\ done @echo @echo "Build finished; now you can run HTML Help Workshop with the" \ ".hhp project file in $(BUILDDIR)/htmlhelp/." latex: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/latex/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/latex/$$lang;\ done @echo @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex/."\ @echo "Run \`make all-pdf' or \`make all-ps'" pdf: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/pdf/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b pdf $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/pdf/$$lang;\ done @echo @echo "Build finished; the PDF files are in $(BUILDDIR)/pdf/."\ @echo "Run \`make pdf' " epub: @for lang in en;\ do \ mkdir -p $(BUILDDIR)/epub/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/epub/$$lang;\ done @echo @echo "Build finished; the epub files are in $(BUILDDIR)/epub/."\ @echo "Run \`make epub' " all-pdf: @for lang in $(LANGUAGES);\ do \ /usr/bin/make -C $(BUILDDIR)/latex/$$lang all-pdf ; \ if [ -d $(BUILDDIR)/html/$$lang ]; then \ mv -f $(BUILDDIR)/latex/$$lang/OWSLib.pdf $(BUILDDIR)/html/$$lang ; \ fi \ done all-ps: @for lang in $(LANGUAGES);\ do \ /usr/bin/make -C $(BUILDDIR)/latex/$$lang all-ps ; \ if [ -d $(BUILDDIR)/html/$$lang ]; then \ mv -f $(BUILDDIR)/latex/$$lang/OWSLib.pdf $(BUILDDIR)/html/$$lang ; \ fi \ done changes: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/changes/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/changes/$$lang;\ done @echo @echo "The overview file is in $(BUILDDIR)/changes/." linkcheck: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/linkcheck/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/linkcheck/$$lang;\ done @echo @echo "Link check complete; look for any errors in the above output " \ "or in $(BUILDDIR)/linkcheck//output.txt." labels: @for lang in $(LANGUAGES);\ do \ mkdir -p $(BUILDDIR)/labels/$$lang $(BUILDDIR)/doctrees/$$lang; \ $(SPHINXBUILD) -b labels $(ALLSPHINXOPTS) $$lang $(BUILDDIR)/labels/$$lang;\ cp $(BUILDDIR)/labels/$$lang/labels.txt $$lang/include/labels.inc;\ done @echo @echo "Label generation complete; look for any errors in the above output " \ "or in $(BUILDDIR)/labels//labels.txt." OWSLib-0.16.0/docs/_static/000077500000000000000000000000001321706412000152475ustar00rootroot00000000000000OWSLib-0.16.0/docs/_static/jpl_mosaic_visb.jpg000066400000000000000000000411071321706412000211170ustar00rootroot00000000000000JFIFC    $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222," }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?Ҵ˻}n#e(ϖsЊ`D nT`.q1YlN'9v aZN6jIr E%֡VgS$jc#ha6};ҒEBMc$dTm(@B3z}ֱoeRm3JPdO%Fqb.d (bB^*BII"OظV+KrC-lm>ͽblx>|͕ fPgk(OUW#"epsyvZTZSWKyETqe7pAziP,r>ck{Siș4ylJ30VU[#Jݺ6G*1Vʆ`ŝ1Cm9XLaG^NGG5-e_u3HdU  '*Os*kk偖qRT(_aUaH=imCT2-Aeqbv,JK?lLv! !$[@D 88N6?Qf^FNJӷ{j062r >qTa1Ə&+be,zPb;Ian+.tZOD)eB#hl|pH\4pN8wnS-B;+f b 6A,-O#X3و1")^rҮ[c";qq\yJ 7+qdxypo~=j>bQRA/, .uG8'@[z:>4XF}{Ոo.$qxe@*PWd,jQOcת$47#};em b;zf 3"*Z#m:t`!ha?JeLA|ў#P52Hcl,9o6{XI0Y8#9<)/G$D"(2x\gW3hkV"4-'seDM0N21Ҥ6;&SFXʻ$ʍq֛%?>NyPX=j oʪͪJ?fyc8{aY+1u nm'OUnp 5QFsO#H8Sfi'$#};Gno/"  TEź,7 fFI5AځK|H}괪ɝCw1ZwQ[‘A~2H1ժfRNv wҁ,SX ʏJ~YG|JȶZQdxMP3\8LH? G-a˙1zz2$7zw:ib-4۰SUȡhՉhըX3?(dΥ%<cv pO=pk;+Z.՞0\Sż*|?/9ƯUmFy2ˌ Y[r #,ݻbHBLʒdaI6#v0 'c%ܝ-e`ujE۟U3<<$m8",cs_6)JogdF2îZH<Ŵ%g@Y~q߬j{)dS$ *yzj4ٖ;@!q}jQ2e'X֚[Gq3k0= d( |!ҵfV1Y7,x KhiV0A#EޣP%טy\qMĝ:\zt[pڥ  cwQNJHԝѿ*C):#Xa]sc>WHyT2pG=}Gw: 3?ORAssQ@YY[|p=Jf/kU9_8 .GB,U#*'Q?PG8ɫc$ۢR# pW^GvTHsL&XپlH8G}H6~zrxYz5^K˨bQ`I",ҡ빪fj,DBW#ޟL\y #0%qۢHNWz11Šݹ= I]^9>:gHf !D.pr5L op9*^dx {w5tł+u'v,${p= 6 ҩRy89;VƯm-`ulX,Y#e?4&yߒ12 ryI2o~py4,Q9x"swkjh;yHy7{sV%hǒ`dYrxդCv$@]d 09Z[`Y`;Un/";(v֦O6%x6g{=@q8oeҮNM1hszk zqRR5.f2[ >aN*Ǟ*݉޽}6FN;4\>`bYKxs$yNwjEUJ2`~5,YdpyU=mUIw [if!A[NWP`8;#6eb@G#1de*088Yaҗ5Q$ѹE\[sxz_(0ge:Q eYfp0?J"}Feqpf1T|aOUUӹd)o'y6ILV&Ȯ#pfieI AdqYGۿIh d}{Nt b(+*zN4$4,~t9-{j]:" V\ïY2_IW#SDɳn!w4PqRiikp\f`@* r@7kd}boȼdNqWb$ k sA /U0IzKr8gy)Gp3֫ Ƒ`qߜQ)v7FtCбqXwLŠsT֨H%X"MWZ$dyr ԧ'ޚ. #m|m`JwtħM&~f;3W('* 1p;rw!`si1`$#ݵI*z{{VE. P5XIfT$QWϞL E JǠiOG ? 6 I iDmY{0!°f zW:gW*ݔ%{hX5?OY6HbHd9+4ۨw]4f5cV'wR016f UHrB~b`gjxc1޶m,a 6ểYOchAn*B(HXz_†;r2hYspT*H&%H,Ku?8i#sciUؕ\Wj131JRcP㱪4RL}+nMDc'*MP "]c%ve!„x?@GJȠrp@9Ir!rGuٕdⴃe4+K82XCG?>ݼNzXm9\pǭXDU 1urqm9g8'?ZصQ0^̨ƭD6 w+W.GpI+!9k)N#XڲM#r'ܗu:9L]gsA%̐!$nb+ |sI@QOe^DC]߁!C6=ǷV`C1>&ON/:(fUgII )52*A\8J/~ORS#Sd*{8udJ!*95=5/ZV;{@2x^ޖb`xqҬIxb bp3VCOHZ9,2!#3 WKձ9@xvqly銛gk"2#fNvi09F #S$7WkNdc7bnR>5@ە'nƊDʁh1{UgkHloB3tsx~5d˴ey#5 -b xeNQ dgSwB-eO?a akn;9j>|G_\˶D$623 K>R-x(OϞGSJA.ÌА"(R݇r+^Tї3LTJ3L~LdP1ZVI"@x 0sԖ@ @VCR [&pw1?2sWI3|IUjnd 9³.P˄r@>sc?C]=]2Hc'9ln>dػIf3w e@^[2yfRr_iJ A(ʢK'*U}) Uȸf(1Kzz |B&KԤdWRy+Y"y?osNn- gL'5V6s 8^ړ͊[Րry^28$ tr#qǶM,\Pwv&}! (sU$ASt'Or/ˡr'~Pq51^n 6߷W)pxmNkchF, 0$Vushqy8^Ͷ3GvvF /:GܑzVWr 21Je<>;Ԡ 6 Trgf}+68V8rw&Gx#U9 .:L9`ƒvF|Cq$f9vڹWA"I˞[Od$ g8jm%{,nq$1\U7$lrx9⧵"4@9ӞK"\prPԄ >L@PIrn0 aK⧡z{ղıCӸZ'Ws#@Q\OKޮШ?(Х8:9F&eQ8 oT+H[k~خb _]Sp"T2A錯j`,P~}jR$6wq=VK]dQЍПzoE,.x#p{ vob9z 4hT}M}G#8fn; 4΄;YuW$-uLˆ8<6LiĻUHRDL̉pVH};2<q{"hrɰc\,N@kDGg޸95iI0 5S!z՘(`ir|D-+pd<}Mh ~#UuW=kX˹:}Qj$iX#XGlU݁6~]Ҝ6 bn+,l 'i9(v؝U6esF G?1sE\Dq6ݮ@ڮKAd'OrxҡF@-\?j;O׈m8#F}*y~XXs֥+tsTs0~bO*mFIq$#H7:{py?541QզCh3\$?U!isJZl5 .XDa&iB?[оfF ʂGOJU"&1qvb}1^adw9H%pwoip`tv 88'(%Fw+7WL?PzmYe9l𧠩 Pr_iۃ98P&ɖ ~~T!`U@t4O~y*prϵhل婀LUa9=NXK0 ~'ҩSd:{#}EV]HO9& g'䟭Ogև{ڍ7 q2GYxe $Cvx>fHzPjl, d9#ZŒ9'Tj3@JVjyT)UqLiG:kC,q,L_ݥ{R9SRT'i$85Q)fm;֦ t+Dwa@3%!0kTO7B cw<Ǿ$$/䞘L/Ww' Cuٌt[go۟/Nq\gQ*l@\pc NQ 0TwlH(QYp=*k}Jcw;W61\a֒)gytH _Zm&Ș)xǭ=Eܐҝ =lI\ѲEܫcGkJ:kUYwS$#$ci-aF,#U*A: $] *xϡWfdԶFq'h99=)J7oRnʅ‚8<|Z" q1,)Z]`rx\/qTbZ'tgnVkFJ8j-NbpvZNbǎx\DQIv>Ӓ>LKb8UD*`d c8P<>z=;>SWZg(q$cP3ך%Py_R9(/GcVӮbu; g>}:3WC"kd$#}>儗gE :{V8S:Jx#Ak ?J[xsb F1s99J@cjNy5D2,.2,# N=+Q¦ͅCUqֵ9}"]>Xnz-=qW"LLT0\ϵ̪qJBO9*_$ ަ6cujWCkb촒>E"Eiր ps?[*;[ecj׵9Y-IeXN'鞧4 #mO9 ҕC@h7ʦVZƟQ$;۸16@oeJ d!@: WiԊ\R$yQ%=AlXrj5RL|ݳދX\yDsȫq+8+'ʶ+.E{w/(rPJTCjѣG qGKK>eo.X9@nk>r1FEX.̶hKjjrba,hDrZ{4 W5XYqByOU&ew!NxDm>l+UVkV;#4[r G+'sy8y,ۋ21AEZv3ȅ"D0$1gsB z-UVEEr8=3fRM4Cz3-Y̊2*qϱ$)&dPTuIY X`R|K{mwc6!r}{28;=yҵ.<ޚy!yUr9]n +uź I|۵qVU\ÃK3`# ɩLDZgm5Ha{LⴄqF"y!8=KK`/=EZ@ù36fn=HQ!@L$@ <o,/H8$*n("VgZJ#2,pGˁ'U٨ 8ϭZHnQMf9z&2y9=#w؆V6\/LKfMب1ʌ{sқ'Ecvu%mⷋ39=I5S_FTM9/-1$^C9rхErFvzV|Z|(d_C3 rXOON>ԒZOCV&k5u>GBf$k)% Fz0? Vi6U9PҒXTgwuoЕFnS n癈E{ׯUW**oV**Q(#T1IL)@ԍё 8TeRG|uK!$CCR{f2I'Q<nl(jS`gJ0 /ⱶ?̽ҢݧzcҦO-tveh 'E &Z"v6v a;P0b8l9[j`x#8< kJ_D֨p9i̦)ʥ 񁜓MD^Qq4dΫ\>U#JِuiǥSYaX8v= 00Fr1C4r/QY6~W`q# 8795;3Җ9c,>sүG}P,pvNkIg`D+3v~u%vw'QIo,(aО8Lvg,Ĝ뚱YYL/4qҡ#ݸQIz5Ca$T ̌ʃz*2 W'n,2B֎'W+v\PɴeW#jtH ; 0( QUu y> Sg䐠ރ֮b(*Xq5<vUuԞW)bR&X Ď<Չ-YYrz}?Zr G>pbxK{WEy*gnsƳ>۰gr}W1m1P՞jk7*dFq;q?=}K ]q.{b^vP'i$McFG" >>l=S―Ij^&BuӚIǃSb!Cqy>xrGtBx8n=*|5$,Hd5 .WUZM'Y=OZ2X8-bB@IE+&j֦oC[SsyA yY9ۡTʝkXbLڤ4,֐2psձ2ufl<͐XT 31ѧ.B1䞦7J\iPŸ20p9"32F=qZ[Y{㚫o4@5O+oҺ92ve60.0}s].P`<ұb rkjԩLj얈%_:Xݾc!N=˩8fcInMi:YWJe%V?Z= P1b0܌0DZHSxarO#S }ʄA`zB/(THFNGdtsQv Tpy<gD#`5MKsm sӭjev;bLc4&A*A ~NxvHę- 0{Dwi1"f z}jb YgPs隒'PᔮrOZd;Jw*X08}'aqE,g 6#+g<+cO @{6KϺG<ꫣ*1Zɋs ONqVw@AN r+77@f<5n8/P8a[h.~;q\'ͩq:>*.OSViX74 {Tq’FY5^N6n]AƦL@҇GJH% F{ԆTnOjRl(?SLdmɫZc'ˢ1{ *CqVJ*qY(:Vd rzi!sV%#V8&+Ui gi,zR'A;}kAdIyRg\=暭 F7!/L*ek _Xg@p=jFP 3j`;g͓ɨbY#M w(x y"'Y-"(B58ZI[o8nAOlkb7m zfG%*\qO^GWa lq8f'Z:]і{n^N:ҲwSqӛhO^:E$U%9@9V2Az"0q27|ĜSDv1-Cb,I74InB?BXV'@:qA󚅷m{ gT4%Ux2hDRe]l84E088"ܢ!y=lh#j'ք33WWo /W7S,3銵+ @pNO~*7$#2Qʡ+"3FijnHAjړu̩E<GUn&ۢ +]mzUcovqLd(7;?P÷Z-0k`ZIFOP{U^Q RfMYFJ(^{ d@!TF#Z|Ѹ+2ቹpILWA<=(ٻ\n9 L㞕vswӃFù"ITqTQQBX+d՛ߖB8>TXoc7Z-rqR\=*[oR{=rǧh #YhΥ#,1`2\g4S7r;QR} 9AU.8dTm <gF࢘2"`ʬ\EM;E#eXOJA#ɫ 5@㰪Bfs*1WZ}rnjLbCp u^} Ad,' 4gj{[ F7~{p݈ Hm!Z]Fy"hlЕcOWSLib-0.16.0/docs/_static/nasa_modis_terra_truecolour.jpg000066400000000000000000000362121321706412000235520ustar00rootroot00000000000000JFIFC   %# , #&')*)-0-(0%()(C   (((((((((((((((((((((((((((((((((((((((((((((((((((" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?R((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((+GMu-QwlN ΢8UuХҺ;s7h"[q|WG_B~%Ң'qz~DM09PS]7Q_Gٶ:?V-ce h#QfG4W8˛o!F+ǯ5@Ϙt~8<:gصfXUŬ@Mh z(Š(((((((((((((((((((((((((7<;kul0IpCXlc}L(b؃ 1t+׆G8a=_yB^jLCm<,r̜}xz/E#NtbԶATn4478?4%:vdU+}ifZu:,1֮]9$HN0!Qr$|9rh6̛$ ?2($~9򨅙,dP'9?ze.@hI<8:ynVls$*""={VnMbj@YGA)B6Ҩ7^tˆec0`Μ4|XہbdE# ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (=+rOá0H}sAnDDkنm[M/'5}+GY%Té򨛶E\m2) )STR ]h4O]:bÖ*xԞ5n m[Nkst èprҸ a(IZARfi?CZEѭjYJ,R%U8g˓@Su7n[|{sҬi6f^;y@#N{2moWjǥcgy(I'pFW>tBk6SE:1cާt=GJudr쮪>_! qﴜ~8bО C {_ :Z8X$O#銗Fl-q)0?)'p=ZD,46xHX*|\mn4=m=/V~!ev# l W4gƔ7C>F:!b70\G#,0k7i&w-5OWxI_niIC$JAҨlA,jw8QVU y@ ~Vr|#վqJJOpF=:jf/c{;q.'}[MxӀ~ZK$hg\3,08X=^SPcsֻmWSKۦǰC[p7'OQ^$7* D!#&Phύh ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( (>u?5 .]\ji(DQ^>\A-$~bx;u^E#FL5Iw,K.0/5wGFVp7=*w/CWڤ6,C<+Qq5c41LnFӷVoq$w&f!_W6}T6ԏɀz3(ouM.YyobC'&@O$1$`c{ ĵG1c#kbHlYiڄisbX(vںۍ2~6m-HYa_ƑGi:1?(+muɩMxU=̗}q޸)g_z_eԂJ6ی#ҴrRkub9N~=rm5cTUB-xQ:u# y#?Aƺ_Qt`+*\.l-f,bڹ?{g}:{ME2۬0\ 95]fRN2 +LsC'>߹᱙Pnf;p;t;In_)VG`cӮs>`-VZo"Fն'8c (؛ApZVss=ĐA?w WuZSqs%;C 8+}˽l$inS}~;/#:՟qBh(PښC>eM嶉dXgdE 7 עxcW~<iHd㑞Ԏkv=ǹ;bvWxL͡'3'ל:2}袊Р((((((((((((((((((((((((s>Î73\-w}KiNb#8u%\NmPkKw2 trO8 2HϦ+|)Kw^[^٤g%9#22+o.g(dq׭ki:ަ,,efv1ZzU. ZCܲeȑ/ Ky>5r˸&}yi}՞`ܷͧOʪ?QmIҵK(u;";b*܊n$9u=zkÞ(kn!7N2Er@n< yNX5 l5 EX?̠|?@lwZa})QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEz/ýT:EƳkhK7؉1+֦ԮfY켤O*~7YeoowphAu4{p Aϧ^]ol*ȷ!V;e}ߘv;k^1J4%u?{k|lnx7O+Ewa%RBy}^$azEŵ˸VE#H>oj`QK$@,wǥ{5;g;Gs<`ǡ$#ӊ~@koNs <*5kwOwU ,&h@UUE=33J}/M֔x۰_,Vq[ 9# r<֝vVf#漀az6 Q4˹) Kiy$s4Ej9fƣ&V x\{R|h>LPba?bPE]Jk8r8'Һ7K kKKE dDu|al®Z:R~H:ǩ$Xo8mp1'=I>9ƍiVVv[ '@=u'Qt^;|_˞;y#Uʱ q9wWq%Vq}Co+"rKw=|EV%Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@h~:ťY{^86g⻫~XUscE_ެ hu\?^ ^IaR,};v_aaFX%Zt:xg=?եAYL|n]h,-*AW>! F FA9%Ӵۀ]eT=Ey&{Xwc}Y80u 6VҖCmOa=y#'aÿo^H/uxI6!8?o9x]J{Aji%'&= H \+<'I쥴 w]yS?6Qs{%ʷez,sƏ(̠(((((((((((((((((((((((@{υ)i?!2"H-* !岤Bp>^YH: [ۏ6F#?S5{ᶯ@'mMu%kC|ך,3)GQ^= k+w x$ 3!V6?\z{R%ŝIK|U ~jAC{jqJDu-<8M#lo-KӷN7e$s b4+ *oAfϡk-Ԭt]VIUïQ*|oP.gֹX].6m򼄓q#}9zu_ D2K»pW}1=SL4/6Ţ[7H8\VmDYTasYYx.YTW~vI&hgWDҧ̨dzzr3y!s"b_|:.ܩ?~|3j#(E;@8Hώ^l6洓# {n=y, ũ` fG#s8SI7.֕A',9`nf' 3^Yt{Oskt1 :Eq^  x^ֽ_4\w#S *$O4~|EQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@(I^3Ym^VxY*=h}výR=OW 2F' ^N+g)/ɪIz;[}8D!5OytqNqЃYؗ kGԉu$',=@'8'ӞBP[Q{TtW ͩd}$B:=sWlc7Zz g/!i b:s1w{ dr܌{=j-4"2#yaz.Mzڝ m,݉H{A冝[N*ܻ l iVBIu=4;Q{Pj ]x\Lub@U~oʟ16'km1{nes3ֻx2 :whď$J#8xJl 0[vPQh\\,-t ?[m!j-/~ѧ<$Oz^ijFպ.`=OJlgĩ!R0F{[e[w"y*qN+>k7y)g==v0@e9 =:uV7[("'k縮QЋ,o"cC|'kRO+2Š(((((((((((((((((((((+[ e uvWC3GaS[["y32A;O;W@y/ĝ/O5d%w9I>U6[,lHQNlGvk7rL6cg Wӧ+&&HFξnjw3Z_B[`dP8+2ytq=eK,Z'h^Wjl_IY$sX}9q eq=}/(z>^Ic2. ?3DN J%VQO'^y&50w8#CI(w#Im!W~\×Ӿp4k# :fz?RPy*ޠv:Mڴgv$2Ͼ)$_? QEHŠ(((((((((((((((((((((kZCxHEӏd^V$}ESG`8&35[]iW6W#l?zhiŪ Mbݾܦ1MΝ4Ӫd\/{ҩIw2p#_$8F1^AsXH;ƿ]-|oZx+hqks sߚCgAi O<;< 3_9Hnoeb=cqG9u:neW )H]iؠwj텥TYLJZ R[!rq8ےGלf[/R[m州|/Wfeadp35IjPܕ| c}A --ɵ;n鶱M7N0==}+Ӯ?؎_|&o*1p{ǭrڟh E80mhub0rO{TVǩ|F I% ~g< mz9[jOsm͝nv:< [ KvegY#܎vJ먣Ayok2LO<4fŎQwCe{ }+5:vCU䰍A U50|3ehǍN>t_Xzj~{:mWWL Ҫ(,mxV^X eDf#6QU7+مtDSbfZ*l@: [xuۂl/e/>̛{p#/$9i1\zj(aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEzMW0,vU@2T'׮v 7_[X~DJ?M{;dqon~?giKew:wpXW>5g᷋JTDuhN_JtF x_BU<njQ`G?e^_j1LfXGẽ%I,4ĻR]i2; G9)GiV %۴qYAwR8#H*( }10TyPٍTq8ih_ebo*@T͸ [Ttbiu ;zrF&\FA @?Sʷ0¡uI6򪵀e"t۴-q5 K[l]Āp'8iYXL,-AșsgR"<֩-bRwg5Fm4YR0N[<#Z<"q#4dXc=gMɖ{_r Iw$ioo{a r0ob iESQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEW?:` h }ffڟ)$Oҩv#4eo3+n9zQ'VoiW'S{WbKԆl=sM~i8+ފCE((hŢ(7j8sE+bqҝE`L8jB“9N P(19cOQc$ih (f8&Z){Si7{PHiǭ.Ꭳj(Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Ko LD3#U+a{ֱ%?+~ nj!Onʯ,̧*RB@N{c`>m#@8&sIt+U4}ۏe$qJH_ё1=_$u#G@QK0*˨meicKv z9@Z+xXGP"hz@4r0(Q8`z9@:Ҁ=GF1)1OzΗQG( )x.P"}hIΌ΋)qO4z΋)4S(8#hQG(0)?Jiz(aEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPOWSLib-0.16.0/docs/_templates/000077500000000000000000000000001321706412000157565ustar00rootroot00000000000000OWSLib-0.16.0/docs/_templates/layout.html000066400000000000000000000011431321706412000201600ustar00rootroot00000000000000{% extends "!layout.html" %} {%- block extrahead %} {{ super() }} {% endblock %} {% block relbar1 %} {{ super() }} {% endblock %} OWSLib-0.16.0/docs/conf.py000066400000000000000000000144721321706412000151300ustar00rootroot00000000000000# -*- coding: utf-8 -*- # # OWSLib documentation build configuration file, created by # sphinx-quickstart on Fri Oct 15 08:43:28 2010. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. from __future__ import absolute_import import sys, os # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.append(os.path.abspath('.')) # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8' # The master toctree document. master_doc = 'index' # General information about the project. project = u'OWSLib' copyright = u'2010, Tom Kralidis' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = open('../VERSION.txt').read().strip() # The full version, including alpha/beta/rc tags. release = version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. today_fmt = '%Y-%m-%d' # List of documents that shouldn't be included in the build. #unused_docs = [] # List of directories, relative to source directory, that shouldn't be searched # for source files. exclude_trees = ['build'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. show_authors = True # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. Major themes that come with # Sphinx are currently 'default' and 'sphinxdoc'. html_theme = 'default' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". html_title = 'OWSLib %s documentation' % release # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. html_last_updated_fmt = '%Y-%m-%dT%H:%M:%SZ' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {'indexsidebar.html'} #html_sidebars = {'**':['indexsidebar.html']} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_use_modindex = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = '' # Output file base name for HTML help builder. htmlhelp_basename = 'OWSLibdoc' # -- Options for LaTeX output -------------------------------------------------- # The paper size ('letter' or 'a4'). #latex_paper_size = 'letter' # The font size ('10pt', '11pt' or '12pt'). #latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'OWSLib.tex', u'OWSLib Documentation', u'Tom Kralidis', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # Additional stuff for the LaTeX preamble. #latex_preamble = '' # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_use_modindex = True OWSLib-0.16.0/docs/en/000077500000000000000000000000001321706412000142235ustar00rootroot00000000000000OWSLib-0.16.0/docs/en/index.rst000066400000000000000000000672521321706412000161000ustar00rootroot00000000000000======================================================= OWSLib |release| documentation ======================================================= .. toctree:: :maxdepth: 2 .. image:: https://www.openhub.net/p/owslib/widgets/project_partner_badge.gif :width: 193px :height: 33px :alt: OWSLib :target: https://www.openhub.net/p/owslib?ref=WidgetProjectPartnerBadge :Author: Tom Kralidis :Contact: tomkralidis at gmail.com :Release: |release| :Date: |today| Introduction ============ OWSLib is a Python package for client programming with `Open Geospatial Consortium`_ (OGC) web service (hence OWS) interface standards, and their related content models. OWSLib was buried down inside PCL, but has been brought out as a separate project in `r481 `_. Features ======== Standards Support ----------------- +-------------------+---------------------+ | Standard | Version(s) | +===================+=====================+ | `OGC WMS`_ | 1.1.1 | +-------------------+---------------------+ | `OGC WFS`_ | 1.0.0, 1.1.0, 2.0.0 | +-------------------+---------------------+ | `OGC WCS`_ | 1.0.0, 1.1.0 | +-------------------+---------------------+ | `OGC WMC`_ | 1.1.0 | +-------------------+---------------------+ | `OGC SOS`_ | 1.0.0, 2.0.0 | +-------------------+---------------------+ | `OGC SensorML`_ | 1.0.1 | +-------------------+---------------------+ | `OGC CSW`_ | 2.0.2 | +-------------------+---------------------+ | `OGC WPS`_ | 1.0.0 | +-------------------+---------------------+ | `OGC Filter`_ | 1.1.0 | +-------------------+---------------------+ | `OGC OWS Common`_ | 1.0.0, 1.1.0, 2.0 | +-------------------+---------------------+ | `NASA DIF`_ | 9.7 | +-------------------+---------------------+ | `FGDC CSDGM`_ | 1998 | +-------------------+---------------------+ | `ISO 19139`_ | 2007 | +-------------------+---------------------+ | `Dublin Core`_ | 1.1 | +-------------------+---------------------+ | `Swiss GM03`_ | 2.3 | +-------------------+---------------------+ | `WMTS`_ | 1.0.0 | +-------------------+---------------------+ | `WaterML`_ | 1.0, 1.1, 2.0 | +-------------------+---------------------+ Installation ============ Requirements ------------ OWSLib requires a Python interpreter, as well as `ElementTree `_ or `lxml `_ for XML parsing. Install ------- PyPI: .. code-block:: bash $ easy_install OWSLib # pip works too $ pip install OWSLib Git: .. code-block:: bash $ git clone git://github.com/geopython/OWSLib.git Anaconda: .. note:: The OWSLib conda packages are provided by the community, not OSGEO, and therefore there may be multiple packages available. To search all conda channels: http://anaconda.org/search?q=type%3Aconda+owslib However usually conda-forge will be the most up-to-date. .. code-block:: bash $ conda install -c conda-forge owslib openSUSE: .. code-block:: bash $ zypper ar http://download.opensuse.org/repositories/Application:/Geo/openSUSE_12.1/ GEO $ zypper refresh $ zypper install owslib CentOS: .. code-block:: bash $ wget -O /etc/yum.repos.d/CentOS-CBS.repo http://download.opensuse.org/repositories/Application:/Geo/CentOS_6/Application:Geo.repo $ yum install owslib RedHat Enterprise Linux .. code-block:: bash $ wget -O /etc/yum.repos.d/RHEL-CBS.repo http://download.opensuse.org/repositories/Application:/Geo/RHEL_6/Application:Geo.repo $ yum install owslib Fedora: .. note:: As of Fedora 20, OWSLib is part of the Fedora core package collection .. code-block:: bash $ yum install OWSLib Usage ===== WMS --- Find out what a WMS has to offer. Service metadata: .. code-block:: python >>> from owslib.wms import WebMapService >>> wms = WebMapService('http://wms.jpl.nasa.gov/wms.cgi', version='1.1.1') >>> wms.identification.type 'OGC:WMS' >>> wms.identification.title 'JPL Global Imagery Service' Available layers: .. code-block:: python >>> list(wms.contents) ['global_mosaic', 'global_mosaic_base', 'us_landsat_wgs84', 'srtm_mag', 'daily_terra_721', 'daily_aqua_721', 'daily_terra_ndvi', 'daily_aqua_ndvi', 'daily_terra', 'daily_aqua', 'BMNG', 'modis', 'huemapped_srtm', 'srtmplus', 'worldwind_dem', 'us_ned', 'us_elevation', 'us_colordem'] Details of a layer: .. code-block:: python >>> wms['global_mosaic'].title 'WMS Global Mosaic, pan sharpened' >>> wms['global_mosaic'].queryable 0 >>> wms['global_mosaic'].opaque 0 >>> wms['global_mosaic'].boundingBox >>> wms['global_mosaic'].boundingBoxWGS84 (-180.0, -60.0, 180.0, 84.0) >>> wms['global_mosaic'].crsOptions ['EPSG:4326', 'AUTO:42003'] >>> wms['global_mosaic'].styles {'pseudo_bright': {'title': 'Pseudo-color image (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'pseudo': {'title': '(default) Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'visual': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping), gamma 1.5'}, 'pseudo_low': {'title': 'Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping)'}, 'visual_low': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping)'}, 'visual_bright': {'title': 'Real-color image (Uses the visual bands, 321 mapping), gamma 1.5'}} Available methods, their URLs, and available formats: .. code-block:: python >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap'] >>> wms.getOperationByName('GetMap').methods {'Get': {'url': 'http://wms.jpl.nasa.gov/wms.cgi?'}} >>> wms.getOperationByName('GetMap').formatOptions ['image/jpeg', 'image/png', 'image/geotiff', 'image/tiff'] That's everything needed to make a request for imagery: .. code-block:: python >>> img = wms.getmap( layers=['global_mosaic'], ... styles=['visual_bright'], ... srs='EPSG:4326', ... bbox=(-112, 36, -106, 41), ... size=(300, 250), ... format='image/jpeg', ... transparent=True ... ) >>> out = open('jpl_mosaic_visb.jpg', 'wb') >>> out.write(img.read()) >>> out.close() Result: .. image:: ../_static/jpl_mosaic_visb.jpg :width: 300px :height: 250px :alt: WMS GetMap generated by OWSLib WFS --- Connect to a WFS and inspect its capabilities. :: >>> from owslib.wfs import WebFeatureService >>> wfs11 = WebFeatureService(url='http://geoserv.weichand.de:8080/geoserver/wfs', version='1.1.0') >>> wfs11.identification.title 'INSPIRE WFS 2.0 DemoServer Verwaltungsgrenzen Bayern >>> [operation.name for operation in wfs11.operations] ['GetCapabilities', 'DescribeFeatureType', 'GetFeature', 'GetGmlObject'] List FeatureTypes :: >>> list(wfs11.contents) ['bvv:vg_ex', 'bvv:bayern_ex', 'bvv:lkr_ex', 'bvv:regbez_ex', 'bvv:gmd_ex'] Download GML using ``typename``, ``bbox`` and ``srsname``. :: >>> # OWSLib will switch the axis order from EN to NE automatically if designated by EPSG-Registry >>> response = wfs11.getfeature(typename='bvv:gmd_ex', bbox=(4500000,5500000,4500500,5500500), srsname='urn:x-ogc:def:crs:EPSG:31468') Download GML using ``typename`` and ``filter``. OWSLib currently only support filter building for WFS 1.1 (FE.1.1). :: >>> from owslib.fes import * >>> from owslib.etree import etree >>> from owslib.wfs import WebFeatureService >>> wfs11 = WebFeatureService(url='http://geoserv.weichand.de:8080/geoserver/wfs', version='1.1.0') >>> filter = PropertyIsLike(propertyname='bez_gem', literal='Ingolstadt', wildCard='*') >>> filterxml = etree.tostring(filter.toXML()).decode("utf-8") >>> response = wfs11.getfeature(typename='bvv:gmd_ex', filter=filterxml) Save response to a file. :: >>> out = open('/tmp/data.gml', 'wb') >>> out.write(bytes(response.read(), 'UTF-8')) >>> out.close() Download GML using ``StoredQueries``\ (only available for WFS 2.0 services) :: >>> from owslib.wfs import WebFeatureService >>> wfs20 = WebFeatureService(url='http://geoserv.weichand.de:8080/geoserver/wfs', version='2.0.0') >>> # List StoredQueries >>> [storedquery.id for storedquery in wfs20.storedqueries] ['bboxQuery', 'urn:ogc:def:query:OGC-WFS::GetFeatureById', 'GemeindeByGemeindeschluesselEpsg31468', 'DWithinQuery'] >>> # List Parameters for StoredQuery[1] >>> parameter.name for parameter in wfs20.storedqueries[1].parameters] ['ID'] >>> response = wfs20.getfeature(storedQueryID='urn:ogc:def:query:OGC-WFS::GetFeatureById', storedQueryParams={'ID':'gmd_ex.1'}) WCS --- CSW --- Connect to a CSW, and inspect its properties: .. code-block:: python >>> from owslib.csw import CatalogueServiceWeb >>> csw = CatalogueServiceWeb('http://geodiscover.cgdi.ca/wes/serviceManagerCSW/csw') >>> csw.identification.type 'CSW' >>> [op.name for op in csw.operations] ['GetCapabilities', 'GetRecords', 'GetRecordById', 'DescribeRecord', 'GetDomain'] Get supported resultType's: .. code-block:: python >>> csw.getdomain('GetRecords.resultType') >>> csw.results {'values': ['results', 'validate', 'hits'], 'parameter': 'GetRecords.resultType', 'type': 'csw:DomainValuesType'} >>> Search for bird data: .. code-block:: python >>> from owslib.fes import PropertyIsEqualTo, PropertyIsLike, BBox >>> birds_query = PropertyIsEqualTo('csw:AnyText', 'birds') >>> csw.getrecords2(constraints=[birds_query], maxrecords=20) >>> csw.results {'matches': 101, 'nextrecord': 21, 'returned': 20} >>> for rec in csw.records: ... print(csw.records[rec].title) ... ALLSPECIES NatureServe Canada References Bird Studies Canada - BirdMap WMS Parks Canada Geomatics Metadata Repository Bird Studies Canada - BirdMap WFS eBird Canada - Survey Locations WHC CitizenScience WMS Project FeederWatch - Survey Locations North American Bird Banding and Encounter Database Wildlife Habitat Canada CitizenScience WFS Parks Canada Geomatics Metadata Repository Parks Canada Geomatics Metadata Repository Wildlife Habitat Canada CitizenScience WMS Canadian IBA Polygon layer Land Wildlife Habitat Canada CitizenScience WMS WATER Parks Canada Geomatics Metadata Repository Breeding Bird Survey SCALE >>> Search for bird data in Canada: .. code-block:: python >>> bbox_query = BBox([-141,42,-52,84]) >>> csw.getrecords2(constraints=[birds_query, bbox_query]) >>> csw.results {'matches': 3, 'nextrecord': 0, 'returned': 3} >>> Search for keywords like 'birds' or 'fowl' .. code-block:: python >>> birds_query_like = PropertyIsLike('dc:subject', '%birds%') >>> fowl_query_like = PropertyIsLike('dc:subject', '%fowl%') >>> csw.getrecords2(constraints=[birds_query_like, fowl_query_like]) >>> csw.results {'matches': 107, 'nextrecord': 11, 'returned': 10} >>> Search for a specific record: .. code-block:: python >>> csw.getrecordbyid(id=['9250AA67-F3AC-6C12-0CB9-0662231AA181']) >>> c.records['9250AA67-F3AC-6C12-0CB9-0662231AA181'].title 'ALLSPECIES' Search with a CQL query .. code-block:: python >>> csw.getrecords(cql='csw:AnyText like "%birds%"') Transaction: insert .. code-block:: python >>> csw.transaction(ttype='insert', typename='gmd:MD_Metadata', record=open("file.xml").read()) Transaction: update .. code-block:: python >>> # update ALL records >>> csw.transaction(ttype='update', typename='csw:Record', propertyname='dc:title', propertyvalue='New Title') >>> # update records satisfying keywords filter >>> csw.transaction(ttype='update', typename='csw:Record', propertyname='dc:title', propertyvalue='New Title', keywords=['birds','fowl']) >>> # update records satisfying BBOX filter >>> csw.transaction(ttype='update', typename='csw:Record', propertyname='dc:title', propertyvalue='New Title', bbox=[-141,42,-52,84]) Transaction: delete .. code-block:: python >>> # delete ALL records >>> csw.transaction(ttype='delete', typename='gmd:MD_Metadata') >>> # delete records satisfying keywords filter >>> csw.transaction(ttype='delete', typename='gmd:MD_Metadata', keywords=['birds','fowl']) >>> # delete records satisfying BBOX filter >>> csw.transaction(ttype='delete', typename='gmd:MD_Metadata', bbox=[-141,42,-52,84]) Harvest a resource .. code-block:: python >>> csw.harvest('http://host/url.xml', 'http://www.isotc211.org/2005/gmd') WMC --- WPS --- Inspect a remote WPS and retrieve the supported processes: .. code-block:: python >>> from owslib.wps import WebProcessingService >>> wps = WebProcessingService('http://cida.usgs.gov/climate/gdp/process/WebProcessingService', verbose=False, skip_caps=True) >>> wps.getcapabilities() >>> wps.identification.type 'WPS' >>> wps.identification.title 'Geo Data Portal WPS Processing' >>> wps.identification.abstract 'Geo Data Portal WPS Processing' >>> for operation in wps.operations: ... operation.name ... 'GetCapabilities' 'DescribeProcess' 'Execute' >>> for process in wps.processes: ... process.identifier, process.title ... ('gov.usgs.cida.gdp.wps.algorithm.FeatureCoverageIntersectionAlgorithm', 'Feature Coverage WCS Intersection') ('gov.usgs.cida.gdp.wps.algorithm.FeatureCoverageOPeNDAPIntersectionAlgorithm', 'Feature Coverage OPeNDAP Intersection') ('gov.usgs.cida.gdp.wps.algorithm.FeatureCategoricalGridCoverageAlgorithm', 'Feature Categorical Grid Coverage') ('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm', 'Feature Weighted Grid Statistics') ('gov.usgs.cida.gdp.wps.algorithm.FeatureGridStatisticsAlgorithm', 'Feature Grid Statistics') ('gov.usgs.cida.gdp.wps.algorithm.PRMSParameterGeneratorAlgorithm', 'PRMS Parameter Generator') >>> Determine how a specific process needs to be invoked - i.e. what are its input parameters, and output result: .. code-block:: python >>> from owslib.wps import printInputOutput >>> process = wps.describeprocess('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm') >>> process.identifier 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> process.title 'Feature Weighted Grid Statistics' >>> process.abstract 'This algorithm generates area weighted statistics of a gridded dataset for a set of vector polygon features. Using the bounding-box that encloses ... >>> for input in process.dataInputs: ... printInputOutput(input) ... identifier=FEATURE_COLLECTION, title=Feature Collection, abstract=A feature collection encoded as a WFS request or one of the supported GML profiles.,... Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.0.0/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.1/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.2/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.2.1/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.0.0/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.0.1/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.1.0/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.1.1/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.2.1/base/feature.xsd Default Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.0.0/feature.xsd minOccurs=1, maxOccurs=1 identifier=DATASET_URI, title=Dataset URI, abstract=The base data web service URI for the dataset of interest., data type=anyURI Allowed Value: AnyValue Default Value: None minOccurs=1, maxOccurs=1 identifier=DATASET_ID, title=Dataset Identifier, abstract=The unique identifier for the data type or variable of interest., data type=string Allowed Value: AnyValue Default Value: None minOccurs=1, maxOccurs=2147483647 identifier=REQUIRE_FULL_COVERAGE, title=Require Full Coverage, abstract=If turned on, the service will require that the dataset of interest .... Allowed Value: True Default Value: True minOccurs=1, maxOccurs=1 identifier=TIME_START, title=Time Start, abstract=The date to begin analysis., data type=dateTime Allowed Value: AnyValue Default Value: None minOccurs=0, maxOccurs=1 identifier=TIME_END, title=Time End, abstract=The date to end analysis., data type=dateTime Allowed Value: AnyValue Default Value: None minOccurs=0, maxOccurs=1 identifier=FEATURE_ATTRIBUTE_NAME, title=Feature Attribute Name, abstract=The attribute that will be used to label column headers in processing output., ... Allowed Value: AnyValue Default Value: None minOccurs=1, maxOccurs=1 identifier=DELIMITER, title=Delimiter, abstract=The delimiter that will be used to separate columns in the processing output., data type=string Allowed Value: COMMA Allowed Value: TAB Allowed Value: SPACE Default Value: COMMA minOccurs=1, maxOccurs=1 identifier=STATISTICS, title=Statistics, abstract=Statistics that will be returned for each feature in the processing output., data type=string Allowed Value: MEAN Allowed Value: MINIMUM Allowed Value: MAXIMUM Allowed Value: VARIANCE Allowed Value: STD_DEV Allowed Value: SUM Allowed Value: COUNT Default Value: None minOccurs=1, maxOccurs=7 identifier=GROUP_BY, title=Group By, abstract=If multiple features and statistics are selected, this will change whether the processing output ... Allowed Value: STATISTIC Allowed Value: FEATURE_ATTRIBUTE Default Value: None minOccurs=1, maxOccurs=1 identifier=SUMMARIZE_TIMESTEP, title=Summarize Timestep, abstract=If selected, processing output will include columns with summarized statistics ... Allowed Value: True Default Value: True minOccurs=0, maxOccurs=1 identifier=SUMMARIZE_FEATURE_ATTRIBUTE, title=Summarize Feature Attribute, abstract=If selected, processing output will include a final row of ... Allowed Value: True Default Value: True minOccurs=0, maxOccurs=1 >>> for output in process.processOutputs: ... printInputOutput(output) ... identifier=OUTPUT, title=Output File, abstract=A delimited text file containing requested process output., data type=ComplexData Supported Value: mimeType=text/csv, encoding=UTF-8, schema=None Default Value: mimeType=text/csv, encoding=UTF-8, schema=None reference=None, mimeType=None >>> Submit a processing request (extraction of a climate index variable over a specific GML polygon, for a given period of time), monitor the execution until complete: .. code-block:: python >>> from owslib.wps import GMLMultiPolygonFeatureCollection >>> polygon = [(-102.8184, 39.5273), (-102.8184, 37.418), (-101.2363, 37.418), (-101.2363, 39.5273), (-102.8184, 39.5273)] >>> featureCollection = GMLMultiPolygonFeatureCollection( [polygon] ) >>> processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> inputs = [ ("FEATURE_ATTRIBUTE_NAME","the_geom"), ... ("DATASET_URI", "dods://cida.usgs.gov/qa/thredds/dodsC/derivatives/derivative-days_above_threshold.pr.ncml"), ... ("DATASET_ID", "ensemble_b1_pr-days_above_threshold"), ... ("TIME_START","2010-01-01T00:00:00.000Z"), ... ("TIME_END","2011-01-01T00:00:00.000Z"), ... ("REQUIRE_FULL_COVERAGE","false"), ... ("DELIMITER","COMMA"), ... ("STATISTICS","MEAN"), ... ("GROUP_BY","STATISTIC"), ... ("SUMMARIZE_TIMESTEP","false"), ... ("SUMMARIZE_FEATURE_ATTRIBUTE","false"), ... ("FEATURE_COLLECTION", featureCollection) ... ] >>> output = "OUTPUT" >>> execution = wps.execute(processid, inputs, output = "OUTPUT") Executing WPS request... Execution status=ProcessStarted >>> from owslib.wps import monitorExecution >>> monitorExecution(execution) Checking execution status... (location=http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=6809217153012787208) Execution status=ProcessSucceeded Execution status: ProcessSucceeded Output URL=http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=6809217153012787208OUTPUT.3cbcd666-a912-456f-84a3-6ede450aca95 >>> Alternatively, define the feature through an embedded query to a WFS server: .. code-block:: python >>> from owslib.wps import WFSQuery, WFSFeatureCollection >>> wfsUrl = "http://cida.usgs.gov/climate/gdp/proxy/http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" >>> query = WFSQuery("sample:CONUS_States", propertyNames=['the_geom',"STATE"], filters=["CONUS_States.508","CONUS_States.469"]) >>> featureCollection = WFSFeatureCollection(wfsUrl, query) >>> # same process submission as above ... You can also submit a pre-made request encoded as WPS XML: .. code-block:: python >>> request = open('/Users/cinquini/Documents/workspace-cog/wps/tests/resources/wps_USGSExecuteRequest1.xml','rb').read() >>> execution = wps.execute(None, [], request=request) Executing WPS request... Execution status=ProcessStarted >>> monitorExecution(execution) Checking execution status... (location=http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=5103866488472745994) Execution status=ProcessSucceeded Execution status: ProcessSucceeded Output URL=http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=5103866488472745994OUTPUT.f80e2a78-96a9-4343-9777-be60fac5b256 SOS 1.0 ------- GetCapabilities .. include:: ../../tests/doctests/sos_10_getcapabilities.txt GetObservation .. include:: ../../tests/doctests/sos_10_ndbc_getobservation.txt SOS 2.0 ------- Examples of service metadata and GetObservation .. include:: ../../tests/doctests/sos_20_52n_geoviqua.txt Using the GetObservation response decoder for O&M and WaterML2.0 results .. include:: ../../tests/doctests/sos_20_timeseries_decoder_ioos.txt SensorML -------- .. include:: ../../tests/doctests/sml_ndbc_station.txt ISO --- .. code-block:: python >>> from owslib.iso import * >>> m=MD_Metadata(etree.parse('tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_iso.xml')) >>> m.identification.topiccategory 'farming' >>> ISO Codelists: .. include:: ../../tests/doctests/iso_codelist.txt CRS Handling ------------ .. include:: ../../tests/doctests/crs.txt Dublin Core ----------- NASA DIF -------- FGDC ---- Swiss GM03 ---------- .. include:: ../../tests/doctests/gm03_parse.txt WMTS ---- .. include:: ../../tests/doctests/wmts.txt Result: .. image:: ../_static/nasa_modis_terra_truecolour.jpg :width: 512px :height: 512px :alt: WMTS GetTile generated by OWSLib WaterML ------- .. include:: ../../tests/doctests/wml11_cuahsi.txt Development =========== The OWSLib wiki is located at https://github.com/geopython/OWSLib/wiki The OWSLib source code is available at https://github.com/geopython/OWSLib You can find out about software metrics at the OWSLib ohloh page at http://www.ohloh.net/p/OWSLib. Testing ------- .. code-block:: bash $ python setup.py test Or ... .. code-block:: bash # install requirements $ pip install -r requirements.txt $ pip install -r requirements-dev.txt # needed for tests only # run tests python -m pytest # additional pep8 tests pep8 owslib/wmts.py Support ======= Mailing Lists ------------- OWSLib provides users and developers mailing lists. Subscription options and archives are available at http://lists.osgeo.org/mailman/listinfo/owslib-users and http://lists.osgeo.org/mailman/listinfo/owslib-devel. Submitting Questions to Community --------------------------------- To submit questions to a mailing list, first join the list by following the subscription procedure above. Then post questions to the list by sending an email message to either owslib-users@lists.osgeo.org or owslib-devel@lists.osgeo.org. Searching the Archives ---------------------- All Community archives are located in http://lists.osgeo.org/pipermail/owslib-users/ http://lists.osgeo.org/pipermail/owslib-devel/ Metrics ------- You can find out about software metrics at the OWSLib `ohloh`_ page. IRC --- As well, visit OWSLib on IRC on ``#geopython`` at `freenode`_ for realtime discussion. Logging ======= OWSLib logs messages to the 'owslib' named python logger. You may configure your application to use the log messages like so: .. code-block:: python import logging owslib_log = logging.getLogger('owslib') # Add formatting and handlers as needed owslib_log.setLevel(logging.DEBUG) License ======= Copyright (c) 2006, Ancient World Mapping Center All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of North Carolina nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Credits ======= .. include:: ../../CREDITS.txt .. _`Open Geospatial Consortium`: http://www.opengeospatial.org/ .. _`OGC WMS`: http://www.opengeospatial.org/standards/wms .. _`OGC WFS`: http://www.opengeospatial.org/standards/wfs .. _`OGC WCS`: http://www.opengeospatial.org/standards/wcs .. _`OGC WMC`: http://www.opengeospatial.org/standards/wmc .. _`OGC WPS`: http://www.opengeospatial.org/standards/wps .. _`OGC SOS`: http://www.opengeospatial.org/standards/sos .. _`OGC O&M`: http://www.opengeospatial.org/standards/om .. _`OGC WaterML2.0`: http://www.opengeospatial.org/standards/waterml .. _`OGC SensorML`: http://www.opengeospatial.org/standards/sensorml .. _`OGC CSW`: http://www.opengeospatial.org/standards/cat .. _`OGC WMTS`: http://www.opengeospatial.org/standards/wmts .. _`OGC Filter`: http://www.opengeospatial.org/standards/filter .. _`OGC OWS Common`: http://www.opengeospatial.org/standards/common .. _`NASA DIF`: http://gcmd.nasa.gov/User/difguide/ .. _`FGDC CSDGM`: http://www.fgdc.gov/metadata/csdgm .. _`ISO 19115`: http://www.iso.org/iso/catalogue_detail.htm?csnumber=26020 .. _`ISO 19139`: http://www.iso.org/iso/catalogue_detail.htm?csnumber=32557 .. _`Dublin Core`: http://www.dublincore.org/ .. _`freenode`: http://freenode.net/ .. _`ohloh`: http://www.ohloh.net/p/OWSLib .. _`CIA.vc`: http://cia.vc/stats/project/OWSLib .. _`WaterML`: http://his.cuahsi.org/wofws.html#waterml .. _`Swiss GM03`: http://www.geocat.ch/internet/geocat/en/home/documentation/gm03.html OWSLib-0.16.0/docs/publish.sh000077500000000000000000000005541321706412000156320ustar00rootroot00000000000000#!/bin/bash # this script publishes Sphinx outputs to github pages THIS_DIR=`pwd` make clean && make html git clone git@github.com:geopython/OWSLib.git /tmp/OWSLib-$$ cd /tmp/OWSLib-$$ git checkout gh-pages /bin/cp -rp $THIS_DIR/build/html/en/* . git add . git commit -am "update live docs [ci skip]" git push origin gh-pages cd $THIS_DIR rm -fr /tmp/OWSLib-$$ OWSLib-0.16.0/etc/000077500000000000000000000000001321706412000134445ustar00rootroot00000000000000OWSLib-0.16.0/etc/RPM/000077500000000000000000000000001321706412000141025ustar00rootroot00000000000000OWSLib-0.16.0/etc/RPM/python-owslib.changes000066400000000000000000000017601321706412000202560ustar00rootroot00000000000000------------------------------------------------------------------- Tue Sep 10 14:01:29 UTC 2013 - Angelos Tzotsos - added python-dateutil as required ------------------------------------------------------------------- Thu Jun 6 19:23:49 UTC 2013 - Angelos Tzotsos - updated to 0.7.2 ------------------------------------------------------------------- Sat Mar 30 16:41:09 UTC 2013 - Angelos Tzotsos - updated to 0.7.1 ------------------------------------------------------------------- Wed Sep 5 21:00:22 UTC 2012 - Angelos Tzotsos - updated to 0.5.1 ------------------------------------------------------------------- Thu Jun 21 20:35:28 UTC 2012 - Angelos Tzotsos - fixed CentOS, RedHat and Scientific Linux builds ------------------------------------------------------------------- Thu Jun 21 19:34:53 UTC 2012 - Angelos Tzotsos - initial release 0.5.0 OWSLib-0.16.0/etc/RPM/python-owslib.spec000066400000000000000000000030551321706412000175770ustar00rootroot00000000000000# # spec file for package OWSLib (0.7.2) # # Copyright (c) 2011 Angelos Tzotsos # # This file and all modifications and additions to the pycsw # package are under the same license as the package itself. %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} %define pyname owslib Name: python-%{pyname} Version: 0.7.2 Release: 0 Summary: Python interface to OGC Web Services License: BSD Url: http://geopython.github.com/OWSLib/ Group: Productivity/Scientific/Other Source0: %{pyname}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch BuildRequires: python-devel BuildRequires: python-setuptools BuildRequires: fdupes Requires: python Requires: python-dateutil python-pytz %description OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models. %prep %setup -q -n %{pyname}-%{version} %build %{__python} setup.py build %install rm -rf %{buildroot} python setup.py install --prefix=%{_prefix} --root=%{buildroot} \ --record-rpm=INSTALLED_FILES %fdupes -s %{buildroot} %clean rm -rf %{buildroot} %files -f INSTALLED_FILES %defattr(-,root,root,-) %changelog OWSLib-0.16.0/etc/debian/000077500000000000000000000000001321706412000146665ustar00rootroot00000000000000OWSLib-0.16.0/etc/debian/changelog000066400000000000000000000015651321706412000165470ustar00rootroot00000000000000owslib (0.8.7-1~precise1) precise; urgency=low * Update to 0.8.7. -- Angelos Tzotsos Thu, 05 Jun 2014 01:41:45 +0200 owslib (0.8.3-1~precise1) precise; urgency=low * Update to 0.8.3. -- Angelos Tzotsos Sat, 12 Jan 2014 19:25:45 +0200 owslib (0.7.2-1~precise1) precise; urgency=low * Remove tests to avoid conflict in pyshared. -- Angelos Tzotsos Sat, 06 Jul 2013 01:28:00 +0300 owslib (0.7.2-0) precise; urgency=low * Update to 0.7.2. -- Angelos Tzotsos Sat, 08 Jun 2013 20:11:00 +0300 owslib (0.7.1-0) precise; urgency=low * Update to 0.7.1. -- Angelos Tzotsos Sat, 30 Mar 2013 20:01:00 +0300 owslib (0.5.1-0) precise; urgency=low * Initial build. -- Angelos Tzotsos Tue, 11 Sep 2012 22:54:30 +0300 OWSLib-0.16.0/etc/debian/compat000066400000000000000000000000021321706412000160640ustar00rootroot000000000000007 OWSLib-0.16.0/etc/debian/control000066400000000000000000000011531321706412000162710ustar00rootroot00000000000000Source: owslib Section: python Priority: optional Maintainer: Angelos Tzotsos Build-Depends: debhelper (>= 7.0.50), python-setuptools (>= 0.6), python-support (>=0.6), python-all-dev (>= 2.3.5-11), python (>= 2.7) Standards-Version: 3.9.3 X-Python-Version: >= 2.7 Homepage: http://geopython.github.com/OWSLib/ Package: python-owslib Architecture: all Depends: ${misc:Depends}, debconf, python (>=2.7), python-lxml Description: OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models. OWSLib-0.16.0/etc/debian/copyright000066400000000000000000000032121321706412000166170ustar00rootroot00000000000000This package was created by Angelos Tzotsos on Tue, 11 Sep 2012 22:54:30 +0300 Copyright: Copyright (c) 2006, Ancient World Mapping Center All rights reserved. License: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of North Carolina nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OWSLib-0.16.0/etc/debian/format000066400000000000000000000000151321706412000160750ustar00rootroot000000000000003.0 (native) OWSLib-0.16.0/etc/debian/pycompat000066400000000000000000000000021321706412000164350ustar00rootroot000000000000002 OWSLib-0.16.0/etc/debian/rules000077500000000000000000000001031321706412000157400ustar00rootroot00000000000000#!/usr/bin/make -f # -*- makefile -*- %: dh $@ --with python2 OWSLib-0.16.0/examples/000077500000000000000000000000001321706412000145075ustar00rootroot00000000000000OWSLib-0.16.0/examples/csw-client.py000066400000000000000000000074611321706412000171410ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= from __future__ import absolute_import from __future__ import print_function import sys import getopt from owslib.csw import CatalogueServiceWeb def usage(): print(""" %s [options] Required Parameters ------------------- --url=[URL] the URL of the CSW --request=[REQUEST] the request (GetCapabilities, DescribeRecord, GetDomain, GetRecords, GetRecordById) Optional Parameters ------------------- --lang=[LANG] the language of the CSW --version=[VERSION] the CSW server version --print-request print the request --validate perform XML validation against the request Request Specific Parameters --------------------------- DescribeRecord --typename=[TypeName] the typename to describe GetDomain --dname=[NAME] the domain to query --dtype=[property|parameter] the type of domain query GetRecords --sortby=[dc:title|dct:abstract|ows:BoundingBox] sort by property --keyword=[KEYWORD] the keyword(s) to query --bbox=[BBOX] the bounding box to spatially query in the form of "minx miny maxx maxy" --esn=[brief|full|summary] verbosity of results --qtype=[dataset|service] query for data or services --schema=[iso] the outputSchema (default is csw) GetRecordById --id=[ID] the ID of the record """ % sys.argv[0]) # check args if len(sys.argv) == 1: usage() sys.exit(1) try: opts, args = getopt.getopt(sys.argv[1:], '', ['typename=', 'request=', 'lang=', 'version', 'keyword=', 'bbox=', 'schema=', 'qtype=', 'esn=', 'url=', 'print-request', 'sortby=', 'id=', 'dtype=', 'dname=', 'validate']) except getopt.GetoptError as err: print(str(err)) usage() sys.exit(2) request = None keyword = None bbox = None schema = None qtype = None esn = 'full' url = None print_request = False validate = False sortby = None id = None version = '2.0.2' lang = 'en-US' dname = None dtype = None typename = None # set args for o, a in opts: if o in '--request': request = a elif o in '--keyword': keyword = a elif o in '--bbox': bbox = a.split() elif o in '--typename': typename = a elif o in '--schema': schema = a elif o in '--qtype': qtype = a elif o in '--esn': esn = a elif o in '--url': url = a elif o in '--sortby': sortby = a elif o in '--id': id = a elif o in '--dname': dname = a elif o in '--dtype': dtype= a elif o in '--version': version = a elif o in '--lang': lang = a elif o in '--print-request': print_request = True elif o in '--validate': validate = True else: assert False, 'unhandled option' if request is None or url is None: usage() sys.exit(3) if schema == 'iso': outputschema = 'http://www.isotc211.org/2005/gmd' # init c = CatalogueServiceWeb(url, lang, version) if request == 'GetCapabilities': pass elif request == 'DescribeRecord': c.describerecord(typename) elif request == 'GetRecordById': c.getrecordbyid([id]) elif request == 'GetDomain': c.getdomain(dname, dtype) elif request == 'GetRecords': c.getrecords(qtype, [keyword], bbox, esn, sortby, schema) if print_request is True: # print the request print(c.request) if validate is True: # do XML validation print('Validating request XML') if util.xmlvalid(c.request, csw.schema_location.split()[1]) is True: print('request is valid XML') else: print('request is NOT valid XML') # print response print(c.response) OWSLib-0.16.0/examples/csw-harvest.py000066400000000000000000000033001321706412000173230ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2010 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= # simple process to harvest CSW catalogues via Harvest operations from __future__ import absolute_import from __future__ import print_function import sys from owslib.csw import CatalogueServiceWeb stop = 0 flag = 0 maxrecords = 10 if len(sys.argv) < 3: print('Usage: %s [maxrecords]' \ % sys.argv[0]) sys.exit(1) src = CatalogueServiceWeb(sys.argv[1]) dest = CatalogueServiceWeb(sys.argv[2]) if len(sys.argv) == 4: maxrecords = sys.argv[3] while stop == 0: if flag == 0: # first run, start from 0 startposition = 0 else: # subsequent run, startposition is now paged startposition = src.results['nextrecord'] src.getrecords(esn='brief', startposition=startposition, maxrecords=maxrecords) print(src.results) if src.results['nextrecord'] == 0 \ or src.results['returned'] == 0 \ or src.results['nextrecord'] > src.results['matches']: # end the loop, exhausted all records stop = 1 break # harvest each record to destination CSW for i in list(src.records): source = '%s?service=CSW&version=2.0.2&request=GetRecordById&id=%s' % \ (sys.argv[1], i) dest.harvest(source=source, \ resourcetype='http://www.isotc211.org/2005/gmd') #print dest.request #print dest.response flag = 1 OWSLib-0.16.0/examples/iso-getcodelist.py000077500000000000000000000023521321706412000201640ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2010 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= # get a list of entries for a given code list dictionary from __future__ import absolute_import from __future__ import print_function import sys import urllib2 from owslib.etree import etree from owslib.iso import CodelistCatalogue if len(sys.argv) < 3: print('Usage: %s ' % sys.argv[0]) sys.exit(1) e=etree.parse(sys.argv[1]) c=CodelistCatalogue(e) clds = c.getcodelistdictionaries() def valid_clds(): return ''' Valid code list dictionaries are: %s ''' % '\n'.join(clds) if len(sys.argv) < 2: print(''' Usage: %s %s ''' % (sys.argv[0], valid_clds())) sys.exit(1) cld = c.getcodedefinitionidentifiers(sys.argv[2]) if cld is None: print(''' Invalid code list dictionary: %s %s ''' % (sys.argv[2],valid_clds())) sys.exit(2) print(''' CodeListDictionary: %s codeEntry's: %s ''' % (sys.argv[2],'\n '.join(cld))) OWSLib-0.16.0/examples/wcs-thredds-prism.py000066400000000000000000000024461321706412000204460ustar00rootroot00000000000000# Very simple script demonstrating how to interact with a THREDDS based WCS. # --- # # The GetCapabilities and DescribeCoverage requests for this dataset are: # http://cida.usgs.gov/thredds/wcs/prism?service=WCS&version=1.0.0&request=GetCapabilities # http://cida.usgs.gov/thredds/wcs/prism?service=WCS&version=1.0.0&request=DescribeCoverage # # The equivalent GetCoverage request that is equivalent ot hte example is: # http://cida.usgs.gov/thredds/wcs/prism?request=GetCoverage&version=1.0.0&service=WCS&format=GeoTIFF&coverage=tmx&time=1895-01-01T00:00:00Z&bbox=-90,40,-89,41 # --- # # Example to find the equivalent information using OWSLib: # from __future__ import absolute_import from __future__ import print_function from owslib.wcs import WebCoverageService wcs=WebCoverageService('http://cida.usgs.gov/thredds/wcs/prism',version='1.0.0') # Take a look at the contents (coverages) of the wcs. print(wcs.contents) tmax=wcs['tmx'] # Take a look at the attributes of the coverage dir(tmax) print(tmax.boundingBoxWGS84) print(tmax.timepositions) print(tmax.supportedFormats) # mock up a simple GetCoverage request. output=wcs.getCoverage(identifier='tmx',time=['1895-01-01T00:00:00Z'],bbox=(-90,40,-89,41),format='GeoTIFF') # Write the file out to disk. f=open('foo.tif','wb') f.write(output.read()) f.close() OWSLib-0.16.0/examples/wfs-wei-script.py000066400000000000000000000016521321706412000177500ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: UTF-8 -*- __author__ = 'Juergen Weichand' from owslib.wfs import WebFeatureService wfs = WebFeatureService(url='http://geoserv.weichand.de:8080/geoserver/wfs', version='2.0.0', timeout=30) # List StoredQueries print('\nStoredQueries for %s' % wfs.identification.title) for storedquery in wfs.storedqueries: print(storedquery.id, storedquery.title) # List Parameter for a given StoredQuery storedquery = wfs.storedqueries[5] print('\nStoredQuery parameters for %s' % storedquery.id) for parameter in storedquery.parameters: print(parameter.name, parameter.type) # GetFeature StoredQuery print('\nDownload data from %s' % wfs.identification.title) response = wfs.getfeature( storedQueryID='GemeindeByGemeindeschluesselEpsg31468', storedQueryParams={'gemeindeschluessel':'09162000'}) out = open('/tmp/test-storedquery.gml', 'wb') out.write(response.read()) out.close() print('... done') OWSLib-0.16.0/examples/wms-getfeatureinfo.py000066400000000000000000000014671321706412000207040ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: UTF-8 -*- __author__ = 'Juergen Weichand' from owslib.wms import WebMapService wms = WebMapService('http://geoserv.weichand.de:8080/geoserver/wms') # GetMap (image/jpeg) response = wms.getmap( layers=['bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4505000,5505000), size=(500,500), format='image/jpeg') out = open('/tmp/getmap-response.jpeg', 'wb') out.write(response.read()) out.close() # GetFeatureInfo (text/html) response = wms.getfeatureinfo( layers=['bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4505000,5505000), size=(500,500), format='image/jpeg', query_layers=['bvv:gmd_ex'], info_format="text/html", xy=(250,250)) out = open('/tmp/getfeatureinfo-response.html', 'wb') out.write(response.read()) out.close()OWSLib-0.16.0/examples/wps-birdhouse.py000066400000000000000000000061271321706412000176620ustar00rootroot00000000000000""" This example calls processes on a Emu WPS: https://github.com/bird-house/emu """ from __future__ import absolute_import from __future__ import print_function from owslib.wps import WebProcessingService, ComplexDataInput, monitorExecution verbose = False def multiple_outputs(): print("\nmultiple outputs ...") # get multiple outputs wps = WebProcessingService('http://localhost:8094/wps', verbose=verbose) processid = 'dummyprocess' inputs = [("input1", '1'), ("input2", '2')] # list of tuple (output identifier, asReference attribute) outputs = [("output1",True), ("output2",False)] execution = wps.execute(processid, inputs, output=outputs) monitorExecution(execution) # show status print('percent complete', execution.percentCompleted) print('status message', execution.statusMessage) # outputs for output in execution.processOutputs: print('identifier=%s, dataType=%s, data=%s, reference=%s' % (output.identifier, output.dataType, output.data, output.reference)) # errors print(execution.status) for error in execution.errors: print(error.code, error.locator, error.text) def complex_input_with_reference(): """ use ComplexDataInput with a reference to a document """ print("\ncomplex_input_with_reference ...") wps = WebProcessingService('http://localhost:8094/wps', verbose=verbose) processid = 'wordcount' textdoc = ComplexDataInput("http://www.gutenberg.org/files/28885/28885-h/28885-h.htm") # alice in wonderland inputs = [("text", textdoc)] # list of tuple (output identifier, asReference attribute) outputs = [("output",True)] execution = wps.execute(processid, inputs, output=outputs) monitorExecution(execution) # show status print('percent complete', execution.percentCompleted) print('status message', execution.statusMessage) for output in execution.processOutputs: print('identifier=%s, dataType=%s, data=%s, reference=%s' % (output.identifier, output.dataType, output.data, output.reference)) def complex_input_with_content(): """ use ComplexDataInput with a direct content """ print("\ncomplex_input_with_content ...") wps = WebProcessingService('http://localhost:8094/wps', verbose=verbose) processid = 'wordcount' textdoc = ComplexDataInput("ALICE was beginning to get very tired ...") # alice in wonderland inputs = [("text", textdoc)] # list of tuple (output identifier, asReference attribute) outputs = [("output",True)] execution = wps.execute(processid, inputs, output=outputs) monitorExecution(execution) # show status print('percent complete', execution.percentCompleted) print('status message', execution.statusMessage) for output in execution.processOutputs: print('identifier=%s, dataType=%s, data=%s, reference=%s' % (output.identifier, output.dataType, output.data, output.reference)) if __name__ == '__main__': # call the examples ... multiple_outputs() complex_input_with_reference() complex_input_with_content() OWSLib-0.16.0/examples/wps-ceda-script.py000066400000000000000000000034251321706412000200720ustar00rootroot00000000000000# Example script that performs a set of (small) live requests versus the live CEDA WPS service from __future__ import absolute_import from __future__ import print_function from owslib.wps import WebProcessingService, WPSExecution, WFSFeatureCollection, WFSQuery, GMLMultiPolygonFeatureCollection, monitorExecution, ComplexData, printInputOutput from owslib.util import dump verbose = True wps = WebProcessingService('http://ceda-wps2.badc.rl.ac.uk/wps', verbose=verbose) # 1) GetCapabilities # GET request: http://ceda-wps2.badc.rl.ac.uk/wps?Service=WPS&Request=GetCapabilities&Format=text/xml wps.getcapabilities() print('WPS Identification type: %s' % wps.identification.type) print('WPS Identification title: %s' % wps.identification.title) print('WPS Identification abstract: %s' % wps.identification.abstract) for operation in wps.operations: print('WPS Operation: %s' % operation.name) for process in wps.processes: print('WPS Process: identifier=%s title=%s' % (process.identifier, process.title)) # 2) DescribeProcess # GET request: http://ceda-wps2.badc.rl.ac.uk/wps?identifier=DoubleIt&version=1.0.0&request=DescribeProcess&service=WPS process = wps.describeprocess('DoubleIt') print('WPS Process: identifier=%s' % process.identifier) print('WPS Process: title=%s' % process.title) print('WPS Process: abstract=%s' % process.abstract) for input in process.dataInputs: print('Process input:') printInputOutput(input, indent='\t') for output in process.processOutputs: print('Process output:') printInputOutput(output, indent='\t') # 3) Execute # POST request: # Note: not working, requires openid login ? #processid = "DoubleIt" #inputs = [ ("NumberToDouble","1") ] #output = "OutputXML" #execution = wps.execute(processid, inputs, output) #monitorExecution(execution) OWSLib-0.16.0/examples/wps-client.py000077500000000000000000000123661321706412000171610ustar00rootroot00000000000000#!/usr/bin/python # -*- coding: ISO-8859-15 -*- # ============================================================================= # # Authors : Luca Cinquini # # ============================================================================= from __future__ import absolute_import from __future__ import print_function import sys import getopt import os from owslib.wps import WebProcessingService, monitorExecution def usage(): print(""" Usage: %s [parameters] Common Parameters for all request types ------------------- -u, --url=[URL] the base URL of the WPS - required -r, --request=[REQUEST] the request type (GetCapabilities, DescribeProcess, Execute) - required -v, --verbose set flag for verbose output - optional (defaults to False) Request Specific Parameters --------------------------- DescribeProcess -i, --identifier=[ID] process identifier - required Execute -x, --xml XML file containing pre-made request to be submitted - required Examples -------- python wps-client.py -u http://cida.usgs.gov/climate/gdp/process/WebProcessingService -r GetCapabilities python wps-client.py --verbose --url=http://cida.usgs.gov/climate/gdp/process/WebProcessingService --request=GetCapabilities python wps-client.py -u http://ceda-wps2.badc.rl.ac.uk/wps -r GetCapabilities python wps-client.py -u http://rsg.pml.ac.uk/wps/generic.cgi -r GetCapabilities python wps-client.py -u http://rsg.pml.ac.uk/wps/vector.cgi -r GetCapabilities python wps-client.py -u http://cida.usgs.gov/climate/gdp/process/WebProcessingService -r DescribeProcess -i gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm python wps-client.py --verbose --url http://cida.usgs.gov/climate/gdp/process/WebProcessingService --request DescribeProcess --identifier gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm python wps-client.py -u http://ceda-wps2.badc.rl.ac.uk/wps -r DescribeProcess -i DoubleIt python wps-client.py -u http://rsg.pml.ac.uk/wps/generic.cgi -r DescribeProcess -i reprojectCoords python wps-client.py -u http://rsg.pml.ac.uk/wps/vector.cgi -r DescribeProcess -i v.mkgrid python wps-client.py -u http://cida.usgs.gov/climate/gdp/process/WebProcessingService -r Execute -x ../tests/wps_USGSExecuteRequest1.xml python wps-client.py --verbose --url http://cida.usgs.gov/climate/gdp/process/WebProcessingService --request Execute --xml ../tests/wps_USGSExecuteRequest1.xml python wps-client.py -u http://rsg.pml.ac.uk/wps/generic.cgi -r Execute -x ../tests/wps_PMLExecuteRequest4.xml python wps-client.py -u http://rsg.pml.ac.uk/wps/generic.cgi -r Execute -x ../tests/wps_PMLExecuteRequest5.xml python wps-client.py -u http://rsg.pml.ac.uk/wps/vector.cgi -r Execute -x ../tests/wps_PMLExecuteRequest6.xml """ % sys.argv[0]) # check args if len(sys.argv) == 1: usage() sys.exit(1) print('ARGV :', sys.argv[1:]) try: options, remainder = getopt.getopt(sys.argv[1:], 'u:r:x:i:v', ['url=', 'request=', 'xml=', 'identifier=', 'verbose']) except getopt.GetoptError as err: print(str(err)) usage() sys.exit(2) print('OPTIONS :', options) url = None request = None identifier = None xml = None verbose = False for opt, arg in options: if opt in ('-u', '--url'): url = arg elif opt in ('-r', '--request'): request = arg elif opt in ('-x', '--xml'): xml = open(arg, 'rb').read() elif opt in ('-i', '--identifier'): identifier = arg elif opt in ('-v', '--verbose'): verbose = True else: assert False, 'Unhandled option' # required arguments for all requests if request is None or url is None: usage() sys.exit(3) # instantiate client wps = WebProcessingService(url, verbose=verbose, skip_caps=True) if request == 'GetCapabilities': wps.getcapabilities() print('WPS Identification type: %s' % wps.identification.type) print('WPS Identification title: %s' % wps.identification.title) print('WPS Identification abstract: %s' % wps.identification.abstract) for operation in wps.operations: print('WPS Operation: %s' % operation.name) for process in wps.processes: print('WPS Process: identifier=%s title=%s' % (process.identifier, process.title)) elif request == 'DescribeProcess': if identifier is None: print('\nERROR: missing mandatory "-i (or --identifier)" argument') usage() sys.exit(4) process = wps.describeprocess(identifier) print('WPS Process: identifier=%s' % process.identifier) print('WPS Process: title=%s' % process.title) print('WPS Process: abstract=%s' % process.abstract) for input in process.dataInputs: print('Process input: identifier=%s, data type=%s, minOccurs=%d, maxOccurs=%d' % (input.identifier, input.dataType, input.minOccurs, input.maxOccurs)) for output in process.processOutputs: print('Process output: identifier=%s, data type=%s' % (output.identifier, output.dataType)) elif request == 'Execute': if xml is None: print('\nERROR: missing mandatory "-x (or --xml)" argument') usage() sys.exit(5) execution = wps.execute(None, [], request=xml) monitorExecution(execution) else: print('\nERROR: Unknown request type') usage() sys.exit(6) OWSLib-0.16.0/examples/wps-pml-script-1.py000066400000000000000000000045441321706412000201270ustar00rootroot00000000000000# Example script that performs a set of (small) live requests versus the live PML WPS service from __future__ import absolute_import from __future__ import print_function from owslib.wps import WebProcessingService, monitorExecution # instantiate WPS client verbose = False wps = WebProcessingService('http://rsg.pml.ac.uk/wps/generic.cgi', verbose=verbose, skip_caps=True) # 1) GetCapabilities wps.getcapabilities() print('WPS Identification type: %s' % wps.identification.type) print('WPS Identification title: %s' % wps.identification.title) print('WPS Identification abstract: %s' % wps.identification.abstract) for operation in wps.operations: print('WPS Operation: %s' % operation.name) for process in wps.processes: print('WPS Process: identifier=%s title=%s' % (process.identifier, process.title)) # 2) DescribeProcess process = wps.describeprocess('reprojectImage') print('WPS Process: identifier=%s' % process.identifier) print('WPS Process: title=%s' % process.title) print('WPS Process: abstract=%s' % process.abstract) for input in process.dataInputs: print('Process input: identifier=%s, data type=%s, minOccurs=%d, maxOccurs=%d' % (input.identifier, input.dataType, input.minOccurs, input.maxOccurs)) for output in process.processOutputs: print('Process output: identifier=%s, data type=%s' % (output.identifier, output.dataType)) # 3a) Execute # GET request: http://rsg.pml.ac.uk/wps/generic.cgi?request=Execute&service=wps&version=1.0.0&identifier=reprojectImage&datainputs=[inputImage=http://rsg.pml.ac.uk/wps/testdata/elev_srtm_30m.img;outputSRS=EPSG:4326]&responsedocument=outputImage=@asreference=true processid = "reprojectImage" inputs = [ ("inputImage","http://rsg.pml.ac.uk/wps/testdata/elev_srtm_30m.img"), ("outputSRS", "EPSG:4326") ] output = "outputImage" execution = wps.execute(processid, inputs, output) monitorExecution(execution) # 3b) Execute # GET request: http://rsg.pml.ac.uk/wps/generic.cgi?request=Execute&service=WPS&version=1.0.0&identifier=reprojectCoords&datainputs=[coords=http://rsg.pml.ac.uk/wps/testdata/coords.txt;outputSRS=EPSG:32630;inputSRS=EPSG:4326] processid = "reprojectCoords" inputs = [ ("coords","http://rsg.pml.ac.uk/wps/testdata/coords.txt"), ("outputSRS", "EPSG:32630"), ("inputSRS","EPSG:4326") ] execution = wps.execute(processid, inputs) monitorExecution(execution) OWSLib-0.16.0/examples/wps-pml-script-2.py000066400000000000000000000041761321706412000201310ustar00rootroot00000000000000# Example script that performs a set of (small) live requests versus the live PML WPS service from __future__ import absolute_import from __future__ import print_function from owslib.wps import WebProcessingService, monitorExecution # instantiate WPS client verbose = False wps = WebProcessingService('http://rsg.pml.ac.uk/wps/vector.cgi', verbose=verbose, skip_caps=True) # 1) GetCapabilities wps.getcapabilities() print('WPS Identification type: %s' % wps.identification.type) print('WPS Identification title: %s' % wps.identification.title) print('WPS Identification abstract: %s' % wps.identification.abstract) for operation in wps.operations: print('WPS Operation: %s' % operation.name) for process in wps.processes: print('WPS Process: identifier=%s title=%s' % (process.identifier, process.title)) # 2) DescribeProcess process = wps.describeprocess('v.net.path') # alternatively, read process description from XML file (no live request to WPS server) #xml = open('../tests/USGSDescribeProcess.xml', 'rb').read() #process = wps.describeprocess('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm', xml=xml) print('WPS Process: identifier=%s' % process.identifier) print('WPS Process: title=%s' % process.title) print('WPS Process: abstract=%s' % process.abstract) for input in process.dataInputs: print('Process input: identifier=%s, data type=%s, minOccurs=%d, maxOccurs=%d' % (input.identifier, input.dataType, input.minOccurs, input.maxOccurs)) for output in process.processOutputs: print('Process output: identifier=%s, data type=%s' % (output.identifier, output.dataType)) # 3) Execute # GET request: http://rsg.pml.ac.uk/wps/vector.cgi?request=execute&service=WPS&version=1.0.0&identifier=v.net.path&datainputs=[input=http://rsg.pml.ac.uk/wps/example/graph.gml;file=1%20-960123.1421801624%204665723.56559387%20-101288.65106088226%205108200.011823481] processid = "v.net.path" inputs = [ ("input","http://rsg.pml.ac.uk/wps/example/graph.gml"), ("file","1 -960123.1421801624 4665723.56559387 -101288.65106088226 5108200.011823481")] execution = wps.execute(processid, inputs) monitorExecution(execution) OWSLib-0.16.0/examples/wps-usgs-script.py000066400000000000000000000135241321706412000201600ustar00rootroot00000000000000# Example script that performs a set of (small) live requests versus the live USGS WPS service from __future__ import absolute_import from __future__ import print_function from owslib.wps import WebProcessingService, WPSExecution, WFSFeatureCollection, WFSQuery, GMLMultiPolygonFeatureCollection, monitorExecution, printInputOutput from owslib.util import dump # instantiate WPS client # setting verbose=True will print out all HTTP request and responses to standard output verbose = False wps = WebProcessingService('http://cida.usgs.gov/climate/gdp/process/WebProcessingService', verbose=verbose, skip_caps=True) # 1) GetCapabilities # Submits an HTTP GET "GetCapabilities" request to the WPS service and parses the HTTP response. wps.getcapabilities() # alternatively, read capabilities from XML file (no live request to WPS server) #xml = open('../tests/USGSCapabilities.xml', 'rb').read() #wps.getcapabilities(xml=xml) print('WPS Identification type: %s' % wps.identification.type) print('WPS Identification title: %s' % wps.identification.title) print('WPS Identification abstract: %s' % wps.identification.abstract) for operation in wps.operations: print('WPS Operation: %s' % operation.name) for process in wps.processes: print('WPS Process: identifier=%s title=%s' % (process.identifier, process.title)) # 2) DescribeProcess # Submits an HTTP GET "DescribeProcess" request to the WPS service and parses the HTTP response process = wps.describeprocess('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm') # alternatively, read process description from XML file (no live request to WPS server) #xml = open('../tests/USGSDescribeProcess.xml', 'rb').read() #process = wps.describeprocess('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm', xml=xml) print('WPS Process: identifier=%s' % process.identifier) print('WPS Process: title=%s' % process.title) print('WPS Process: abstract=%s' % process.abstract) for input in process.dataInputs: print('Process input:') printInputOutput(input, indent='\t') for output in process.processOutputs: print('Process output:') printInputOutput(output, indent='\t') # 3a) Execute # Submits an HTTP POST "Execute" process request to the WPS service, keeps checking the status of the request, # and retrieves the output once the request terminates successfully (displaying any errors if found). # This request uses a FEATURE_COLLECTION input obtained from a live WFS service. #wfsUrl = "http://cida.usgs.gov/climate/gdp/proxy/http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" #query = WFSQuery("sample:CONUS_States", propertyNames=['the_geom',"STATE"], filters=["CONUS_States.508","CONUS_States.469"]) #featureCollection = WFSFeatureCollection(wfsUrl, query) polygon = [(-102.8184, 39.5273), (-102.8184, 37.418), (-101.2363, 37.418), (-101.2363, 39.5273), (-102.8184, 39.5273)] featureCollection = GMLMultiPolygonFeatureCollection( [polygon] ) processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' inputs = [ ("FEATURE_ATTRIBUTE_NAME","the_geom"), ("DATASET_URI", "dods://cida.usgs.gov/qa/thredds/dodsC/derivatives/derivative-days_above_threshold.pr.ncml"), ("DATASET_ID", "ensemble_b1_pr-days_above_threshold"), ("TIME_START","2010-01-01T00:00:00.000Z"), ("TIME_END","2011-01-01T00:00:00.000Z"), ("REQUIRE_FULL_COVERAGE","false"), ("DELIMITER","COMMA"), ("STATISTICS","MEAN"), ("GROUP_BY","STATISTIC"), ("SUMMARIZE_TIMESTEP","false"), ("SUMMARIZE_FEATURE_ATTRIBUTE","false"), ("FEATURE_COLLECTION", featureCollection) ] output = "OUTPUT" execution = wps.execute(processid, inputs, output = "OUTPUT") # alternatively, submit a pre-made request specified in an XML file #request = open('../tests/wps_USGSExecuteRequest1.xml','rb').read() #execution = wps.execute(None, [], request=request) # The monitorExecution() function can be conveniently used to wait for the process termination # It will eventually write the process output to the specified file, or to the file specified by the server. monitorExecution(execution) ''' # 3b) Execute # Submits an HTTP POST "Execute" process request to the WPS service, keeps checking the status of the request, # and retrieves the output once the request terminates successfully (displaying any errors if found). # This request uses a FEATURE_COLLECTION input defined as a GML (lat, lon) polygon. polygon = [(-102.8184, 39.5273), (-102.8184, 37.418), (-101.2363, 37.418), (-101.2363, 39.5273), (-102.8184, 39.5273)] featureCollection = GMLMultiPolygonFeatureCollection( [polygon] ) processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' inputs = [ ("FEATURE_ATTRIBUTE_NAME","the_geom"), ("DATASET_URI", "dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml"), ("DATASET_ID", "ccsm3_a1b_tmax"), ("TIME_START","1960-01-01T00:00:00.000Z"), ("TIME_END","1960-12-31T00:00:00.000Z"), ("REQUIRE_FULL_COVERAGE","true"), ("DELIMITER","COMMA"), ("STATISTICS","MEAN"), ("STATISTICS","MINIMUM"), ("STATISTICS","MAXIMUM"), ("STATISTICS","WEIGHT_SUM"), ("STATISTICS","VARIANCE"), ("STATISTICS","STD_DEV"), ("STATISTICS","COUNT"), ("GROUP_BY","STATISTIC"), ("SUMMARIZE_TIMESTEP","false"), ("SUMMARIZE_FEATURE_ATTRIBUTE","false"), ("FEATURE_COLLECTION", featureCollection) ] output = "OUTPUT" execution = wps.execute(processid, inputs, output = "OUTPUT") # alternatively, submit a pre-made request specified in an XML file #request = open('../tests/wps_USGSExecuteRequest3.xml','rb').read() #execution = wps.execute(None, [], request=request) monitorExecution(execution) ''' OWSLib-0.16.0/owslib/000077500000000000000000000000001321706412000141705ustar00rootroot00000000000000OWSLib-0.16.0/owslib/__init__.py000066400000000000000000000001331321706412000162760ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) __version__ = '0.16.0' OWSLib-0.16.0/owslib/coverage/000077500000000000000000000000001321706412000157635ustar00rootroot00000000000000OWSLib-0.16.0/owslib/coverage/__init__.py000066400000000000000000000001041321706412000200670ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/coverage/wcs100.py000066400000000000000000000451251321706412000173610ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2007 STFC # # Authors : # Dominic Lowe # # Contact email: d.lowe@rl.ac.uk # ============================================================================= from __future__ import (absolute_import, division, print_function) from owslib.coverage.wcsBase import WCSBase, WCSCapabilitiesReader, ServiceException try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.util import openURL, testXMLValue from owslib.etree import etree from owslib.crs import Crs import os, errno import logging from owslib.util import log # function to save writing out WCS namespace in full each time def ns(tag): return '{http://www.opengis.net/wcs}'+tag class WebCoverageService_1_0_0(WCSBase): """Abstraction for OGC Web Coverage Service (WCS), version 1.0.0 Implements IWebCoverageService. """ def __getitem__(self,name): ''' check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self,url,xml, cookies): self.version='1.0.0' self.url = url self.cookies=cookies # initialize from saved capability document or access the server reader = WCSCapabilitiesReader(self.version, self.cookies) if xml: self._capabilities = reader.readString(xml) else: self._capabilities = reader.read(self.url) # check for exceptions se = self._capabilities.find('ServiceException') if se is not None: err_message = str(se.text).strip() raise ServiceException(err_message, xml) self.updateSequence = self._capabilities.attrib.get('updateSequence') #serviceIdentification metadata subelem=self._capabilities.find(ns('Service')) self.identification=ServiceIdentification(subelem) #serviceProvider metadata subelem=self._capabilities.find(ns('Service/')+ns('responsibleParty')) self.provider=ServiceProvider(subelem) #serviceOperations metadata self.operations=[] for elem in self._capabilities.find(ns('Capability/')+ns('Request'))[:]: self.operations.append(OperationMetadata(elem)) #serviceContents metadata self.contents={} for elem in self._capabilities.findall(ns('ContentMetadata/')+ns('CoverageOfferingBrief')): cm=ContentMetadata(elem, self) self.contents[cm.id]=cm #Some WCS servers (wrongly) advertise 'Content' OfferingBrief instead. if self.contents=={}: for elem in self._capabilities.findall(ns('ContentMetadata/')+ns('ContentOfferingBrief')): cm=ContentMetadata(elem, self) self.contents[cm.id]=cm #exceptions self.exceptions = [f.text for f \ in self._capabilities.findall('Capability/Exception/Format')] def items(self): '''supports dict-like items() access''' items=[] for item in self.contents: items.append((item,self.contents[item])) return items def __makeString(self,value): #using repr unconditionally breaks things in some circumstances if a value is already a string if type(value) is not str: sval=repr(value) else: sval = value return sval def getCoverage(self, identifier=None, bbox=None, time=None, format = None, crs=None, width=None, height=None, resx=None, resy=None, resz=None,parameter=None,method='Get',**kwargs): """Request and return a coverage from the WCS as a file-like object note: additional **kwargs helps with multi-version implementation core keyword arguments should be supported cross version example: cvg=wcs.getCoverage(identifier=['TuMYrRQ4'], timeSequence=['2792-06-01T00:00:00.0'], bbox=(-112,36,-106,41),format='cf-netcdf') is equivalent to: http://myhost/mywcs?SERVICE=WCS&REQUEST=GetCoverage&IDENTIFIER=TuMYrRQ4&VERSION=1.1.0&BOUNDINGBOX=-180,-90,180,90&TIME=2792-06-01T00:00:00.0&FORMAT=cf-netcdf """ if log.isEnabledFor(logging.DEBUG): log.debug('WCS 1.0.0 DEBUG: Parameters passed to GetCoverage: identifier=%s, bbox=%s, time=%s, format=%s, crs=%s, width=%s, height=%s, resx=%s, resy=%s, resz=%s, parameter=%s, method=%s, other_arguments=%s'%(identifier, bbox, time, format, crs, width, height, resx, resy, resz, parameter, method, str(kwargs))) try: base_url = next((m.get('url') for m in self.getOperationByName('GetCoverage').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url if log.isEnabledFor(logging.DEBUG): log.debug('WCS 1.0.0 DEBUG: base url of server: %s'%base_url) #process kwargs request = {'version': self.version, 'request': 'GetCoverage', 'service':'WCS'} assert len(identifier) > 0 request['Coverage']=identifier #request['identifier'] = ','.join(identifier) if bbox: request['BBox']=','.join([self.__makeString(x) for x in bbox]) else: request['BBox']=None if time: request['time']=','.join(time) if crs: request['crs']=crs request['format']=format if width: request['width']=width if height: request['height']=height if resx: request['resx']=resx if resy: request['resy']=resy if resz: request['resz']=resz #anything else e.g. vendor specific parameters must go through kwargs if kwargs: for kw in kwargs: request[kw]=kwargs[kw] #encode and request data = urlencode(request) if log.isEnabledFor(logging.DEBUG): log.debug('WCS 1.0.0 DEBUG: Second part of URL: %s'%data) u=openURL(base_url, data, method, self.cookies) return u def getOperationByName(self, name): """Return a named operation item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class OperationMetadata(object): """Abstraction for WCS metadata. Implements IMetadata. """ def __init__(self, elem): """.""" self.name = elem.tag.split('}')[1] #self.formatOptions = [f.text for f in elem.findall('{http://www.opengis.net/wcs/1.1/ows}Parameter/{http://www.opengis.net/wcs/1.1/ows}AllowedValues/{http://www.opengis.net/wcs/1.1/ows}Value')] self.methods = [] for resource in elem.findall(ns('DCPType/')+ns('HTTP/')+ns('Get/')+ns('OnlineResource')): url = resource.attrib['{http://www.w3.org/1999/xlink}href'] self.methods.append({'type': 'Get', 'url': url}) for resource in elem.findall(ns('DCPType/')+ns('HTTP/')+ns('Post/')+ns('OnlineResource')): url = resource.attrib['{http://www.w3.org/1999/xlink}href'] self.methods.append({'type': 'Post', 'url': url}) class ServiceIdentification(object): """ Abstraction for ServiceIdentification metadata """ def __init__(self,elem): # properties self.type='OGC:WCS' self.version='1.0.0' self.service = testXMLValue(elem.find(ns('name'))) self.abstract = testXMLValue(elem.find(ns('description'))) self.title = testXMLValue(elem.find(ns('label'))) self.keywords = [f.text for f in elem.findall(ns('keywords')+'/'+ns('keyword'))] #note: differs from 'rights' in interface self.fees=elem.find(ns('fees')).text self.accessConstraints=elem.find(ns('accessConstraints')).text class ServiceProvider(object): """ Abstraction for WCS ResponsibleParty Implements IServiceProvider""" def __init__(self,elem): #it's not uncommon for the service provider info to be missing #so handle case where None is passed in if elem is None: self.name=None self.url=None self.contact = None else: self.name=testXMLValue(elem.find(ns('organisationName'))) self.url=self.name #there is no definitive place for url WCS, repeat organisationName self.contact=ContactMetadata(elem) class ContactMetadata(object): ''' implements IContactMetadata''' def __init__(self, elem): try: self.name = elem.find(ns('individualName')).text except AttributeError: self.name = None try: self.organization=elem.find(ns('organisationName')).text except AttributeError: self.organization = None try: self.address = elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('deliveryPoint')).text except AttributeError: self.address = None try: self.city= elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('city')).text except AttributeError: self.city = None try: self.region=elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('administrativeArea')).text except AttributeError: self.region = None try: self.postcode=elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('postalCode')).text except AttributeError: self.postcode=None try: self.country=elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('country')).text except AttributeError: self.country = None try: self.email=elem.find(ns('contactInfo')+'/'+ns('address')+'/'+ns('electronicMailAddress')).text except AttributeError: self.email = None class ContentMetadata(object): """ Implements IContentMetadata """ def __init__(self, elem, service): """Initialize. service is required so that describeCoverage requests may be made""" #TODO - examine the parent for bounding box info. #self._parent=parent self._elem=elem self._service=service self.id=elem.find(ns('name')).text self.title = testXMLValue(elem.find(ns('label'))) self.abstract= testXMLValue(elem.find(ns('description'))) self.keywords = [f.text for f in elem.findall(ns('keywords')+'/'+ns('keyword'))] self.boundingBox=None #needed for iContentMetadata harmonisation self.boundingBoxWGS84 = None b = elem.find(ns('lonLatEnvelope')) if b is not None: gmlpositions=b.findall('{http://www.opengis.net/gml}pos') lc=gmlpositions[0].text uc=gmlpositions[1].text self.boundingBoxWGS84 = ( float(lc.split()[0]),float(lc.split()[1]), float(uc.split()[0]), float(uc.split()[1]), ) #others not used but needed for iContentMetadata harmonisation self.styles=None self.crsOptions=None self.defaulttimeposition=None #grid is either a gml:Grid or a gml:RectifiedGrid if supplied as part of the DescribeCoverage response. def _getGrid(self): if not hasattr(self, 'descCov'): self.descCov=self._service.getDescribeCoverage(self.id) gridelem= self.descCov.find(ns('CoverageOffering/')+ns('domainSet/')+ns('spatialDomain/')+'{http://www.opengis.net/gml}RectifiedGrid') if gridelem is not None: grid=RectifiedGrid(gridelem) else: gridelem=self.descCov.find(ns('CoverageOffering/')+ns('domainSet/')+ns('spatialDomain/')+'{http://www.opengis.net/gml}Grid') grid=Grid(gridelem) return grid grid=property(_getGrid, None) #timelimits are the start/end times, timepositions are all timepoints. WCS servers can declare one or both or neither of these. def _getTimeLimits(self): timepoints, timelimits=[],[] b=self._elem.find(ns('lonLatEnvelope')) if b is not None: timepoints=b.findall('{http://www.opengis.net/gml}timePosition') else: #have to make a describeCoverage request... if not hasattr(self, 'descCov'): self.descCov=self._service.getDescribeCoverage(self.id) for pos in self.descCov.findall(ns('CoverageOffering/')+ns('domainSet/')+ns('temporalDomain/')+'{http://www.opengis.net/gml}timePosition'): timepoints.append(pos) if timepoints: timelimits=[timepoints[0].text,timepoints[1].text] return timelimits timelimits=property(_getTimeLimits, None) def _getTimePositions(self): timepositions=[] if not hasattr(self, 'descCov'): self.descCov=self._service.getDescribeCoverage(self.id) for pos in self.descCov.findall(ns('CoverageOffering/')+ns('domainSet/')+ns('temporalDomain/')+'{http://www.opengis.net/gml}timePosition'): timepositions.append(pos.text) return timepositions timepositions=property(_getTimePositions, None) def _getOtherBoundingBoxes(self): ''' incomplete, should return other bounding boxes not in WGS84 #TODO: find any other bounding boxes. Need to check for gml:EnvelopeWithTimePeriod.''' bboxes=[] if not hasattr(self, 'descCov'): self.descCov=self._service.getDescribeCoverage(self.id) for envelope in self.descCov.findall(ns('CoverageOffering/')+ns('domainSet/')+ns('spatialDomain/')+'{http://www.opengis.net/gml}Envelope'): bbox = {} bbox['nativeSrs'] = envelope.attrib['srsName'] gmlpositions = envelope.findall('{http://www.opengis.net/gml}pos') lc=gmlpositions[0].text.split() uc=gmlpositions[1].text.split() bbox['bbox'] = ( float(lc[0]),float(lc[1]), float(uc[0]), float(uc[1]) ) bboxes.append(bbox) return bboxes boundingboxes=property(_getOtherBoundingBoxes,None) def _getSupportedCRSProperty(self): # gets supported crs info crss=[] for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageOffering/')+ns('supportedCRSs/')+ns('responseCRSs')): for crs in elem.text.split(' '): crss.append(Crs(crs)) for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageOffering/')+ns('supportedCRSs/')+ns('requestResponseCRSs')): for crs in elem.text.split(' '): crss.append(Crs(crs)) for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageOffering/')+ns('supportedCRSs/')+ns('nativeCRSs')): for crs in elem.text.split(' '): crss.append(Crs(crs)) return crss supportedCRS=property(_getSupportedCRSProperty, None) def _getSupportedFormatsProperty(self): # gets supported formats info frmts =[] for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageOffering/')+ns('supportedFormats/')+ns('formats')): frmts.append(elem.text) return frmts supportedFormats=property(_getSupportedFormatsProperty, None) def _getAxisDescriptionsProperty(self): #gets any axis descriptions contained in the rangeset (requires a DescribeCoverage call to server). axisDescs =[] for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageOffering/')+ns('rangeSet/')+ns('RangeSet/')+ns('axisDescription/')+ns('AxisDescription')): axisDescs.append(AxisDescription(elem)) #create a 'AxisDescription' object. return axisDescs axisDescriptions=property(_getAxisDescriptionsProperty, None) #Adding classes to represent gml:grid and gml:rectifiedgrid. One of these is used for the cvg.grid property #(where cvg is a member of the contents dictionary) #There is no simple way to convert the offset values in a rectifiedgrid grid to real values without CRS understanding, therefore this is beyond the current scope of owslib, so the representation here is purely to provide access to the information in the GML. class Grid(object): ''' Simple grid class to provide axis and value information for a gml grid ''' def __init__(self, grid): self.axislabels = [] self.dimension=None self.lowlimits=[] self.highlimits=[] if grid is not None: self.dimension=int(grid.get('dimension')) self.lowlimits= grid.find('{http://www.opengis.net/gml}limits/{http://www.opengis.net/gml}GridEnvelope/{http://www.opengis.net/gml}low').text.split(' ') self.highlimits = grid.find('{http://www.opengis.net/gml}limits/{http://www.opengis.net/gml}GridEnvelope/{http://www.opengis.net/gml}high').text.split(' ') for axis in grid.findall('{http://www.opengis.net/gml}axisName'): self.axislabels.append(axis.text) class RectifiedGrid(Grid): ''' RectifiedGrid class, extends Grid with additional offset vector information ''' def __init__(self, rectifiedgrid): super(RectifiedGrid,self).__init__(rectifiedgrid) self.origin=rectifiedgrid.find('{http://www.opengis.net/gml}origin/{http://www.opengis.net/gml}pos').text.split() self.offsetvectors=[] for offset in rectifiedgrid.findall('{http://www.opengis.net/gml}offsetVector'): self.offsetvectors.append(offset.text.split()) class AxisDescription(object): ''' Class to represent the AxisDescription element optionally found as part of the RangeSet and used to define ordinates of additional dimensions such as wavelength bands or pressure levels''' def __init__(self, axisdescElem): self.name=self.label=None self.values=[] for elem in axisdescElem.getchildren(): if elem.tag == ns('name'): self.name = elem.text elif elem.tag == ns('label'): self.label = elem.text elif elem.tag == ns('values'): for child in elem.getchildren(): self.values.append(child.text) OWSLib-0.16.0/owslib/coverage/wcs110.py000066400000000000000000000443321321706412000173610ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2007 STFC # # Authors : # Dominic Lowe # # Contact email: d.lowe@rl.ac.uk # ============================================================================= ##########NOTE: Does not conform to new interfaces yet ################# from __future__ import (absolute_import, division, print_function) from .wcsBase import WCSBase, WCSCapabilitiesReader, ServiceException from owslib.util import openURL, testXMLValue try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.etree import etree import os, errno from owslib.coverage import wcsdecoder from owslib.crs import Crs import logging from owslib.util import log class Namespaces_1_1_0(): def WCS(self, tag): return '{http://www.opengis.net/wcs/1.1}'+tag def WCS_OWS(self, tag): return '{http://www.opengis.net/wcs/1.1/ows}'+tag def OWS(self, tag): return '{http://www.opengis.net/ows}'+tag class WebCoverageService_1_1_0(WCSBase): """Abstraction for OGC Web Coverage Service (WCS), version 1.1.0 Implements IWebCoverageService. """ version='1.1.0' ns = Namespaces_1_1_0() def __getitem__(self, name): ''' check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self,url,xml, cookies): self.url = url self.cookies=cookies # initialize from saved capability document or access the server reader = WCSCapabilitiesReader(self.version) if xml: self._capabilities = reader.readString(xml) else: self._capabilities = reader.read(self.url) # check for exceptions se = self._capabilities.find(self.ns.OWS('Exception')) if se is not None: err_message = str(se.text).strip() raise ServiceException(err_message, xml) #build metadata objects: self.updateSequence = self._capabilities.attrib.get('updateSequence') #serviceIdentification metadata elem=self._capabilities.find(self.ns.WCS_OWS('ServiceIdentification')) if elem is None: elem=self._capabilities.find(self.ns.OWS('ServiceIdentification')) self.identification=ServiceIdentification(elem, self.ns) #serviceProvider elem=self._capabilities.find(self.ns.OWS('ServiceProvider')) or self._capabilities.find(self.ns.OWS('ServiceProvider')) self.provider=ServiceProvider(elem, self.ns) #serviceOperations self.operations = [] for elem in self._capabilities.findall(self.ns.WCS_OWS('OperationsMetadata') + '/' + self.ns.WCS_OWS('Operation') + '/'): self.operations.append(Operation(elem, self.ns)) # exceptions - ***********TO DO ************* self.exceptions = [f.text for f \ in self._capabilities.findall('Capability/Exception/Format')] # serviceContents: our assumption is that services use a top-level layer # as a metadata organizer, nothing more. self.contents = {} top = self._capabilities.find(self.ns.WCS('Contents') + '/' + self.ns.WCS('CoverageSummary')) for elem in self._capabilities.findall(self.ns.WCS('Contents') + '/' + self.ns.WCS('CoverageSummary') + '/' + self.ns.WCS('CoverageSummary')): cm=ContentMetadata(elem, top, self, self.ns) self.contents[cm.id]=cm if self.contents=={}: #non-hierarchical. top=None for elem in self._capabilities.findall(self.ns.WCS('Contents') + '/' + self.ns.WCS('CoverageSummary')): cm=ContentMetadata(elem, top, self, self.ns) #make the describeCoverage requests to populate the supported formats/crs attributes self.contents[cm.id]=cm def items(self): '''supports dict-like items() access''' items=[] for item in self.contents: items.append((item,self.contents[item])) return items #TO DECIDE: Offer repackaging of coverageXML/Multipart MIME output? #def getData(self, directory='outputdir', outputfile='coverage.nc', **kwargs): #u=self.getCoverageRequest(**kwargs) ##create the directory if it doesn't exist: #try: #os.mkdir(directory) #except OSError, e: ## Ignore directory exists error #if e.errno <> errno.EEXIST: #raise ##elif wcs.version=='1.1.0': ##Could be multipart mime or XML Coverages document, need to use the decoder... #decoder=wcsdecoder.WCSDecoder(u) #x=decoder.getCoverages() #if type(x) is wcsdecoder.MpartMime: #filenames=x.unpackToDir(directory) ##print 'Files from 1.1.0 service written to %s directory'%(directory) #else: #filenames=x #return filenames #TO DO: Handle rest of the WCS 1.1.0 keyword parameters e.g. GridCRS etc. def getCoverage(self, identifier=None, bbox=None, time=None, format = None, store=False, rangesubset=None, gridbaseCRS=None, gridtype=None, gridCS=None, gridorigin=None, gridoffsets=None, method='Get',**kwargs): """Request and return a coverage from the WCS as a file-like object note: additional **kwargs helps with multi-version implementation core keyword arguments should be supported cross version example: cvg=wcs.getCoverageRequest(identifier=['TuMYrRQ4'], time=['2792-06-01T00:00:00.0'], bbox=(-112,36,-106,41),format='application/netcdf', store='true') is equivalent to: http://myhost/mywcs?SERVICE=WCS&REQUEST=GetCoverage&IDENTIFIER=TuMYrRQ4&VERSION=1.1.0&BOUNDINGBOX=-180,-90,180,90&TIMESEQUENCE=2792-06-01T00:00:00.0&FORMAT=application/netcdf if store = true, returns a coverages XML file if store = false, returns a multipart mime """ if log.isEnabledFor(logging.DEBUG): log.debug('WCS 1.1.0 DEBUG: Parameters passed to GetCoverage: identifier=%s, bbox=%s, time=%s, format=%s, rangesubset=%s, gridbaseCRS=%s, gridtype=%s, gridCS=%s, gridorigin=%s, gridoffsets=%s, method=%s, other_arguments=%s'%(identifier, bbox, time, format, rangesubset, gridbaseCRS, gridtype, gridCS, gridorigin, gridoffsets, method, str(kwargs))) if method == 'Get': method=self.ns.WCS_OWS('Get') try: base_url = next((m.get('url') for m in self.getOperationByName('GetCoverage').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url #process kwargs request = {'version': self.version, 'request': 'GetCoverage', 'service':'WCS'} assert len(identifier) > 0 request['identifier']=identifier #request['identifier'] = ','.join(identifier) if bbox: request['boundingbox']=','.join([repr(x) for x in bbox]) if time: request['timesequence']=','.join(time) request['format']=format request['store']=store #rangesubset: untested - require a server implementation if rangesubset: request['RangeSubset']=rangesubset #GridCRS structure: untested - require a server implementation if gridbaseCRS: request['gridbaseCRS']=gridbaseCRS if gridtype: request['gridtype']=gridtype if gridCS: request['gridCS']=gridCS if gridorigin: request['gridorigin']=gridorigin if gridoffsets: request['gridoffsets']=gridoffsets #anything else e.g. vendor specific parameters must go through kwargs if kwargs: for kw in kwargs: request[kw]=kwargs[kw] #encode and request data = urlencode(request) u=openURL(base_url, data, method, self.cookies) return u def getOperationByName(self, name): """Return a named operation item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class Operation(object): """Abstraction for operation metadata Implements IOperationMetadata. """ ns = Namespaces_1_1_0() def __init__(self, elem, nmSpc): self.name = elem.get('name') self.formatOptions = [f.text for f in elem.findall(nmSpc.WCS_OWS('Parameter') + '/' + nmSpc.WCS_OWS('AllowedValues') + '/' + nmSpc.WCS_OWS('Value'))] methods = [] for verb in elem.findall(nmSpc.WCS_OWS('DCP') + '/' + nmSpc.WCS_OWS('HTTP/*')): url = verb.attrib['{http://www.w3.org/1999/xlink}href'] methods.append((verb.tag, {'url': url})) self.methods = dict(methods) class ServiceIdentification(object): """ Abstraction for ServiceIdentification Metadata implements IServiceIdentificationMetadata""" def __init__(self, elem, nmSpc): self.service="WCS" self.title=testXMLValue(elem.find(nmSpc.OWS('Title'))) if self.title is None: #may have used the wcs ows namespace: self.title=testXMLValue(elem.find(nmSpc.WCS_OWS('Title'))) if self.title is None: #may have used the other wcs ows namespace: self.title=testXMLValue(elem.find(nmSpc.OWS('Title'))) self.abstract=testXMLValue(elem.find(nmSpc.OWS('Abstract'))) if self.abstract is None:#may have used the wcs ows namespace: self.abstract=testXMLValue(elem.find(nmSpc.WCS_OWS('Abstract'))) if self.title is None: #may have used the other wcs ows namespace: self.title=testXMLValue(elem.find(nmSpc.OWS('Abstract'))) if elem.find(nmSpc.OWS('Abstract')) is not None: self.abstract=elem.find(nmSpc.OWS('Abstract')).text else: self.abstract = None self.keywords = [f.text for f in elem.findall(nmSpc.OWS('Keywords') + '/' + nmSpc.OWS('Keyword'))] #self.link = elem.find(nmSpc.WCS('Service') + '/' + nmSpc.WCS('OnlineResource')).attrib.get('{http://www.w3.org/1999/xlink}href', '') if elem.find(nmSpc.OWS('ServiceType')) is not None: self.type = elem.find(nmSpc.OWS('ServiceType')).text if elem.find(nmSpc.OWS('ServiceTypeVersion')) is not None: self.version = elem.find(nmSpc.OWS('ServiceTypeVersion')).text if elem.find(nmSpc.WCS_OWS('Fees')) is not None: self.fees=elem.find(nmSpc.WCS_OWS('Fees')).text else: self.fees=elem.find(nmSpc.OWS('Fees')).text if elem.find(nmSpc.WCS_OWS('AccessConstraints')) is not None: self.accessConstraints=elem.find(nmSpc.WCS_OWS('AccessConstraints')).text else: self.accessConstraints=elem.find(nmSpc.OWS('AccessConstraints')).text class ServiceProvider(object): """ Abstraction for ServiceProvider metadata implements IServiceProviderMetadata """ def __init__(self, elem, nmSpc): name=elem.find(nmSpc.OWS('ProviderName')) if name is not None: self.name=name.text else: self.name=None #self.contact=ServiceContact(elem.find(nmSpc.OWS('ServiceContact'))) self.contact =ContactMetadata(elem, nmSpc) self.url=self.name # no obvious definitive place for url in wcs, repeat provider name? class ContactMetadata(object): ''' implements IContactMetadata''' def __init__(self, elem, nmSpc): try: self.name = elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('IndividualName')).text except AttributeError: self.name = None try: self.organization=elem.find(nmSpc.OWS('ProviderName')).text except AttributeError: self.organization = None try: self.address = elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('DeliveryPoint')).text except AttributeError: self.address = None try: self.city= elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('City')).text except AttributeError: self.city = None try: self.region= elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('AdministrativeArea')).text except AttributeError: self.region = None try: self.postcode= elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('PostalCode')).text except AttributeError: self.postcode = None try: self.country= elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('Country')).text except AttributeError: self.country = None try: self.email = elem.find(nmSpc.OWS('ServiceContact') + '/' + nmSpc.OWS('ContactInfo') + '/' + nmSpc.OWS('Address') + '/' + nmSpc.OWS('ElectronicMailAddress')).text except AttributeError: self.email = None class ContentMetadata(object): """Abstraction for WCS ContentMetadata Implements IContentMetadata """ def __init__(self, elem, parent, service, nmSpc): """Initialize.""" #TODO - examine the parent for bounding box info. self._service=service self._elem=elem self._parent=parent self.id=self._checkChildAndParent(nmSpc.WCS('Identifier')) self.description =self._checkChildAndParent(nmSpc.WCS('Description')) self.title =self._checkChildAndParent(nmSpc.OWS('Title')) self.abstract =self._checkChildAndParent(nmSpc.OWS('Abstract')) #keywords. self.keywords=[] for kw in elem.findall(nmSpc.OWS('Keywords') + '/' + nmSpc.OWS('Keyword')): if kw is not None: self.keywords.append(kw.text) #also inherit any keywords from parent coverage summary (if there is one) if parent is not None: for kw in parent.findall(nmSpc.OWS('Keywords') + '/' + nmSpc.OWS('Keyword')): if kw is not None: self.keywords.append(kw.text) self.boundingBox=None #needed for iContentMetadata harmonisation self.boundingBoxWGS84 = None b = elem.find(nmSpc.OWS('WGS84BoundingBox')) if b is not None: lc=b.find(nmSpc.OWS('LowerCorner')).text uc=b.find(nmSpc.OWS('UpperCorner')).text self.boundingBoxWGS84 = ( float(lc.split()[0]),float(lc.split()[1]), float(uc.split()[0]), float(uc.split()[1]), ) # bboxes - other CRS self.boundingboxes = [] for bbox in elem.findall(nmSpc.OWS('BoundingBox')): if bbox is not None: try: lc=b.find(nmSpc.OWS('LowerCorner')).text uc=b.find(nmSpc.OWS('UpperCorner')).text boundingBox = ( float(lc.split()[0]),float(lc.split()[1]), float(uc.split()[0]), float(uc.split()[1]), b.attrib['crs']) self.boundingboxes.append(boundingBox) except: pass #others not used but needed for iContentMetadata harmonisation self.styles=None self.crsOptions=None #SupportedCRS self.supportedCRS=[] for crs in elem.findall(nmSpc.WCS('SupportedCRS')): self.supportedCRS.append(Crs(crs.text)) #SupportedFormats self.supportedFormats=[] for format in elem.findall(nmSpc.WCS('SupportedFormat')): self.supportedFormats.append(format.text) #grid is either a gml:Grid or a gml:RectifiedGrid if supplied as part of the DescribeCoverage response. def _getGrid(self): grid=None #TODO- convert this to 1.1 from 1.0 #if not hasattr(self, 'descCov'): #self.descCov=self._service.getDescribeCoverage(self.id) #gridelem= self.descCov.find(ns('CoverageOffering/')+ns('domainSet/')+ns('spatialDomain/')+'{http://www.opengis.net/gml}RectifiedGrid') #if gridelem is not None: #grid=RectifiedGrid(gridelem) #else: #gridelem=self.descCov.find(ns('CoverageOffering/')+ns('domainSet/')+ns('spatialDomain/')+'{http://www.opengis.net/gml}Grid') #grid=Grid(gridelem) return grid grid=property(_getGrid, None) #time limits/postions require a describeCoverage request therefore only resolve when requested def _getTimeLimits(self): timelimits=[] for elem in self._service.getDescribeCoverage(self.id).findall(ns('CoverageDescription/')+ns('Domain/')+ns('TemporalDomain/')+ns('TimePeriod/')): subelems=elem.getchildren() timelimits=[subelems[0].text,subelems[1].text] return timelimits timelimits=property(_getTimeLimits, None) #TODO timepositions property def _getTimePositions(self): return [] timepositions=property(_getTimePositions, None) def _checkChildAndParent(self, path): ''' checks child coverage summary, and if item not found checks higher level coverage summary''' try: value = self._elem.find(path).text except: try: value = self._parent.find(path).text except: value = None return value OWSLib-0.16.0/owslib/coverage/wcs111.py000066400000000000000000000015611321706412000173570ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2015 Luís de Sousa # # Authors : # Luís de Sousa # # Contact email: luis.a.de.sousa@gmail.com # ============================================================================= from owslib.coverage import wcs110 class Namespaces_1_1_1(): def WCS(self, tag): return '{http://www.opengis.net/wcs/1.1.1}'+tag def WCS_OWS(self, tag): return '{http://www.opengis.net/wcs/1.1.1/ows}'+tag def OWS(self, tag): return '{http://www.opengis.net/ows/1.1}'+tag class WebCoverageService_1_1_1(wcs110.WebCoverageService_1_1_0): """Abstraction for OGC Web Coverage Service (WCS), version 1.1.1 Implements IWebCoverageService. """ version='1.1.1' ns = Namespaces_1_1_1() OWSLib-0.16.0/owslib/coverage/wcsBase.py000066400000000000000000000144531321706412000177330ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2007 STFC # # Authors : # Dominic Lowe # # Contact email: d.lowe@rl.ac.uk # ============================================================================= from __future__ import (absolute_import, division, print_function) try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.etree import etree import cgi from six.moves import cStringIO as StringIO import six from owslib.util import openURL class ServiceException(Exception): """WCS ServiceException Attributes: message -- short error message xml -- full xml error message from server """ def __init__(self, message, xml): self.message = message self.xml = xml def __str__(self): return repr(self.message) class WCSBase(object): """Base class to be subclassed by version dependent WCS classes. Provides 'high-level' version independent methods""" def __new__(self,url, xml, cookies): """ overridden __new__ method @type url: string @param url: url of WCS capabilities document @type xml: string @param xml: elementtree object @return: inititalised WCSBase object """ obj=object.__new__(self) obj.__init__(url, xml, cookies) self.cookies=cookies self._describeCoverage = {} #cache for DescribeCoverage responses return obj def __init__(self): pass def getDescribeCoverage(self, identifier): ''' returns a describe coverage document - checks the internal cache to see if it has been fetched before ''' if identifier not in self._describeCoverage.keys(): reader = DescribeCoverageReader(self.version, identifier, self.cookies) self._describeCoverage[identifier] = reader.read(self.url) return self._describeCoverage[identifier] class WCSCapabilitiesReader(object): """Read and parses WCS capabilities document into a lxml.etree infoset """ def __init__(self, version=None, cookies = None): """Initialize @type version: string @param version: WCS Version parameter e.g '1.0.0' """ self.version = version self._infoset = None self.cookies = cookies def capabilities_url(self, service_url): """Return a capabilities url @type service_url: string @param service_url: base url of WCS service @rtype: string @return: getCapabilities URL """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'WCS')) if 'request' not in params: qs.append(('request', 'GetCapabilities')) if ('version' not in params) and (self.version is not None): qs.append(('version', self.version)) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, service_url, timeout=30): """Get and parse a WCS capabilities document, returning an elementtree tree @type service_url: string @param service_url: The base url, to which is appended the service, version, and request parameters @rtype: elementtree tree @return: An elementtree tree representation of the capabilities document """ request = self.capabilities_url(service_url) u = openURL(request, timeout=timeout, cookies=self.cookies) return etree.fromstring(u.read()) def readString(self, st): """Parse a WCS capabilities document, returning an instance of WCSCapabilitiesInfoset string should be an XML capabilities document """ return etree.fromstring(st) class DescribeCoverageReader(object): """Read and parses WCS DescribeCoverage document into a lxml.etree infoset """ def __init__(self, version, identifier, cookies): """Initialize @type version: string @param version: WCS Version parameter e.g '1.0.0' """ self.version = version self._infoset = None self.identifier=identifier self.cookies = cookies def descCov_url(self, service_url): """Return a describe coverage url @type service_url: string @param service_url: base url of WCS service @rtype: string @return: getCapabilities URL """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'WCS')) if 'request' not in params: qs.append(('request', 'DescribeCoverage')) if 'version' not in params: qs.append(('version', self.version)) if self.version == '1.0.0': if 'coverage' not in params: qs.append(('coverage', self.identifier)) elif self.version == '1.1.0' or self.version == '1.1.1': #NOTE: WCS 1.1.0 is ambigous about whether it should be identifier #or identifiers (see tables 9, 10 of specification) if 'identifiers' not in params: qs.append(('identifiers', self.identifier)) if 'identifier' not in params: qs.append(('identifier', self.identifier)) qs.append(('format', 'text/xml')) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, service_url, timeout=30): """Get and parse a Describe Coverage document, returning an elementtree tree @type service_url: string @param service_url: The base url, to which is appended the service, version, and request parameters @rtype: elementtree tree @return: An elementtree tree representation of the capabilities document """ request = self.descCov_url(service_url) u = openURL(request, cookies=self.cookies, timeout=timeout) return etree.fromstring(u.read()) OWSLib-0.16.0/owslib/coverage/wcsdecoder.py000066400000000000000000000075051321706412000204660ustar00rootroot00000000000000#WCS response decoder. #Decodes response from a WCS (either a Coverages XML document or a Multipart MIME) and extracts the urls of the coverage data. #Copyright (c) 2007 STFC #Author: Dominic Lowe, STFC #contact email: d.lowe@rl.ac.uk # # Multipart MIME decoding based on http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/86676 #example: used in conjunction with ows lib wcs: #from owslib import wcsdecoder #u=wcs.getcoverage(identifier=['TuMYrRQ4'], timeSequence=['2792-06-01T00:00:00.0'], bbox=(-112,36,-106,41),format='application/netcdf', store='true') #decoder=wcsdecoder.WCSDecoder(u) #decoder.getCoverages() from __future__ import (absolute_import, division, print_function) import os from owslib.etree import etree import email import errno class WCSDecoder(object): def __init__(self, u): ''' initiate with a urllib url object.''' self.u=u self._getType() def _getType(self): ''' determine whether it is a Multipart Mime or a Coverages XML file''' #what's the best way to test this? #for now read start of file tempu=self.u if tempu.readline()[:14] == ' # # Contact email: tomkralidis@gmail.com # ============================================================================= """ API for OGC CRS constructs. """ from __future__ import (absolute_import, division, print_function) # list of URN codes for EPSG in which axis order # of coordinates are y,x (e.g. lat, long) axisorder_yx = frozenset([ 4326, 4258, 31466, 31467, 31468, 31469, 2166, 2167, 2168, 2036, 2044, 2045, 2065, 2081, 2082, 2083, 2085, 2086, 2091, 2092, 2093, 2096, 2097, 2098, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2176, 2177, 2178, 2179, 2180, 2193, 2199, 2200, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2336, 2337, 2338, 2339, 2340, 2341, 2342, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351, 2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2400, 2401, 2402, 2403, 2404, 2405, 2406, 2407, 2408, 2409, 2410, 2411, 2412, 2413, 2414, 2415, 2416, 2417, 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428, 2429, 2430, 2431, 2432, 2433, 2434, 2435, 2436, 2437, 2438, 2439, 2440, 2441, 2442, 2443, 2444, 2445, 2446, 2447, 2448, 2449, 2450, 2451, 2452, 2453, 2454, 2455, 2456, 2457, 2458, 2459, 2460, 2461, 2462, 2463, 2464, 2465, 2466, 2467, 2468, 2469, 2470, 2471, 2472, 2473, 2474, 2475, 2476, 2477, 2478, 2479, 2480, 2481, 2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491, 2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501, 2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511, 2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521, 2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531, 2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541, 2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2551, 2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570, 2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580, 2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599, 2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609, 2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619, 2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629, 2630, 2631, 2632, 2633, 2634, 2635, 2636, 2637, 2638, 2639, 2640, 2641, 2642, 2643, 2644, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, 2656, 2657, 2658, 2659, 2660, 2661, 2662, 2663, 2664, 2665, 2666, 2667, 2668, 2669, 2670, 2671, 2672, 2673, 2674, 2675, 2676, 2677, 2678, 2679, 2680, 2681, 2682, 2683, 2684, 2685, 2686, 2687, 2688, 2689, 2690, 2691, 2692, 2693, 2694, 2695, 2696, 2697, 2698, 2699, 2700, 2701, 2702, 2703, 2704, 2705, 2706, 2707, 2708, 2709, 2710, 2711, 2712, 2713, 2714, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, 2723, 2724, 2725, 2726, 2727, 2728, 2729, 2730, 2731, 2732, 2733, 2734, 2735, 2738, 2739, 2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749, 2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2935, 2936, 2937, 2938, 2939, 2940, 2941, 2953, 2963, 3006, 3007, 3008, 3009, 3010, 3011, 3012, 3013, 3014, 3015, 3016, 3017, 3018, 3019, 3020, 3021, 3022, 3023, 3024, 3025, 3026, 3027, 3028, 3029, 3030, 3034, 3035, 3038, 3039, 3040, 3041, 3042, 3043, 3044, 3045, 3046, 3047, 3048, 3049, 3050, 3051, 3058, 3059, 3068, 3114, 3115, 3116, 3117, 3118, 3120, 3126, 3127, 3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136, 3137, 3138, 3139, 3140, 3146, 3147, 3150, 3151, 3152, 3300, 3301, 3328, 3329, 3330, 3331, 3332, 3333, 3334, 3335, 3346, 3350, 3351, 3352, 3366, 3386, 3387, 3388, 3389, 3390, 3396, 3397, 3398, 3399, 3407, 3414, 3416, 3764, 3788, 3789, 3790, 3791, 3793, 3795, 3796, 3819, 3821, 3823, 3824, 3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841, 3842, 3843, 3844, 3845, 3846, 3847, 3848, 3849, 3850, 3851, 3852, 3854, 3873, 3874, 3875, 3876, 3877, 3878, 3879, 3880, 3881, 3882, 3883, 3884, 3885, 3888, 3889, 3906, 3907, 3908, 3909, 3910, 3911, 4001, 4002, 4003, 4004, 4005, 4006, 4007, 4008, 4009, 4010, 4011, 4012, 4013, 4014, 4015, 4016, 4017, 4018, 4019, 4020, 4021, 4022, 4023, 4024, 4025, 4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034, 4035, 4036, 4037, 4038, 4040, 4041, 4042, 4043, 4044, 4045, 4046, 4047, 4052, 4053, 4054, 4055, 4074, 4075, 4080, 4081, 4120, 4121, 4122, 4123, 4124, 4125, 4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174, 4175, 4176, 4178, 4179, 4180, 4181, 4182, 4183, 4184, 4185, 4188, 4189, 4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214, 4215, 4216, 4218, 4219, 4220, 4221, 4222, 4223, 4224, 4225, 4226, 4227, 4228, 4229, 4230, 4231, 4232, 4233, 4234, 4235, 4236, 4237, 4238, 4239, 4240, 4241, 4242, 4243, 4244, 4245, 4246, 4247, 4248, 4249, 4250, 4251, 4252, 4253, 4254, 4255, 4256, 4257, 4259, 4260, 4261, 4262, 4263, 4264, 4265, 4266, 4267, 4268, 4269, 4270, 4271, 4272, 4273, 4274, 4275, 4276, 4277, 4278, 4279, 4280, 4281, 4282, 4283, 4284, 4285, 4286, 4287, 4288, 4289, 4291, 4292, 4293, 4294, 4295, 4296, 4297, 4298, 4299, 4300, 4301, 4302, 4303, 4304, 4306, 4307, 4308, 4309, 4310, 4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319, 4322, 4324, 4327, 4329, 4339, 4341, 4343, 4345, 4347, 4349, 4351, 4353, 4355, 4357, 4359, 4361, 4363, 4365, 4367, 4369, 4371, 4373, 4375, 4377, 4379, 4381, 4383, 4386, 4388, 4417, 4434, 4463, 4466, 4469, 4470, 4472, 4475, 4480, 4482, 4483, 4490, 4491, 4492, 4493, 4494, 4495, 4496, 4497, 4498, 4499, 4500, 4501, 4502, 4503, 4504, 4505, 4506, 4507, 4508, 4509, 4510, 4511, 4512, 4513, 4514, 4515, 4516, 4517, 4518, 4519, 4520, 4521, 4522, 4523, 4524, 4525, 4526, 4527, 4528, 4529, 4530, 4531, 4532, 4533, 4534, 4535, 4536, 4537, 4538, 4539, 4540, 4541, 4542, 4543, 4544, 4545, 4546, 4547, 4548, 4549, 4550, 4551, 4552, 4553, 4554, 4555, 4557, 4558, 4568, 4569, 4570, 4571, 4572, 4573, 4574, 4575, 4576, 4577, 4578, 4579, 4580, 4581, 4582, 4583, 4584, 4585, 4586, 4587, 4588, 4589, 4600, 4601, 4602, 4603, 4604, 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4613, 4614, 4615, 4616, 4617, 4618, 4619, 4620, 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4643, 4644, 4645, 4646, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, 4680, 4681, 4682, 4683, 4684, 4685, 4686, 4687, 4688, 4689, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, 4698, 4699, 4700, 4701, 4702, 4703, 4704, 4705, 4706, 4707, 4708, 4709, 4710, 4711, 4712, 4713, 4714, 4715, 4716, 4717, 4718, 4719, 4720, 4721, 4722, 4723, 4724, 4725, 4726, 4727, 4728, 4729, 4730, 4731, 4732, 4733, 4734, 4735, 4736, 4737, 4738, 4739, 4740, 4741, 4742, 4743, 4744, 4745, 4746, 4747, 4748, 4749, 4750, 4751, 4752, 4753, 4754, 4755, 4756, 4757, 4758, 4759, 4760, 4761, 4762, 4763, 4764, 4765, 4766, 4767, 4768, 4769, 4770, 4771, 4772, 4773, 4774, 4775, 4776, 4777, 4778, 4779, 4780, 4781, 4782, 4783, 4784, 4785, 4786, 4787, 4788, 4789, 4790, 4791, 4792, 4793, 4794, 4795, 4796, 4797, 4798, 4799, 4800, 4801, 4802, 4803, 4804, 4805, 4806, 4807, 4808, 4809, 4810, 4811, 4812, 4813, 4814, 4815, 4816, 4817, 4818, 4819, 4820, 4821, 4822, 4823, 4824, 4839, 4855, 4856, 4857, 4858, 4859, 4860, 4861, 4862, 4863, 4864, 4865, 4866, 4867, 4868, 4869, 4870, 4871, 4872, 4873, 4874, 4875, 4876, 4877, 4878, 4879, 4880, 4883, 4885, 4887, 4889, 4891, 4893, 4895, 4898, 4900, 4901, 4902, 4903, 4904, 4907, 4909, 4921, 4923, 4925, 4927, 4929, 4931, 4933, 4935, 4937, 4939, 4941, 4943, 4945, 4947, 4949, 4951, 4953, 4955, 4957, 4959, 4961, 4963, 4965, 4967, 4969, 4971, 4973, 4975, 4977, 4979, 4981, 4983, 4985, 4987, 4989, 4991, 4993, 4995, 4997, 4999, 5012, 5013, 5017, 5048, 5105, 5106, 5107, 5108, 5109, 5110, 5111, 5112, 5113, 5114, 5115, 5116, 5117, 5118, 5119, 5120, 5121, 5122, 5123, 5124, 5125, 5126, 5127, 5128, 5129, 5130, 5132, 5167, 5168, 5169, 5170, 5171, 5172, 5173, 5174, 5175, 5176, 5177, 5178, 5179, 5180, 5181, 5182, 5183, 5184, 5185, 5186, 5187, 5188, 5224, 5228, 5229, 5233, 5245, 5246, 5251, 5252, 5253, 5254, 5255, 5256, 5257, 5258, 5259, 5263, 5264, 5269, 5270, 5271, 5272, 5273, 5274, 5275, 5801, 5802, 5803, 5804, 5808, 5809, 5810, 5811, 5812, 5813, 5814, 5815, 5816, 20004, 20005, 20006, 20007, 20008, 20009, 20010, 20011, 20012, 20013, 20014, 20015, 20016, 20017, 20018, 20019, 20020, 20021, 20022, 20023, 20024, 20025, 20026, 20027, 20028, 20029, 20030, 20031, 20032, 20064, 20065, 20066, 20067, 20068, 20069, 20070, 20071, 20072, 20073, 20074, 20075, 20076, 20077, 20078, 20079, 20080, 20081, 20082, 20083, 20084, 20085, 20086, 20087, 20088, 20089, 20090, 20091, 20092, 21413, 21414, 21415, 21416, 21417, 21418, 21419, 21420, 21421, 21422, 21423, 21453, 21454, 21455, 21456, 21457, 21458, 21459, 21460, 21461, 21462, 21463, 21473, 21474, 21475, 21476, 21477, 21478, 21479, 21480, 21481, 21482, 21483, 21896, 21897, 21898, 21899, 22171, 22172, 22173, 22174, 22175, 22176, 22177, 22181, 22182, 22183, 22184, 22185, 22186, 22187, 22191, 22192, 22193, 22194, 22195, 22196, 22197, 25884, 27205, 27206, 27207, 27208, 27209, 27210, 27211, 27212, 27213, 27214, 27215, 27216, 27217, 27218, 27219, 27220, 27221, 27222, 27223, 27224, 27225, 27226, 27227, 27228, 27229, 27230, 27231, 27232, 27391, 27392, 27393, 27394, 27395, 27396, 27397, 27398, 27492, 28402, 28403, 28404, 28405, 28406, 28407, 28408, 28409, 28410, 28411, 28412, 28413, 28414, 28415, 28416, 28417, 28418, 28419, 28420, 28421, 28422, 28423, 28424, 28425, 28426, 28427, 28428, 28429, 28430, 28431, 28432, 28462, 28463, 28464, 28465, 28466, 28467, 28468, 28469, 28470, 28471, 28472, 28473, 28474, 28475, 28476, 28477, 28478, 28479, 28480, 28481, 28482, 28483, 28484, 28485, 28486, 28487, 28488, 28489, 28490, 28491, 28492, 29701, 29702, 30161, 30162, 30163, 30164, 30165, 30166, 30167, 30168, 30169, 30170, 30171, 30172, 30173, 30174, 30175, 30176, 30177, 30178, 30179, 30800, 31251, 31252, 31253, 31254, 31255, 31256, 31257, 31258, 31259, 31275, 31276, 31277, 31278, 31279, 31281, 31282, 31283, 31284, 31285, 31286, 31287, 31288, 31289, 31290, 31700 ]) class Crs(object): """Initialize a CRS construct :param string crs: the Coordinate reference system. Examples: * EPSG: * http://www.opengis.net/def/crs/EPSG/0/ (URI Style 1) * http://www.opengis.net/gml/srs/epsg.xml# (URI Style 2) * urn:EPSG:geographicCRS: * urn:ogc:def:crs:EPSG::4326 * urn:ogc:def:crs:EPSG:4326 :param string axisorder: Force / override axisorder ('xy' or 'yx') """ def __init__(self, crs, axisorder=None): self.id = crs self.naming_authority = None self.category = None self.type = None self.authority = None self.version = None self.code = -1 self.axisorder = 'xy' self.encoding = "code" if axisorder is not None: # forced axisorder self.axisorder = axisorder values = self.id.split(':') if self.id.find('/def/crs/') != -1: # URI Style 1 self.encoding = "uri" vals = self.id.split('/') self.authority = vals[5].upper() self.code = int(vals[-1]) elif self.id.find('#') != -1: # URI Style 2 self.encoding = "uri" vals = self.id.split('#') self.authority = vals[0].split('/')[-1].split('.')[0].upper() self.code = int(vals[-1]) elif len(values) > 2: # it's a URN style self.naming_authority = values[1] self.encoding = "urn" if len(values) == 3: # bogus pass elif len(values) == 4: self.type = values[2] else: self.category = values[2] self.type = values[3] self.authority = values[4].upper() if len(values) == 7: # version, even if empty, is included if values[5]: self.version = values[5] # code is always the last value try: self.code = int(values[-1]) except: self.code = values[-1] elif len(values) == 2: # it's an authority:code code self.encoding = "code" self.authority = values[0].upper() try: self.code = int(values[1]) except: self.code = values[1] # if the user has not forced the axisorder, # scan the list of codes that have an axis ordering of # yx and set axis order accordingly if axisorder is None: if self.code in axisorder_yx: self.axisorder = 'yx' def getcode(self): """Create for example "EPSG:4326" string and return back :returns: String code formated in "authority:code" """ if self.authority is not None and self.code is not None: return '%s:%s' % (self.authority, self.code) return None def getcodeurn(self): """Create for example "urn:ogc:def:crs:EPSG::4326" string and return back :returns: String code formated in "urn:ogc:def:authority:code" """ return 'urn:%s:def:crs:%s:%s:%s' % ( (self.naming_authority and self.naming_authority or "ogc"), (self.authority or ""), (self.version or ""), (self.code or "")) def getcodeuri1(self): """Create for example "http://www.opengis.net/def/crs/EPSG/0/4326" string and return back :returns: String code formated in "http://www.opengis.net/def/crs/EPSG/0/code" """ return 'http://www.opengis.net/def/crs/EPSG/0/%s' % self.code def getcodeuri2(self): """Create for example "http://www.opengis.net/gml/srs/epsg.xml#4326" string and return back :returns: String code formated in "http://www.opengis.net/gml/srs/epsg.xml#code" """ return 'http://www.opengis.net/gml/srs/epsg.xml#%s' % self.code def __eq__(self, other): if isinstance(other, self.__class__): return self.getcodeurn() == other.getcodeurn() else: return False def __hash__(self): return hash(repr(self)) def __repr__(self): return self.getcodeurn() OWSLib-0.16.0/owslib/csw.py000066400000000000000000001101321321706412000153340ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ CSW request and response processor """ from __future__ import (absolute_import, division, print_function) import inspect import warnings import six try: from StringIO import StringIO as BytesIO # Python 2 except ImportError: from io import BytesIO # Python 3 import random try: # Python 3 from urllib.parse import urlencode except ImportError: # Python 2 from urllib import urlencode from owslib.util import OrderedDict from owslib.etree import etree from owslib import fes from owslib import util from owslib import ows from owslib.iso import MD_Metadata, FC_FeatureCatalogue from owslib.fgdc import Metadata from owslib.dif import DIF from owslib.gm03 import GM03 from owslib.namespaces import Namespaces from owslib.util import cleanup_namespaces, bind_url, add_namespaces, openURL # default variables outputformat = 'application/xml' def get_namespaces(): n = Namespaces() return n.get_namespaces() namespaces = get_namespaces() schema = 'http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd' schema_location = '%s %s' % (namespaces['csw'], schema) class CatalogueServiceWeb(object): """ csw request class """ def __init__(self, url, lang='en-US', version='2.0.2', timeout=10, skip_caps=False, username=None, password=None): """ Construct and process a GetCapabilities request Parameters ---------- - url: the URL of the CSW - lang: the language (default is 'en-US') - version: version (default is '2.0.2') - timeout: timeout in seconds - skip_caps: whether to skip GetCapabilities processing on init (default is False) - username: username for HTTP basic authentication - password: password for HTTP basic authentication """ self.url = util.clean_ows_url(url) self.lang = lang self.version = version self.timeout = timeout self.username = username self.password = password self.service = 'CSW' self.exceptionreport = None self.owscommon = ows.OwsCommon('1.0.0') if not skip_caps: # process GetCapabilities # construct request data = {'service': self.service, 'version': self.version, 'request': 'GetCapabilities'} self.request = urlencode(data) self._invoke() if self.exceptionreport is None: self.updateSequence = self._exml.getroot().attrib.get('updateSequence') # ServiceIdentification val = self._exml.find(util.nspath_eval('ows:ServiceIdentification', namespaces)) if val is not None: self.identification = ows.ServiceIdentification(val,self.owscommon.namespace) else: self.identification = None # ServiceProvider val = self._exml.find(util.nspath_eval('ows:ServiceProvider', namespaces)) if val is not None: self.provider = ows.ServiceProvider(val,self.owscommon.namespace) else: self.provider = None # ServiceOperations metadata self.operations = [] for elem in self._exml.findall(util.nspath_eval('ows:OperationsMetadata/ows:Operation', namespaces)): self.operations.append(ows.OperationsMetadata(elem, self.owscommon.namespace)) self.constraints = {} for elem in self._exml.findall(util.nspath_eval('ows:OperationsMetadata/ows:Constraint', namespaces)): self.constraints[elem.attrib['name']] = ows.Constraint(elem, self.owscommon.namespace) self.parameters = {} for elem in self._exml.findall(util.nspath_eval('ows:OperationsMetadata/ows:Parameter', namespaces)): self.parameters[elem.attrib['name']] = ows.Parameter(elem, self.owscommon.namespace) # FilterCapabilities val = self._exml.find(util.nspath_eval('ogc:Filter_Capabilities', namespaces)) self.filters = fes.FilterCapabilities(val) def describerecord(self, typename='csw:Record', format=outputformat): """ Construct and process DescribeRecord request Parameters ---------- - typename: the typename to describe (default is 'csw:Record') - format: the outputFormat (default is 'application/xml') """ # construct request node0 = self._setrootelement('csw:DescribeRecord') node0.set('service', self.service) node0.set('version', self.version) node0.set('outputFormat', format) node0.set('schemaLanguage', namespaces['xs2']) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) etree.SubElement(node0, util.nspath_eval('csw:TypeName', namespaces)).text = typename self.request = node0 self._invoke() # parse result # TODO: process the XML Schema (you're on your own for now with self.response) def getdomain(self, dname, dtype='parameter'): """ Construct and process a GetDomain request Parameters ---------- - dname: the value of the Parameter or Property to query - dtype: whether to query a parameter (parameter) or property (property) """ # construct request dtypename = 'ParameterName' node0 = self._setrootelement('csw:GetDomain') node0.set('service', self.service) node0.set('version', self.version) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) if dtype == 'property': dtypename = 'PropertyName' etree.SubElement(node0, util.nspath_eval('csw:%s' % dtypename, namespaces)).text = dname self.request = node0 self._invoke() if self.exceptionreport is None: self.results = {} val = self._exml.find(util.nspath_eval('csw:DomainValues', namespaces)).attrib.get('type') self.results['type'] = util.testXMLValue(val, True) val = self._exml.find(util.nspath_eval('csw:DomainValues/csw:%s' % dtypename, namespaces)) self.results[dtype] = util.testXMLValue(val) # get the list of values associated with the Domain self.results['values'] = [] for f in self._exml.findall(util.nspath_eval('csw:DomainValues/csw:ListOfValues/csw:Value', namespaces)): self.results['values'].append(util.testXMLValue(f)) def getrecords(self, qtype=None, keywords=[], typenames='csw:Record', propertyname='csw:AnyText', bbox=None, esn='summary', sortby=None, outputschema=namespaces['csw'], format=outputformat, startposition=0, maxrecords=10, cql=None, xml=None, resulttype='results'): """ Construct and process a GetRecords request Parameters ---------- - qtype: type of resource to query (i.e. service, dataset) - keywords: list of keywords - typenames: the typeNames to query against (default is csw:Record) - propertyname: the PropertyName to Filter against - bbox: the bounding box of the spatial query in the form [minx,miny,maxx,maxy] - esn: the ElementSetName 'full', 'brief' or 'summary' (default is 'summary') - sortby: property to sort results on - outputschema: the outputSchema (default is 'http://www.opengis.net/cat/csw/2.0.2') - format: the outputFormat (default is 'application/xml') - startposition: requests a slice of the result set, starting at this position (default is 0) - maxrecords: the maximum number of records to return. No records are returned if 0 (default is 10) - cql: common query language text. Note this overrides bbox, qtype, keywords - xml: raw XML request. Note this overrides all other options - resulttype: the resultType 'hits', 'results', 'validate' (default is 'results') """ warnings.warn("""Please use the updated 'getrecords2' method instead of 'getrecords'. The 'getrecords' method will be upgraded to use the 'getrecords2' parameters in a future version of OWSLib.""") if xml is not None: self.request = etree.fromstring(xml) val = self.request.find(util.nspath_eval('csw:Query/csw:ElementSetName', namespaces)) if val is not None: esn = util.testXMLValue(val) else: # construct request node0 = self._setrootelement('csw:GetRecords') if etree.__name__ != 'lxml.etree': # apply nsmap manually node0.set('xmlns:ows', namespaces['ows']) node0.set('xmlns:gmd', namespaces['gmd']) node0.set('xmlns:dif', namespaces['dif']) node0.set('xmlns:fgdc', namespaces['fgdc']) node0.set('outputSchema', outputschema) node0.set('outputFormat', format) node0.set('version', self.version) node0.set('resultType', resulttype) node0.set('service', self.service) if startposition > 0: node0.set('startPosition', str(startposition)) node0.set('maxRecords', str(maxrecords)) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) node1 = etree.SubElement(node0, util.nspath_eval('csw:Query', namespaces)) node1.set('typeNames', typenames) etree.SubElement(node1, util.nspath_eval('csw:ElementSetName', namespaces)).text = esn self._setconstraint(node1, qtype, propertyname, keywords, bbox, cql, None) if sortby is not None: fes.setsortby(node1, sortby) self.request = node0 self._invoke() if self.exceptionreport is None: self.results = {} # process search results attributes val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('numberOfRecordsMatched') self.results['matches'] = int(util.testXMLValue(val, True)) val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('numberOfRecordsReturned') self.results['returned'] = int(util.testXMLValue(val, True)) val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('nextRecord') self.results['nextrecord'] = int(util.testXMLValue(val, True)) # process list of matching records self.records = OrderedDict() self._parserecords(outputschema, esn) def getrecordbyid(self, id=[], esn='full', outputschema=namespaces['csw'], format=outputformat): """ Construct and process a GetRecordById request Parameters ---------- - id: the list of Ids - esn: the ElementSetName 'full', 'brief' or 'summary' (default is 'full') - outputschema: the outputSchema (default is 'http://www.opengis.net/cat/csw/2.0.2') - format: the outputFormat (default is 'application/xml') """ # construct request data = { 'service': self.service, 'version': self.version, 'request': 'GetRecordById', 'outputFormat': format, 'outputSchema': outputschema, 'elementsetname': esn, 'id': ','.join(id), } self.request = urlencode(data) self._invoke() if self.exceptionreport is None: self.results = {} self.records = OrderedDict() self._parserecords(outputschema, esn) def getrecords2(self, constraints=[], sortby=None, typenames='csw:Record', esn='summary', outputschema=namespaces['csw'], format=outputformat, startposition=0, maxrecords=10, cql=None, xml=None, resulttype='results'): """ Construct and process a GetRecords request Parameters ---------- - constraints: the list of constraints (OgcExpression from owslib.fes module) - sortby: an OGC SortBy object (SortBy from owslib.fes module) - typenames: the typeNames to query against (default is csw:Record) - esn: the ElementSetName 'full', 'brief' or 'summary' (default is 'summary') - outputschema: the outputSchema (default is 'http://www.opengis.net/cat/csw/2.0.2') - format: the outputFormat (default is 'application/xml') - startposition: requests a slice of the result set, starting at this position (default is 0) - maxrecords: the maximum number of records to return. No records are returned if 0 (default is 10) - cql: common query language text. Note this overrides bbox, qtype, keywords - xml: raw XML request. Note this overrides all other options - resulttype: the resultType 'hits', 'results', 'validate' (default is 'results') """ if xml is not None: self.request = etree.fromstring(xml) val = self.request.find(util.nspath_eval('csw:Query/csw:ElementSetName', namespaces)) if val is not None: esn = util.testXMLValue(val) val = self.request.attrib.get('outputSchema') if val is not None: outputschema = util.testXMLValue(val, True) else: # construct request node0 = self._setrootelement('csw:GetRecords') if etree.__name__ != 'lxml.etree': # apply nsmap manually node0.set('xmlns:ows', namespaces['ows']) node0.set('xmlns:gmd', namespaces['gmd']) node0.set('xmlns:dif', namespaces['dif']) node0.set('xmlns:fgdc', namespaces['fgdc']) node0.set('outputSchema', outputschema) node0.set('outputFormat', format) node0.set('version', self.version) node0.set('service', self.service) node0.set('resultType', resulttype) if startposition > 0: node0.set('startPosition', str(startposition)) node0.set('maxRecords', str(maxrecords)) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) node1 = etree.SubElement(node0, util.nspath_eval('csw:Query', namespaces)) node1.set('typeNames', typenames) etree.SubElement(node1, util.nspath_eval('csw:ElementSetName', namespaces)).text = esn if any([len(constraints) > 0, cql is not None]): node2 = etree.SubElement(node1, util.nspath_eval('csw:Constraint', namespaces)) node2.set('version', '1.1.0') flt = fes.FilterRequest() if len(constraints) > 0: node2.append(flt.setConstraintList(constraints)) # Now add a CQL filter if passed in elif cql is not None: etree.SubElement(node2, util.nspath_eval('csw:CqlText', namespaces)).text = cql if sortby is not None and isinstance(sortby, fes.SortBy): node1.append(sortby.toXML()) self.request = node0 self._invoke() if self.exceptionreport is None: self.results = {} # process search results attributes val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('numberOfRecordsMatched') self.results['matches'] = int(util.testXMLValue(val, True)) val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('numberOfRecordsReturned') self.results['returned'] = int(util.testXMLValue(val, True)) val = self._exml.find(util.nspath_eval('csw:SearchResults', namespaces)).attrib.get('nextRecord') if val is not None: self.results['nextrecord'] = int(util.testXMLValue(val, True)) else: warnings.warn("""CSW Server did not supply a nextRecord value (it is optional), so the client should page through the results in another way.""") # For more info, see: # https://github.com/geopython/OWSLib/issues/100 self.results['nextrecord'] = None # process list of matching records self.records = OrderedDict() self._parserecords(outputschema, esn) def transaction(self, ttype=None, typename='csw:Record', record=None, propertyname=None, propertyvalue=None, bbox=None, keywords=[], cql=None, identifier=None): """ Construct and process a Transaction request Parameters ---------- - ttype: the type of transaction 'insert, 'update', 'delete' - typename: the typename to describe (default is 'csw:Record') - record: the XML record to insert - propertyname: the RecordProperty/PropertyName to Filter against - propertyvalue: the RecordProperty Value to Filter against (for updates) - bbox: the bounding box of the spatial query in the form [minx,miny,maxx,maxy] - keywords: list of keywords - cql: common query language text. Note this overrides bbox, qtype, keywords - identifier: record identifier. Note this overrides bbox, qtype, keywords, cql """ # construct request node0 = self._setrootelement('csw:Transaction') node0.set('version', self.version) node0.set('service', self.service) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) validtransactions = ['insert', 'update', 'delete'] if ttype not in validtransactions: # invalid transaction raise RuntimeError('Invalid transaction \'%s\'.' % ttype) node1 = etree.SubElement(node0, util.nspath_eval('csw:%s' % ttype.capitalize(), namespaces)) if ttype != 'update': node1.set('typeName', typename) if ttype == 'insert': if record is None: raise RuntimeError('Nothing to insert.') node1.append(etree.fromstring(record)) if ttype == 'update': if record is not None: node1.append(etree.fromstring(record)) else: if propertyname is not None and propertyvalue is not None: node2 = etree.SubElement(node1, util.nspath_eval('csw:RecordProperty', namespaces)) etree.SubElement(node2, util.nspath_eval('csw:Name', namespaces)).text = propertyname etree.SubElement(node2, util.nspath_eval('csw:Value', namespaces)).text = propertyvalue self._setconstraint(node1, None, propertyname, keywords, bbox, cql, identifier) if ttype == 'delete': self._setconstraint(node1, None, propertyname, keywords, bbox, cql, identifier) self.request = node0 self._invoke() self.results = {} if self.exceptionreport is None: self._parsetransactionsummary() self._parseinsertresult() def harvest(self, source, resourcetype, resourceformat=None, harvestinterval=None, responsehandler=None): """ Construct and process a Harvest request Parameters ---------- - source: a URI to harvest - resourcetype: namespace identifying the type of resource - resourceformat: MIME type of the resource - harvestinterval: frequency of harvesting, in ISO8601 - responsehandler: endpoint that CSW should responsd to with response """ # construct request node0 = self._setrootelement('csw:Harvest') node0.set('version', self.version) node0.set('service', self.service) node0.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) etree.SubElement(node0, util.nspath_eval('csw:Source', namespaces)).text = source etree.SubElement(node0, util.nspath_eval('csw:ResourceType', namespaces)).text = resourcetype if resourceformat is not None: etree.SubElement(node0, util.nspath_eval('csw:ResourceFormat', namespaces)).text = resourceformat if harvestinterval is not None: etree.SubElement(node0, util.nspath_eval('csw:HarvestInterval', namespaces)).text = harvestinterval if responsehandler is not None: etree.SubElement(node0, util.nspath_eval('csw:ResponseHandler', namespaces)).text = responsehandler self.request = node0 self._invoke() self.results = {} if self.exceptionreport is None: val = self._exml.find(util.nspath_eval('csw:Acknowledgement', namespaces)) if util.testXMLValue(val) is not None: ts = val.attrib.get('timeStamp') self.timestamp = util.testXMLValue(ts, True) id = val.find(util.nspath_eval('csw:RequestId', namespaces)) self.id = util.testXMLValue(id) else: self._parsetransactionsummary() self._parseinsertresult() def get_operation_by_name(self, name): """Return a named operation""" for item in self.operations: if item.name.lower() == name.lower(): return item raise KeyError("No operation named %s" % name) def getService_urls(self, service_string=None): """ Return easily identifiable URLs for all service types Parameters ---------- - service_string: a URI to lookup """ urls=[] for key,rec in six.iteritems(self.records): #create a generator object, and iterate through it until the match is found #if not found, gets the default value (here "none") url = next((d['url'] for d in rec.references if d['scheme'] == service_string), None) if url is not None: urls.append(url) return urls def _parseinsertresult(self): self.results['insertresults'] = [] for i in self._exml.findall('.//'+util.nspath_eval('csw:InsertResult', namespaces)): for j in i.findall(util.nspath_eval('csw:BriefRecord/dc:identifier', namespaces)): self.results['insertresults'].append(util.testXMLValue(j)) def _parserecords(self, outputschema, esn): if outputschema == namespaces['gmd']: # iso 19139 for i in self._exml.findall('.//'+util.nspath_eval('gmd:MD_Metadata', namespaces)) or self._exml.findall('.//'+util.nspath_eval('gmi:MI_Metadata', namespaces)): val = i.find(util.nspath_eval('gmd:fileIdentifier/gco:CharacterString', namespaces)) identifier = self._setidentifierkey(util.testXMLValue(val)) self.records[identifier] = MD_Metadata(i) for i in self._exml.findall('.//'+util.nspath_eval('gfc:FC_FeatureCatalogue', namespaces)): identifier = self._setidentifierkey(util.testXMLValue(i.attrib['uuid'], attrib=True)) self.records[identifier] = FC_FeatureCatalogue(i) elif outputschema == namespaces['fgdc']: # fgdc csdgm for i in self._exml.findall('.//metadata'): val = i.find('idinfo/datasetid') identifier = self._setidentifierkey(util.testXMLValue(val)) self.records[identifier] = Metadata(i) elif outputschema == namespaces['dif']: # nasa dif for i in self._exml.findall('.//'+util.nspath_eval('dif:DIF', namespaces)): val = i.find(util.nspath_eval('dif:Entry_ID', namespaces)) identifier = self._setidentifierkey(util.testXMLValue(val)) self.records[identifier] = DIF(i) elif outputschema == namespaces['gm03']: # GM03 for i in self._exml.findall('.//'+util.nspath_eval('gm03:TRANSFER', namespaces)): val = i.find(util.nspath_eval('gm03:fileIdentifier', namespaces)) identifier = self._setidentifierkey(util.testXMLValue(val)) self.records[identifier] = GM03(i) else: # process default for i in self._exml.findall('.//'+util.nspath_eval('csw:%s' % self._setesnel(esn), namespaces)): val = i.find(util.nspath_eval('dc:identifier', namespaces)) identifier = self._setidentifierkey(util.testXMLValue(val)) self.records[identifier] = CswRecord(i) def _parsetransactionsummary(self): val = self._exml.find(util.nspath_eval('csw:TransactionResponse/csw:TransactionSummary', namespaces)) if val is not None: rid = val.attrib.get('requestId') self.results['requestid'] = util.testXMLValue(rid, True) ts = val.find(util.nspath_eval('csw:totalInserted', namespaces)) self.results['inserted'] = int(util.testXMLValue(ts)) ts = val.find(util.nspath_eval('csw:totalUpdated', namespaces)) self.results['updated'] = int(util.testXMLValue(ts)) ts = val.find(util.nspath_eval('csw:totalDeleted', namespaces)) self.results['deleted'] = int(util.testXMLValue(ts)) def _setesnel(self, esn): """ Set the element name to parse depending on the ElementSetName requested """ el = 'Record' if esn == 'brief': el = 'BriefRecord' if esn == 'summary': el = 'SummaryRecord' return el def _setidentifierkey(self, el): if el is None: return 'owslib_random_%i' % random.randint(1,65536) else: return el def _setrootelement(self, el): if etree.__name__ == 'lxml.etree': # apply nsmap return etree.Element(util.nspath_eval(el, namespaces), nsmap=namespaces) else: return etree.Element(util.nspath_eval(el, namespaces)) def _setconstraint(self, parent, qtype=None, propertyname='csw:AnyText', keywords=[], bbox=None, cql=None, identifier=None): if keywords or bbox is not None or qtype is not None or cql is not None or identifier is not None: node0 = etree.SubElement(parent, util.nspath_eval('csw:Constraint', namespaces)) node0.set('version', '1.1.0') if identifier is not None: # set identifier filter, overrides all other parameters flt = fes.FilterRequest() node0.append(flt.set(identifier=identifier)) elif cql is not None: # send raw CQL query # CQL passed, overrides all other parameters node1 = etree.SubElement(node0, util.nspath_eval('csw:CqlText', namespaces)) node1.text = cql else: # construct a Filter request flt = fes.FilterRequest() node0.append(flt.set(qtype=qtype, keywords=keywords, propertyname=propertyname,bbox=bbox)) def _invoke(self): # do HTTP request request_url = self.url # Get correct URL based on Operation list. # If skip_caps=True, then self.operations has not been set, so use # default URL. if hasattr(self, 'operations'): caller = inspect.stack()[1][3] if caller == 'getrecords2': caller = 'getrecords' try: op = self.get_operation_by_name(caller) if isinstance(self.request, six.string_types): # GET KVP get_verbs = [x for x in op.methods if x.get('type').lower() == 'get'] request_url = get_verbs[0].get('url') else: post_verbs = [x for x in op.methods if x.get('type').lower() == 'post'] if len(post_verbs) > 1: # Filter by constraints. We must match a PostEncoding of "XML" for pv in post_verbs: for const in pv.get('constraints'): if const.name.lower() == 'postencoding': values = [v.lower() for v in const.values] if 'xml' in values: request_url = pv.get('url') break else: # Well, just use the first one. request_url = post_verbs[0].get('url') elif len(post_verbs) == 1: request_url = post_verbs[0].get('url') except: # no such luck, just go with request_url pass if isinstance(self.request, six.string_types): # GET KVP self.request = '%s%s' % (bind_url(request_url), self.request) self.response = openURL(self.request, None, 'Get', username=self.username, password=self.password, timeout=self.timeout).read() else: self.request = cleanup_namespaces(self.request) # Add any namespaces used in the "typeNames" attribute of the # csw:Query element to the query's xml namespaces. for query in self.request.findall(util.nspath_eval('csw:Query', namespaces)): ns = query.get("typeNames", None) if ns is not None: # Pull out "gmd" from something like "gmd:MD_Metadata" from the list # of typenames ns_keys = [x.split(':')[0] for x in ns.split(' ')] self.request = add_namespaces(self.request, ns_keys) self.request = add_namespaces(self.request, 'ows') self.request = util.element_to_string(self.request, encoding='utf-8') self.response = util.http_post(request_url, self.request, self.lang, self.timeout, self.username, self.password) # parse result see if it's XML self._exml = etree.parse(BytesIO(self.response)) # it's XML. Attempt to decipher whether the XML response is CSW-ish """ valid_xpaths = [ util.nspath_eval('ows:ExceptionReport', namespaces), util.nspath_eval('csw:Capabilities', namespaces), util.nspath_eval('csw:DescribeRecordResponse', namespaces), util.nspath_eval('csw:GetDomainResponse', namespaces), util.nspath_eval('csw:GetRecordsResponse', namespaces), util.nspath_eval('csw:GetRecordByIdResponse', namespaces), util.nspath_eval('csw:HarvestResponse', namespaces), util.nspath_eval('csw:TransactionResponse', namespaces) ] if self._exml.getroot().tag not in valid_xpaths: raise RuntimeError('Document is XML, but not CSW-ish') # check if it's an OGC Exception val = self._exml.find(util.nspath_eval('ows:Exception', namespaces)) if val is not None: raise ows.ExceptionReport(self._exml, self.owscommon.namespace) else: self.exceptionreport = None class CswRecord(object): """ Process csw:Record, csw:BriefRecord, csw:SummaryRecord """ def __init__(self, record): if hasattr(record, 'getroot'): # standalone document self.xml = etree.tostring(record.getroot()) else: # part of a larger document self.xml = etree.tostring(record) # check to see if Dublin Core record comes from # rdf:RDF/rdf:Description container # (child content model is identical) self.rdf = False rdf = record.find(util.nspath_eval('rdf:Description', namespaces)) if rdf is not None: self.rdf = True record = rdf # some CSWs return records with multiple identifiers based on # different schemes. Use the first dc:identifier value to set # self.identifier, and set self.identifiers as a list of dicts val = record.find(util.nspath_eval('dc:identifier', namespaces)) self.identifier = util.testXMLValue(val) self.identifiers = [] for i in record.findall(util.nspath_eval('dc:identifier', namespaces)): d = {} d['scheme'] = i.attrib.get('scheme') d['identifier'] = i.text self.identifiers.append(d) val = record.find(util.nspath_eval('dc:type', namespaces)) self.type = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:title', namespaces)) self.title = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:alternative', namespaces)) self.alternative = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:isPartOf', namespaces)) self.ispartof = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:abstract', namespaces)) self.abstract = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:date', namespaces)) self.date = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:created', namespaces)) self.created = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:issued', namespaces)) self.issued = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:relation', namespaces)) self.relation = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:temporal', namespaces)) self.temporal = util.testXMLValue(val) self.uris = [] # list of dicts for i in record.findall(util.nspath_eval('dc:URI', namespaces)): uri = {} uri['protocol'] = util.testXMLValue(i.attrib.get('protocol'), True) uri['name'] = util.testXMLValue(i.attrib.get('name'), True) uri['description'] = util.testXMLValue(i.attrib.get('description'), True) uri['url'] = util.testXMLValue(i) self.uris.append(uri) self.references = [] # list of dicts for i in record.findall(util.nspath_eval('dct:references', namespaces)): ref = {} ref['scheme'] = util.testXMLValue(i.attrib.get('scheme'), True) ref['url'] = util.testXMLValue(i) self.references.append(ref) val = record.find(util.nspath_eval('dct:modified', namespaces)) self.modified = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:creator', namespaces)) self.creator = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:publisher', namespaces)) self.publisher = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:coverage', namespaces)) self.coverage = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:contributor', namespaces)) self.contributor = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:language', namespaces)) self.language = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:source', namespaces)) self.source = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:rightsHolder', namespaces)) self.rightsholder = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:accessRights', namespaces)) self.accessrights = util.testXMLValue(val) val = record.find(util.nspath_eval('dct:license', namespaces)) self.license = util.testXMLValue(val) val = record.find(util.nspath_eval('dc:format', namespaces)) self.format = util.testXMLValue(val) self.subjects = [] for i in record.findall(util.nspath_eval('dc:subject', namespaces)): self.subjects.append(util.testXMLValue(i)) self.rights = [] for i in record.findall(util.nspath_eval('dc:rights', namespaces)): self.rights.append(util.testXMLValue(i)) val = record.find(util.nspath_eval('dct:spatial', namespaces)) self.spatial = util.testXMLValue(val) val = record.find(util.nspath_eval('ows:BoundingBox', namespaces)) if val is not None: self.bbox = ows.BoundingBox(val, namespaces['ows']) else: self.bbox = None val = record.find(util.nspath_eval('ows:WGS84BoundingBox', namespaces)) if val is not None: self.bbox_wgs84 = ows.WGS84BoundingBox(val, namespaces['ows']) else: self.bbox_wgs84 = None OWSLib-0.16.0/owslib/dif.py000066400000000000000000000462111321706412000153100ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ DIF metadata parser """ from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib import util from owslib.namespaces import Namespaces # default variables def get_namespaces(): n = Namespaces() ns = n.get_namespaces("dif") ns[None] = n.get_namespace("dif") return ns namespaces = get_namespaces() class DIF(object): """ Process DIF """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Entry_ID', namespaces)) self.identifier = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Entry_Title', namespaces)) self.title = util.testXMLValue(val) self.citation = [] for el in md.findall(util.nspath_eval('dif:Data_Set_Citation', namespaces)): self.citation.append(Citation(el)) self.personnel = [] for el in md.findall(util.nspath_eval('dif:Personnel', namespaces)): self.personnel.append(util.testXMLValue(el)) self.discipline = [] for el in md.findall(util.nspath_eval('dif:Discipline', namespaces)): self.discipline.append(util.testXMLValue(el)) self.parameters= [] for el in md.findall(util.nspath_eval('dif:Parameters', namespaces)): self.parameters.append(util.testXMLValue(el)) self.iso_topic_category = [] for el in md.findall(util.nspath_eval('dif:ISO_Topic_Category', namespaces)): self.iso_topic_category.append(util.testXMLValue(el)) self.keyword = [] for el in md.findall(util.nspath_eval('dif:Keyword', namespaces)): self.keyword.append(util.testXMLValue(el)) self.sensor_name = [] for el in md.findall(util.nspath_eval('dif:Sensor_Name', namespaces)): self.sensor_name.append(Name(el)) self.source_name = [] for el in md.findall(util.nspath_eval('dif:Source_Name', namespaces)): self.source_name.append(Name(el)) self.temporal_coverage = [] for el in md.findall(util.nspath_eval('dif:Temporal_Coverage', namespaces)): self.temporal_coverage.append(Temporal_Coverage(el)) self.paleo_temporal_coverage = [] for el in md.findall(util.nspath_eval('dif:Paleo_Temporal_Coverage', namespaces)): self.paleo_temporal_coverage.append(Paleo_Temporal_Coverage(el)) self.data_set_progress = [] for el in md.findall(util.nspath_eval('dif:Data_Set_Progress', namespaces)): self.data_set_progress.append(util.testXMLValue(el)) self.spatial_coverage = [] for el in md.findall(util.nspath_eval('dif:Spatial_Coverage', namespaces)): self.spatial_coverage.append(Spatial_Coverage(el)) self.location = [] for el in md.findall(util.nspath_eval('dif:location', namespaces)): self.location.append(util.testXMLValue(el)) self.data_resolution = [] for el in md.findall(util.nspath_eval('dif:Data_Resolution', namespaces)): self.data_resolution.append(Data_Resolution(el)) self.project = [] for el in md.findall(util.nspath_eval('dif:Project', namespaces)): self.project.append(Name(el)) val = md.find(util.nspath_eval('dif:Quality', namespaces)) self.quality = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Access_Constraints', namespaces)) self.access_constraints = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Use_Constraints', namespaces)) self.use_constraints = util.testXMLValue(val) self.language = [] for el in md.findall(util.nspath_eval('dif:Data_Set_Language', namespaces)): self.language.append(util.testXMLValue(el)) self.originating_center = [] for el in md.findall(util.nspath_eval('dif:Originating_Center', namespaces)): self.originating_center.append(util.testXMLValue(el)) self.data_center = [] for el in md.findall(util.nspath_eval('dif:Data_Center', namespaces)): self.data_center.append(Data_Center(el)) self.distribution = [] for el in md.findall(util.nspath_eval('dif:Distribution', namespaces)): self.distribution.append(Distribution(el)) self.multimedia_sample = [] for el in md.findall(util.nspath_eval('dif:Multimedia_Sample', namespaces)): self.multimedia_sample.append(Multimedia_Sample(el)) val = md.find(util.nspath_eval('dif:Reference', namespaces)) self.reference = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Summary', namespaces)) self.summary = util.testXMLValue(val) self.related_url = [] for el in md.findall(util.nspath_eval('dif:Related_URL', namespaces)): self.related_url.append(Related_URL(el)) self.parent_dif = [] for el in md.findall(util.nspath_eval('dif:Parent_DIF', namespaces)): self.parent_dif.append(util.testXMLValue(el)) self.idn_node = [] for el in md.findall(util.nspath_eval('dif:IDN_Node', namespaces)): self.idn_node.append(Name(el)) val = md.find(util.nspath_eval('dif:Originating_Metadata_Node', namespaces)) self.originating_metadata_node = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Metadata_Name', namespaces)) self.metadata_name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Metadata_Version', namespaces)) self.metadata_version = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:DIF_Creation_Date', namespaces)) self.dif_creation_date = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Last_DIF_Revision_Date', namespaces)) self.last_dif_revision_date = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Future_DIF_Review_Date', namespaces)) self.future_dif_review_date = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Private', namespaces)) self.private = util.testXMLValue(val) class Citation(object): """ Parse Data_Set_Citation """ def __init__(self, el): val = el.find(util.nspath_eval('dif:Dataset_Creator', namespaces)) self.creator = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Dataset_Title', namespaces)) self.title = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Dataset_Series_Name', namespaces)) self.series_name = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Dataset_Release_Date', namespaces)) self.release_date = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Dataset_Release_Place', namespaces)) self.release_place = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Dataset_Publisher', namespaces)) self.publisher = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Version', namespaces)) self.version = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Issue_Identification', namespaces)) self.issue_identification = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Data_Presentation_Form', namespaces)) self.presentation_form = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Other_Citation_Details', namespaces)) self.details = util.testXMLValue(val) val = el.find(util.nspath_eval('dif:Online_Resource', namespaces)) self.onlineresource = util.testXMLValue(val) class Personnel(object): """ Process Personnel """ def __init__(self, md): self.role = [] for el in md.findall(util.nspath_eval('dif:Role', namespaces)): self.role.append(util.testXMLValue(el)) val = md.find(util.nspath_eval('dif:First_Name', namespaces)) self.first_name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Middle_Name', namespaces)) self.middle_name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Last_Name', namespaces)) self.last_name = util.testXMLValue(val) self.email = [] for el in md.findall(util.nspath_eval('dif:Email', namespaces)): self.email.append(util.testXMLValue(el)) self.phone = [] for el in md.findall(util.nspath_eval('dif:Phone', namespaces)): self.phone.append(util.testXMLValue(el)) self.fax = [] for el in md.findall(util.nspath_eval('dif:Fax', namespaces)): self.fax.append(util.testXMLValue(el)) val = md.find(util.nspath_eval('dif:Contact_Address', namespaces)) self.contact_address = Contact_Address(val) class Contact_Address(object): """ Process Contact_Address """ def __init__(self, md): self.address = [] for el in md.findall(util.nspath_eval('dif:Address', namespaces)): self.address.append(util.testXMLValue(el)) val = md.find(util.nspath_eval('dif:City', namespaces)) self.city = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Province_or_State', namespaces)) self.province_or_state = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Postal_Code', namespaces)) self.postal_code = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Country', namespaces)) self.country = util.testXMLValue(val) class Discipline(object): """ Process Discipline """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Discipline_Name', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Subdiscipline', namespaces)) self.subdiscipline = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Detailed_Subdiscipline', namespaces)) self.detailed_subdiscipline = util.testXMLValue(val) class Parameters(object): """ Process Parameters """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Category', namespaces)) self.category = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Topic', namespaces)) self.topic = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Term', namespaces)) self.term = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Variable_Level_1', namespaces)) self.variable_l1 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Variable_Level_2', namespaces)) self.variable_l2 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Variable_Level_3', namespaces)) self.variable_l3 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Detailed_Variable', namespaces)) self.detailed_variable = util.testXMLValue(val) class Name(object): """ Process Sensor_Name, Source_Name, Project, IDN_Node """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Short_Name', namespaces)) self.short_name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Long_Name', namespaces)) self.long_name = util.testXMLValue(val) class Temporal_Coverage(object): """ Process Temporal_Coverage """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Start_Date', namespaces)) self.start_date = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:End_Date', namespaces)) self.end_date = util.testXMLValue(val) class Paleo_Temporal_Coverage(object): """ Process Paleo_Temporal_Coverage """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Paleo_Start_Date', namespaces)) self.paleo_start_date = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Paleo_End_Date', namespaces)) self.paleo_end_date = util.testXMLValue(val) self.chronostratigraphic_unit = [] for el in md.findall(util.nspath_eval('dif:Chronostratigraphic_Unit', namespaces)): self.chronostratigraphic_unit.append(Chronostratigraphic_Unit(el)) class Chronostratigraphic_Unit(object): """ Process Chronostratigraphic_Unit """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Eon', namespaces)) self.eon = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Era', namespaces)) self.era = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Period', namespaces)) self.period = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Epoch', namespaces)) self.epoch = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Stage', namespaces)) self.stage = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Detailed_Classification', namespaces)) self.detailed_classification = util.testXMLValue(val) class Spatial_Coverage(object): """ Process Spatial_Coverage """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Southernmost_Latitude', namespaces)) self.miny = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Northernmost_Latitude', namespaces)) self.maxy = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Westernmost_Latitude', namespaces)) self.minx = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Easternmost_Latitude', namespaces)) self.maxx = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Minimum_Altitude', namespaces)) self.minz = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Maximum_Altitude', namespaces)) self.maxz = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Minimum_Depth', namespaces)) self.mindepth = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Maximum_Depth', namespaces)) self.maxdepth = util.testXMLValue(val) class Location(object): """ Process Location """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Location_Category', namespaces)) self.category = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Location_Category', namespaces)) self.type = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Location_Subregion1', namespaces)) self.subregion1 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Location_Subregion2', namespaces)) self.subregion2 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Location_Subregion3', namespaces)) self.subregion3 = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Detailed_Location', namespaces)) self.detailed_location = util.testXMLValue(val) class Data_Resolution(object): """ Process Data_Resolution""" def __init__(self, md): val = md.find(util.nspath_eval('dif:Latitude_Resolution', namespaces)) self.y = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Longitude_Resolution', namespaces)) self.x = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Horizontal_Resolution_Range', namespaces)) self.horizontal_res_range = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Vertical_Resolution', namespaces)) self.vertical_res = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Vertical_Resolution_Range', namespaces)) self.vertical_res_range = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Temporal_Resolution', namespaces)) self.temporal_res = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Temporal_Resolution_Range', namespaces)) self.temporal_res_range = util.testXMLValue(val) class Data_Center(object): """ Process Data_Center """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Data_Center_Name', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Data_Center_URL', namespaces)) self.url = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Data_Set_ID', namespaces)) self.data_set_id = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Personnel', namespaces)) self.personnel = util.testXMLValue(val) class Distribution(object): """ Process Distribution """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Distribution_Media', namespaces)) self.media = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Distribution_Size', namespaces)) self.size = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Distribution_Format', namespaces)) self.format = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Fees', namespaces)) self.fees = util.testXMLValue(val) class Multimedia_Sample(object): """ Process Multimedia_Sample """ def __init__(self, md): val = md.find(util.nspath_eval('dif:File', namespaces)) self.file = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:URL', namespaces)) self.url = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Format', namespaces)) self.format = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Caption', namespaces)) self.caption = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Description', namespaces)) self.description = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Visualization_URL', namespaces)) self.vis_url = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Visualization_Type', namespaces)) self.vis_type = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Visualization_Subtype', namespaces)) self.vis_subtype = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Visualization_Duration', namespaces)) self.vis_duration = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Visualization_File_Size', namespaces)) self.file_size = util.testXMLValue(val) class Related_URL(object): """ Process Related_URL """ def __init__(self, md): self.content_type = [] for el in md.findall(util.nspath_eval('dif:URL_Content_Type', namespaces)): self.content_type.append(URL_Content_Type(el)) val = md.find(util.nspath_eval('dif:URL', namespaces)) self.url = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:Description', namespaces)) self.description = util.testXMLValue(val) class URL_Content_Type(object): """ Process URL_Content_Type """ def __init__(self, md): val = md.find(util.nspath_eval('dif:Type', namespaces)) self.type = util.testXMLValue(val) val = md.find(util.nspath_eval('dif:SubType', namespaces)) self.subtype = util.testXMLValue(val) OWSLib-0.16.0/owslib/etree.py000066400000000000000000000023411321706412000156460ustar00rootroot00000000000000# ============================================================================= # OWSLib. Copyright (C) 2005 Sean C. Gillies # # Contact email: sgillies@frii.com # ============================================================================= from __future__ import (absolute_import, division, print_function) import six from owslib.namespaces import Namespaces def patch_well_known_namespaces(etree_module): """Monkey patches the etree module to add some well-known namespaces.""" ns = Namespaces() try: register_namespace = etree_module.register_namespace except AttributeError: etree_module._namespace_map def register_namespace(prefix, uri): etree_module._namespace_map[uri] = prefix for k, v in six.iteritems(ns.get_namespaces()): register_namespace(k, v) # try to find lxml or elementtree try: from lxml import etree from lxml.etree import ParseError ElementType = etree._Element except ImportError: import xml.etree.ElementTree as etree ElementType = etree.Element try: from xml.etree.ElementTree import ParseError except ImportError: from xml.parsers.expat import ExpatError as ParseError patch_well_known_namespaces(etree) OWSLib-0.16.0/owslib/feature/000077500000000000000000000000001321706412000156235ustar00rootroot00000000000000OWSLib-0.16.0/owslib/feature/__init__.py000066400000000000000000000146751321706412000177510ustar00rootroot00000000000000# ============================================================================= # OWSLib. Copyright (C) 2012 Jachym Cepicky # # Contact email: jachym.cepicky@gmail.com # # ============================================================================= from __future__ import (absolute_import, division, print_function) from owslib.crs import Crs try: from urllib import urlencode except ImportError: from urllib.parse import urlencode import logging from owslib.util import log from owslib.feature.schema import get_schema class WebFeatureService_(object): """Base class for WebFeatureService implementations""" def getBBOXKVP (self,bbox,typename): """Formate bounding box for KVP request type (HTTP GET) @param bbox: (minx,miny,maxx,maxy[,srs]) @type bbox: List @param typename: feature name @type typename: String @returns: String properly formated according to version and coordinate reference system """ srs = None # srs of the bbox is specified in the bbox as fifth paramter if len(bbox) == 5: srs = self.getSRS(bbox[4],typename[0]) # take default srs else: srs = self.contents[typename[0]].crsOptions[0] # 1.1.0 and 2.0.0 have same encoding if self.version in ["1.1.0","2.0.0"]: # format bbox parameter if srs.encoding == "urn" : if srs.axisorder == "yx": return "%s,%s,%s,%s,%s" % \ (bbox[1],bbox[0],bbox[3],bbox[2],srs.getcodeurn()) else: return "%s,%s,%s,%s,%s" % \ (bbox[0],bbox[1],bbox[2],bbox[3],srs.getcodeurn()) else: return "%s,%s,%s,%s,%s" % \ (bbox[0],bbox[1],bbox[2],bbox[3],srs.getcode()) # 1.0.0 else: return "%s,%s,%s,%s,%s" % \ (bbox[0],bbox[1],bbox[2],bbox[3],srs.getcode()) def getSRS(self, srsname, typename): """Returns None or Crs object for given name @param typename: feature name @type typename: String """ if not isinstance(srsname, Crs): srs = Crs(srsname) else: srs = srsname try: index = self.contents[typename].crsOptions.index(srs) # Return the Crs string that was pulled directly from the # GetCaps document (the 'id' attribute in the Crs object). return self.contents[typename].crsOptions[index] except ValueError: options = ", ".join(map(lambda x: x.id, self.contents[typename].crsOptions)) log.warning("Requested srsName '%s' not available for requested typename '%s'. \ Options are: %s. " % (srs.getcode(), typename, options)) return None def getGETGetFeatureRequest(self, typename=None, filter=None, bbox=None, featureid=None, featureversion=None, propertyname=None, maxfeatures=None,storedQueryID=None, storedQueryParams=None, outputFormat=None, method='Get', startindex=None, sortby=None): """Formulate proper GetFeature request using KVP encoding ---------- typename : list List of typenames (string) filter : string XML-encoded OGC filter expression. bbox : tuple (left, bottom, right, top) in the feature type's coordinates == (minx, miny, maxx, maxy) featureid : list List of unique feature ids (string) featureversion : string Default is most recent feature version. propertyname : list List of feature property names. '*' matches all. maxfeatures : int Maximum number of features to be returned. method : string Qualified name of the HTTP DCP method to use. outputFormat: string (optional) Requested response format of the request. startindex: int (optional) Start position to return feature set (paging in combination with maxfeatures) sortby: list (optional) List of property names whose values should be used to order (upon presentation) the set of feature instances that satify the query. There are 3 different modes of use 1) typename and bbox (simple spatial query) 2) typename and filter (==query) (more expressive) 3) featureid (direct access to known features) """ storedQueryParams = storedQueryParams or {} base_url = next((m.get('url') for m in self.getOperationByName('GetFeature').methods if m.get('type').lower() == method.lower())) base_url = base_url if base_url.endswith("?") else base_url+"?" request = {'service': 'WFS', 'version': self.version, 'request': 'GetFeature'} # check featureid if featureid: request['featureid'] = ','.join(featureid) elif bbox: request['bbox'] = self.getBBOXKVP(bbox,typename) elif filter: request['query'] = str(filter) if typename: typename = [typename] if type(typename) == type("") else typename if int(self.version.split('.')[0]) >= 2: request['typenames'] = ','.join(typename) else: request['typename'] = ','.join(typename) if propertyname: request['propertyname'] = ','.join(propertyname) if sortby: request['sortby'] = ','.join(sortby) if featureversion: request['featureversion'] = str(featureversion) if maxfeatures: if int(self.version.split('.')[0]) >= 2: request['count'] = str(maxfeatures) else: request['maxfeatures'] = str(maxfeatures) if startindex: request['startindex'] = str(startindex) if storedQueryID: request['storedQuery_id']=str(storedQueryID) for param in storedQueryParams: request[param]=storedQueryParams[param] if outputFormat is not None: request["outputFormat"] = outputFormat data = urlencode(request, doseq=True) return base_url+data def get_schema(self, typename): """ Get layer schema compatible with :class:`fiona` schema object """ return get_schema(self.url, typename, self.version) OWSLib-0.16.0/owslib/feature/common.py000066400000000000000000000040061321706412000174650ustar00rootroot00000000000000import cgi from owslib.etree import etree from owslib.util import openURL try: from urllib import urlencode except ImportError: from urllib.parse import urlencode class WFSCapabilitiesReader(object): """Read and parse capabilities document into a lxml.etree infoset """ def __init__(self, version='1.0', username=None, password=None): """Initialize""" self.version = version self.username = username self.password = password self._infoset = None def capabilities_url(self, service_url): """Return a capabilities url """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'WFS')) if 'request' not in params: qs.append(('request', 'GetCapabilities')) if 'version' not in params: qs.append(('version', self.version)) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, url, timeout=30): """Get and parse a WFS capabilities document, returning an instance of WFSCapabilitiesInfoset Parameters ---------- url : string The URL to the WFS capabilities document. timeout : number A timeout value (in seconds) for the request. """ request = self.capabilities_url(url) u = openURL(request, timeout=timeout, username=self.username, password=self.password) return etree.fromstring(u.read()) def readString(self, st): """Parse a WFS capabilities document, returning an instance of WFSCapabilitiesInfoset string should be an XML capabilities document """ if not isinstance(st, str) and not isinstance(st, bytes): raise ValueError("String must be of type string or bytes, not %s" % type(st)) return etree.fromstring(st) OWSLib-0.16.0/owslib/feature/schema.py000066400000000000000000000112111321706412000174310ustar00rootroot00000000000000# ============================================================================= # OWSLib. Copyright (C) 2015 Jachym Cepicky # # Contact email: jachym.cepicky@gmail.com # # ============================================================================= """ Set of functions, which are suitable for DescribeFeatureType parsing and generating layer schema description compatible with `fiona` """ import cgi, sys from owslib.util import openURL try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.etree import etree from owslib.namespaces import Namespaces from owslib.util import which_etree, findall MYNS = Namespaces() XS_NAMESPACE = MYNS.get_namespace('xs') GML_NAMESPACES = (MYNS.get_namespace('gml'), MYNS.get_namespace('gml311'), MYNS.get_namespace('gml32')) def get_schema(url, typename, version='1.0.0', timeout=30, username=None, password=None): """Parses DescribeFeatureType response and creates schema compatible with :class:`fiona` :param str url: url of the service :param str version: version of the service :param str typename: name of the layer :param int timeout: request timeout """ url = _get_describefeaturetype_url(url, version, typename) res = openURL(url, timeout=timeout, username=username, password=password) root = etree.fromstring(res.read()) if ':' in typename: typename = typename.split(':')[1] type_element = findall(root, '{%s}element' % XS_NAMESPACE, attribute_name='name', attribute_value=typename)[0] complex_type = type_element.attrib['type'].split(":")[1] elements = _get_elements(complex_type, root) nsmap = None if hasattr(root, 'nsmap'): nsmap = root.nsmap return _construct_schema(elements, nsmap) def _get_elements(complex_type, root): """Get attribute elements """ found_elements = [] element = findall(root, '{%s}complexType' % XS_NAMESPACE, attribute_name='name', attribute_value=complex_type)[0] found_elements = findall(element, '{%s}element' % XS_NAMESPACE) return found_elements def _construct_schema(elements, nsmap): """Consruct fiona schema based on given elements :param list Element: list of elements :param dict nsmap: namespace map :return dict: schema """ schema = { 'properties': {}, 'geometry': None } schema_key = None gml_key = None # if nsmap is defined, use it if nsmap: for key in nsmap: if nsmap[key] == XS_NAMESPACE: schema_key = key if nsmap[key] in GML_NAMESPACES: gml_key = key # if no nsmap is defined, we have to guess else: gml_key = 'gml' schema_key = 'xsd' for element in elements: data_type = element.attrib['type'].replace(gml_key + ':', '') name = element.attrib['name'] if data_type == 'PointPropertyType': schema['geometry'] = 'Point' elif data_type == 'PolygonPropertyType': schema['geometry'] = 'Polygon' elif data_type == 'LineStringPropertyType': schema['geometry'] = 'LineString' elif data_type == 'MultiPointPropertyType': schema['geometry'] = 'MultiPoint' elif data_type == 'MultiLineStringPropertyType': schema['geometry'] = 'MultiLineString' elif data_type == 'MultiPolygonPropertyType': schema['geometry'] = 'MultiPolygon' elif data_type == 'MultiGeometryPropertyType': schema['geometry'] = 'MultiGeometry' elif data_type == 'GeometryPropertyType': schema['geometry'] = 'GeometryCollection' elif data_type == 'SurfacePropertyType': schema['geometry'] = '3D Polygon' else: schema['properties'][name] = data_type.replace(schema_key+':', '') if schema['properties'] or schema['geometry']: return schema else: return None def _get_describefeaturetype_url(url, version, typename): """Get url for describefeaturetype request :return str: url """ query_string = [] if url.find('?') != -1: query_string = cgi.parse_qsl(url.split('?')[1]) params = [x[0] for x in query_string] if 'service' not in params: query_string.append(('service', 'WFS')) if 'request' not in params: query_string.append(('request', 'DescribeFeatureType')) if 'version' not in params: query_string.append(('version', version)) query_string.append(('typeName', typename)) urlqs = urlencode(tuple(query_string)) return url.split('?')[0] + '?' + urlqs OWSLib-0.16.0/owslib/feature/wfs100.py000066400000000000000000000345561321706412000172320ustar00rootroot00000000000000# ============================================================================= # OWSLib. Copyright (C) 2005 Sean C. Gillies # # Contact email: sgillies@frii.com # # $Id: wfs.py 503 2006-02-01 17:09:12Z dokai $ # ============================================================================= from __future__ import (absolute_import, division, print_function) from six import PY2 from six.moves import cStringIO as StringIO try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.util import openURL, testXMLValue, extract_xml_list, ServiceException, xmltag_split from owslib.etree import etree from owslib.fgdc import Metadata from owslib.iso import MD_Metadata from owslib.crs import Crs from owslib.namespaces import Namespaces from owslib.util import log from owslib.feature.schema import get_schema from owslib.feature.common import WFSCapabilitiesReader import pyproj n = Namespaces() WFS_NAMESPACE = n.get_namespace("wfs") OGC_NAMESPACE = n.get_namespace("ogc") #TODO: use nspath in util.py def nspath(path, ns=WFS_NAMESPACE): """ Prefix the given path with the given namespace identifier. Parameters ---------- path : string ElementTree API Compatible path expression ns : string The XML namespace. Defaults to WFS namespace. """ components = [] for component in path.split("/"): if component != '*': component = "{%s}%s" % (ns, component) components.append(component) return "/".join(components) class WebFeatureService_1_0_0(object): """Abstraction for OGC Web Feature Service (WFS). Implements IWebFeatureService. """ def __new__(self,url, version, xml, parse_remote_metadata=False, timeout=30, username=None, password=None): """ overridden __new__ method @type url: string @param url: url of WFS capabilities document @type xml: string @param xml: elementtree object @type parse_remote_metadata: boolean @param parse_remote_metadata: whether to fully process MetadataURL elements @param timeout: time (in seconds) after which requests should timeout @param username: service authentication username @param password: service authentication password @return: initialized WebFeatureService_1_0_0 object """ obj=object.__new__(self) obj.__init__(url, version, xml, parse_remote_metadata, timeout, username=username, password=password) return obj def __getitem__(self,name): ''' check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version, xml=None, parse_remote_metadata=False, timeout=30, username=None, password=None): """Initialize.""" self.url = url self.version = version self.timeout = timeout self.username = username self.password = password self._capabilities = None reader = WFSCapabilitiesReader(self.version, self.username, self.password) if xml: self._capabilities = reader.readString(xml) else: self._capabilities = reader.read(self.url) self._buildMetadata(parse_remote_metadata) def _buildMetadata(self, parse_remote_metadata=False): '''set up capabilities metadata objects: ''' self.updateSequence = self._capabilities.attrib.get('updateSequence') #serviceIdentification metadata serviceelem=self._capabilities.find(nspath('Service')) self.identification=ServiceIdentification(serviceelem, self.version) #serviceProvider metadata self.provider=ServiceProvider(serviceelem) #serviceOperations metadata self.operations=[] for elem in self._capabilities.find(nspath('Capability/Request'))[:]: self.operations.append(OperationMetadata(elem)) #serviceContents metadata: our assumption is that services use a top-level #layer as a metadata organizer, nothing more. self.contents={} featuretypelist=self._capabilities.find(nspath('FeatureTypeList')) features = self._capabilities.findall(nspath('FeatureTypeList/FeatureType')) for feature in features: cm=ContentMetadata(feature, featuretypelist, parse_remote_metadata) self.contents[cm.id]=cm #exceptions self.exceptions = [f.text for f \ in self._capabilities.findall('Capability/Exception/Format')] def getcapabilities(self): """Request and return capabilities document from the WFS as a file-like object. NOTE: this is effectively redundant now""" reader = WFSCapabilitiesReader(self.version) return openURL(reader.capabilities_url(self.url), timeout=self.timeout, username=self.username, password=self.password) def items(self): '''supports dict-like items() access''' items=[] for item in self.contents: items.append((item,self.contents[item])) return items def _makeStringIO(self, strval): """ Helper method to make sure the StringIO being returned will work. Differences between Python 2.7/3.x mean we have a lot of cases to handle. """ if PY2: return StringIO(strval) return StringIO(strval.decode()) def getfeature(self, typename=None, filter=None, bbox=None, featureid=None, featureversion=None, propertyname='*', maxfeatures=None, srsname=None, outputFormat=None, method='{http://www.opengis.net/wfs}Get', startindex=None): """Request and return feature data as a file-like object. Parameters ---------- typename : list List of typenames (string) filter : string XML-encoded OGC filter expression. bbox : tuple (left, bottom, right, top) in the feature type's coordinates. featureid : list List of unique feature ids (string) featureversion : string Default is most recent feature version. propertyname : list List of feature property names. '*' matches all. maxfeatures : int Maximum number of features to be returned. method : string Qualified name of the HTTP DCP method to use. srsname: string EPSG code to request the data in outputFormat: string (optional) Requested response format of the request. startindex: int (optional) Start position to return feature set (paging in combination with maxfeatures) There are 3 different modes of use 1) typename and bbox (simple spatial query) 2) typename and filter (more expressive) 3) featureid (direct access to known features) """ try: base_url = next((m.get('url') for m in self.getOperationByName('GetFeature').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'WFS', 'version': self.version, 'request': 'GetFeature'} # check featureid if featureid: request['featureid'] = ','.join(featureid) elif bbox and typename: request['bbox'] = ','.join([repr(x) for x in bbox]) elif filter and typename: request['filter'] = str(filter) if srsname: request['srsname'] = str(srsname) assert len(typename) > 0 request['typename'] = ','.join(typename) if propertyname is not None: if not isinstance(propertyname, list): propertyname = [propertyname] request['propertyname'] = ','.join(propertyname) if featureversion: request['featureversion'] = str(featureversion) if maxfeatures: request['maxfeatures'] = str(maxfeatures) if startindex: request['startindex'] = str(startindex) if outputFormat is not None: request["outputFormat"] = outputFormat data = urlencode(request) log.debug("Making request: %s?%s" % (base_url, data)) u = openURL(base_url, data, method, timeout=self.timeout, username=self.username, password=self.password) # check for service exceptions, rewrap, and return # We're going to assume that anything with a content-length > 32k # is data. We'll check anything smaller. if 'Content-Length' in u.info(): length = int(u.info()['Content-Length']) have_read = False else: data = u.read() have_read = True length = len(data) if length < 32000: if not have_read: data = u.read() try: tree = etree.fromstring(data) except BaseException: # Not XML return self._makeStringIO(data) else: if tree.tag == "{%s}ServiceExceptionReport" % OGC_NAMESPACE: se = tree.find(nspath('ServiceException', OGC_NAMESPACE)) raise ServiceException(str(se.text).strip()) else: return self._makeStringIO(data) else: if have_read: return self._makeStringIO(data) return u def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) def get_schema(self, typename): """ Get layer schema compatible with :class:`fiona` schema object """ return get_schema(self.url, typename, self.version) class ServiceIdentification(object): ''' Implements IServiceIdentificationMetadata ''' def __init__(self, infoset, version): self._root=infoset self.type = testXMLValue(self._root.find(nspath('Name'))) self.version = version self.title = testXMLValue(self._root.find(nspath('Title'))) self.abstract = testXMLValue(self._root.find(nspath('Abstract'))) self.keywords = [f.text for f in self._root.findall(nspath('Keywords'))] self.fees = testXMLValue(self._root.find(nspath('Fees'))) self.accessconstraints = testXMLValue(self._root.find(nspath('AccessConstraints'))) class ServiceProvider(object): ''' Implements IServiceProviderMetatdata ''' def __init__(self, infoset): self._root = infoset self.name = testXMLValue(self._root.find(nspath('Name'))) self.url = testXMLValue(self._root.find(nspath('OnlineResource'))) self.keywords = extract_xml_list(self._root.find(nspath('Keywords'))) class ContentMetadata: """Abstraction for WFS metadata. Implements IMetadata. """ def __init__(self, elem, parent, parse_remote_metadata=False, timeout=30): """.""" self.id = testXMLValue(elem.find(nspath('Name'))) self.title = testXMLValue(elem.find(nspath('Title'))) self.abstract = testXMLValue(elem.find(nspath('Abstract'))) self.keywords = [f.text for f in elem.findall(nspath('Keywords'))] # bboxes self.boundingBox = None b = elem.find(nspath('LatLongBoundingBox')) srs = elem.find(nspath('SRS')) if b is not None: self.boundingBox = (float(b.attrib['minx']),float(b.attrib['miny']), float(b.attrib['maxx']), float(b.attrib['maxy']), Crs(srs.text)) # transform wgs84 bbox from given default bboxt self.boundingBoxWGS84 = None if b is not None and srs is not None: wgs84 = pyproj.Proj(init="epsg:4326") try: src_srs = pyproj.Proj(init=srs.text) mincorner = pyproj.transform(src_srs, wgs84, b.attrib['minx'], b.attrib['miny']) maxcorner = pyproj.transform(src_srs, wgs84, b.attrib['maxx'], b.attrib['maxy']) self.boundingBoxWGS84 = (mincorner[0], mincorner[1], maxcorner[0], maxcorner[1]) except RuntimeError as e: pass # crs options self.crsOptions = [Crs(srs.text) for srs in elem.findall(nspath('SRS'))] # verbs self.verbOptions = [op.tag for op \ in parent.findall(nspath('Operations/*'))] self.verbOptions + [op.tag for op \ in elem.findall(nspath('Operations/*')) \ if op.tag not in self.verbOptions] #others not used but needed for iContentMetadata harmonisation self.styles=None self.timepositions=None self.defaulttimeposition=None # MetadataURLs self.metadataUrls = [] for m in elem.findall(nspath('MetadataURL')): metadataUrl = { 'type': testXMLValue(m.attrib['type'], attrib=True), 'format': testXMLValue(m.find('Format')), 'url': testXMLValue(m) } if metadataUrl['url'] is not None and parse_remote_metadata: # download URL try: content = openURL(metadataUrl['url'], timeout=timeout) doc = etree.parse(content) if metadataUrl['type'] is not None: if metadataUrl['type'] == 'FGDC': metadataUrl['metadata'] = Metadata(doc) if metadataUrl['type'] == 'TC211': metadataUrl['metadata'] = MD_Metadata(doc) except Exception: metadataUrl['metadata'] = None self.metadataUrls.append(metadataUrl) class OperationMetadata: """Abstraction for WFS metadata. Implements IMetadata. """ def __init__(self, elem): """.""" self.name = xmltag_split(elem.tag) # formatOptions self.formatOptions = [f.tag for f in elem.findall(nspath('ResultFormat/*'))] self.methods = [] for verb in elem.findall(nspath('DCPType/HTTP/*')): url = verb.attrib['onlineResource'] self.methods.append({'type' : xmltag_split(verb.tag), 'url': url}) OWSLib-0.16.0/owslib/feature/wfs110.py000066400000000000000000000341361321706412000172250ustar00rootroot00000000000000# -*- coding: utf-8 -*- # ============================================================================= # Copyright (c) 2011 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= from __future__ import (absolute_import, division, print_function) from six import PY2 from six.moves import cStringIO as StringIO try: from urllib import urlencode except ImportError: from urllib.parse import urlencode from owslib.util import openURL, testXMLValue, nspath_eval, ServiceException from owslib.etree import etree from owslib.fgdc import Metadata from owslib.iso import MD_Metadata from owslib.ows import * from owslib.fes import * from owslib.crs import Crs from owslib.feature import WebFeatureService_ from owslib.feature.common import WFSCapabilitiesReader from owslib.namespaces import Namespaces from owslib.util import log def get_namespaces(): n = Namespaces() return n.get_namespaces(["gml","ogc","ows","wfs"]) namespaces = get_namespaces() class WebFeatureService_1_1_0(WebFeatureService_): """Abstraction for OGC Web Feature Service (WFS). Implements IWebFeatureService. """ def __new__(self,url, version, xml, parse_remote_metadata=False, timeout=30, username=None, password=None): """ overridden __new__ method @type url: string @param url: url of WFS capabilities document @type xml: string @param xml: elementtree object @type parse_remote_metadata: boolean @param parse_remote_metadata: whether to fully process MetadataURL elements @param timeout: time (in seconds) after which requests should timeout @param username: service authentication username @param password: service authentication password @return: initialized WebFeatureService_1_1_0 object """ obj=object.__new__(self) obj.__init__(url, version, xml, parse_remote_metadata, timeout, username=username, password=password) return obj def __getitem__(self,name): ''' check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version, xml=None, parse_remote_metadata=False, timeout=30, username=None, password=None): """Initialize.""" self.url = url self.version = version self.timeout = timeout self.username = username self.password = password self._capabilities = None self.owscommon = OwsCommon('1.0.0') reader = WFSCapabilitiesReader(self.version, username=username, password=password) if xml: self._capabilities = reader.readString(xml) else: self._capabilities = reader.read(self.url) self._buildMetadata(parse_remote_metadata) def _buildMetadata(self, parse_remote_metadata=False): '''set up capabilities metadata objects: ''' self.updateSequence = self._capabilities.attrib.get('updateSequence') # ServiceIdentification val = self._capabilities.find(util.nspath_eval('ows:ServiceIdentification', namespaces)) self.identification=ServiceIdentification(val,self.owscommon.namespace) # ServiceProvider val = self._capabilities.find(util.nspath_eval('ows:ServiceProvider', namespaces)) self.provider=ServiceProvider(val,self.owscommon.namespace) # ServiceOperations metadata self.operations=[] for elem in self._capabilities.findall(util.nspath_eval('ows:OperationsMetadata/ows:Operation', namespaces)): self.operations.append(OperationsMetadata(elem, self.owscommon.namespace)) self.constraints = {} for elem in self._capabilities.findall(util.nspath_eval('ows:OperationsMetadata/ows:Constraint', namespaces)): self.constraints[elem.attrib['name']] = Constraint(elem, self.owscommon.namespace) self.parameters = {} for elem in self._capabilities.findall(util.nspath_eval('ows:OperationsMetadata/ows:Parameter', namespaces)): self.parameters[elem.attrib['name']] = Parameter(elem, self.owscommon.namespace) # FilterCapabilities val = self._capabilities.find(util.nspath_eval('ogc:Filter_Capabilities', namespaces)) self.filters=FilterCapabilities(val) #serviceContents metadata: our assumption is that services use a top-level #layer as a metadata organizer, nothing more. self.contents={} features = self._capabilities.findall(nspath_eval('wfs:FeatureTypeList/wfs:FeatureType', namespaces)) for feature in features: cm=ContentMetadata(feature, parse_remote_metadata) self.contents[cm.id]=cm #exceptions self.exceptions = [f.text for f \ in self._capabilities.findall('Capability/Exception/Format')] def getcapabilities(self): """Request and return capabilities document from the WFS as a file-like object. NOTE: this is effectively redundant now""" reader = WFSCapabilitiesReader(self.version) return openURL(reader.capabilities_url(self.url), timeout=self.timeout, username=self.username, password=self.password) def items(self): '''supports dict-like items() access''' items=[] for item in self.contents: items.append((item,self.contents[item])) return items def _makeStringIO(self, strval): """ Helper method to make sure the StringIO being returned will work. Differences between Python 2.7/3.x mean we have a lot of cases to handle. """ if PY2: return StringIO(strval) return StringIO(strval.decode()) def getfeature(self, typename=None, filter=None, bbox=None, featureid=None, featureversion=None, propertyname='*', maxfeatures=None, srsname=None, outputFormat=None, method='Get', startindex=None, sortby=None): """Request and return feature data as a file-like object. Parameters ---------- typename : list List of typenames (string) filter : string XML-encoded OGC filter expression. bbox : tuple (left, bottom, right, top) in the feature type's coordinates. featureid : list List of unique feature ids (string) featureversion : string Default is most recent feature version. propertyname : list List of feature property names. '*' matches all. maxfeatures : int Maximum number of features to be returned. method : string Qualified name of the HTTP DCP method to use. srsname: string EPSG code to request the data in outputFormat: string (optional) Requested response format of the request. startindex: int (optional) Start position to return feature set (paging in combination with maxfeatures) sortby: list (optional) List of property names whose values should be used to order (upon presentation) the set of feature instances that satify the query. There are 3 different modes of use 1) typename and bbox (simple spatial query). It is assumed, that bbox coordinates are given *always* in the east,north order 2) typename and filter (more expressive) 3) featureid (direct access to known features) """ try: base_url = next((m.get('url') for m in self.getOperationByName('GetFeature').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'WFS', 'version': self.version, 'request': 'GetFeature'} if not isinstance(typename, list): typename = [typename] if srsname is not None: # check, if desired SRS is supported by the service for this typename if typename is not None: # convert srsname string to Crs object found in GetCaps srsnameobj = self.getSRS(srsname, typename[0]) if srsnameobj is not None: request['srsname'] = srsnameobj.id else: options = ", ".join(map(lambda x: x.id, self.contents[typename[0]].crsOptions)) raise ServiceException("SRSNAME %s not supported. Options: %s" % (srsname, options)) else: request['srsname'] = str(srsname) # check featureid if featureid: request['featureid'] = ','.join(featureid) # bbox elif bbox and typename: request["bbox"] = self.getBBOXKVP(bbox, typename) # or filter elif filter and typename: request['filter'] = str(filter) assert len(typename) > 0 request['typename'] = ','.join(typename) if propertyname is not None: if not isinstance(propertyname, list): propertyname = [propertyname] request['propertyname'] = ','.join(propertyname) if sortby is not None: if not isinstance(sortby, list): sortby = [sortby] request['sortby'] = ','.join(sortby) if featureversion is not None: request['featureversion'] = str(featureversion) if maxfeatures is not None: request['maxfeatures'] = str(maxfeatures) if startindex is not None: request['startindex'] = str(startindex) if outputFormat is not None: request["outputFormat"] = outputFormat data = urlencode(request) log.debug("Making request: %s?%s" % (base_url, data)) u = openURL(base_url, data, method, timeout=self.timeout, username=self.username, password=self.password) # check for service exceptions, rewrap, and return # We're going to assume that anything with a content-length > 32k # is data. We'll check anything smaller. if 'Content-Length' in u.info(): length = int(u.info()['Content-Length']) have_read = False else: data = u.read() have_read = True length = len(data) if length < 32000: if not have_read: data = u.read() try: tree = etree.fromstring(data) except BaseException: # Not XML return self._makeStringIO(data) else: if tree.tag == "{%s}ServiceExceptionReport" % namespaces["ogc"]: se = tree.find(nspath_eval('ServiceException', namespaces["ogc"])) raise ServiceException(str(se.text).strip()) else: return self._makeStringIO(data) else: if have_read: return self._makeStringIO(data) return u def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class ContentMetadata: """Abstraction for WFS metadata. Implements IMetadata. """ def __init__(self, elem, parse_remote_metadata=False, timeout=30): """.""" self.id = testXMLValue(elem.find(nspath_eval('wfs:Name', namespaces))) self.title = testXMLValue(elem.find(nspath_eval('wfs:Title', namespaces))) self.abstract = testXMLValue(elem.find(nspath_eval('wfs:Abstract', namespaces))) self.keywords = [f.text for f in elem.findall(nspath_eval('ows:Keywords/ows:Keyword', namespaces))] # bbox self.boundingBoxWGS84 = None b = BoundingBox(elem.find(nspath_eval('ows:WGS84BoundingBox', namespaces)), namespaces['ows']) if b is not None: try: self.boundingBoxWGS84 = ( float(b.minx), float(b.miny), float(b.maxx), float(b.maxy), ) except TypeError: self.boundingBoxWGS84 = None # crs options self.crsOptions = [Crs(srs.text) for srs in elem.findall(nspath_eval('wfs:OtherSRS', namespaces))] dsrs = testXMLValue(elem.find(nspath_eval('wfs:DefaultSRS', namespaces))) if dsrs is not None: # first element is default srs self.crsOptions.insert(0, Crs(dsrs)) # verbs self.verbOptions = [op.text for op in elem.findall(nspath_eval('wfs:Operations/wfs:Operation', namespaces))] # output formats self.outputFormats = [op.text for op in elem.findall(nspath_eval('wfs:OutputFormats/wfs:Format', namespaces))] # MetadataURLs self.metadataUrls = [] for m in elem.findall(nspath_eval('wfs:MetadataURL', namespaces)): metadataUrl = { 'type': testXMLValue(m.attrib['type'], attrib=True), 'format': testXMLValue(m.find('Format')), 'url': testXMLValue(m) } if metadataUrl['url'] is not None and parse_remote_metadata: # download URL try: content = openURL(metadataUrl['url'], timeout=timeout) doc = etree.parse(content) if metadataUrl['type'] is not None: if metadataUrl['type'] == 'FGDC': metadataUrl['metadata'] = Metadata(doc) if metadataUrl['type'] in ['TC211', '19115', '19139']: metadataUrl['metadata'] = MD_Metadata(doc) except Exception: metadataUrl['metadata'] = None self.metadataUrls.append(metadataUrl) #others not used but needed for iContentMetadata harmonisation self.styles=None self.timepositions=None self.defaulttimeposition=None OWSLib-0.16.0/owslib/feature/wfs200.py000066400000000000000000000442421321706412000172240ustar00rootroot00000000000000# ============================================================================= # OWSLib. Copyright (C) 2005 Sean C. Gillies # # Contact email: sgillies@frii.com # # $Id: wfs.py 503 2006-02-01 17:09:12Z dokai $ # ============================================================================= from __future__ import (absolute_import, division, print_function) #owslib imports: from owslib.ows import ServiceIdentification, ServiceProvider, OperationsMetadata from owslib.etree import etree from owslib.util import nspath, testXMLValue, openURL from owslib.crs import Crs from owslib.feature import WebFeatureService_ from owslib.feature.common import WFSCapabilitiesReader from owslib.namespaces import Namespaces #other imports from six import PY2 from six.moves import cStringIO as StringIO try: from urllib import urlencode except ImportError: from urllib.parse import urlencode import logging from owslib.util import log n = Namespaces() WFS_NAMESPACE = n.get_namespace("wfs20") OWS_NAMESPACE = n.get_namespace("ows110") OGC_NAMESPACE = n.get_namespace("ogc") GML_NAMESPACE = n.get_namespace("gml") FES_NAMESPACE = n.get_namespace("fes") class ServiceException(Exception): pass class WebFeatureService_2_0_0(WebFeatureService_): """Abstraction for OGC Web Feature Service (WFS). Implements IWebFeatureService. """ def __new__(self,url, version, xml, parse_remote_metadata=False, timeout=30, username=None, password=None): """ overridden __new__ method @type url: string @param url: url of WFS capabilities document @type xml: string @param xml: elementtree object @type parse_remote_metadata: boolean @param parse_remote_metadata: whether to fully process MetadataURL elements @param timeout: time (in seconds) after which requests should timeout @param username: service authentication username @param password: service authentication password @return: initialized WebFeatureService_2_0_0 object """ obj=object.__new__(self) obj.__init__(url, version, xml, parse_remote_metadata, timeout, username=username, password=password) return obj def __getitem__(self,name): ''' check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version, xml=None, parse_remote_metadata=False, timeout=30, username=None, password=None): """Initialize.""" if log.isEnabledFor(logging.DEBUG): log.debug('building WFS %s'%url) self.url = url self.version = version self.timeout = timeout self.username = username self.password = password self._capabilities = None reader = WFSCapabilitiesReader(self.version, username=username, password=password) if xml: self._capabilities = reader.readString(xml) else: self._capabilities = reader.read(self.url) self._buildMetadata(parse_remote_metadata) def _buildMetadata(self, parse_remote_metadata=False): '''set up capabilities metadata objects: ''' self.updateSequence = self._capabilities.attrib.get('updateSequence') #serviceIdentification metadata serviceidentelem=self._capabilities.find(nspath('ServiceIdentification')) self.identification=ServiceIdentification(serviceidentelem) #need to add to keywords list from featuretypelist information: featuretypelistelem=self._capabilities.find(nspath('FeatureTypeList', ns=WFS_NAMESPACE)) featuretypeelems=featuretypelistelem.findall(nspath('FeatureType', ns=WFS_NAMESPACE)) for f in featuretypeelems: kwds=f.findall(nspath('Keywords/Keyword',ns=OWS_NAMESPACE)) if kwds is not None: for kwd in kwds[:]: if kwd.text not in self.identification.keywords: self.identification.keywords.append(kwd.text) #TODO: update serviceProvider metadata, miss it out for now serviceproviderelem=self._capabilities.find(nspath('ServiceProvider')) self.provider=ServiceProvider(serviceproviderelem) #serviceOperations metadata self.operations=[] for elem in self._capabilities.find(nspath('OperationsMetadata'))[:]: if elem.tag !=nspath('ExtendedCapabilities'): self.operations.append(OperationsMetadata(elem)) self.constraints = {} for elem in self._capabilities.findall(nspath('OperationsMetadata/Constraint', ns=WFS_NAMESPACE)): self.constraints[elem.attrib['name']] = Constraint(elem, self.owscommon.namespace) self.parameters = {} for elem in self._capabilities.findall(nspath('OperationsMetadata/Parameter', ns=WFS_NAMESPACE)): self.parameters[elem.attrib['name']] = Parameter(elem, self.owscommon.namespace) #serviceContents metadata: our assumption is that services use a top-level #layer as a metadata organizer, nothing more. self.contents={} featuretypelist=self._capabilities.find(nspath('FeatureTypeList',ns=WFS_NAMESPACE)) features = self._capabilities.findall(nspath('FeatureTypeList/FeatureType', ns=WFS_NAMESPACE)) for feature in features: cm=ContentMetadata(feature, featuretypelist, parse_remote_metadata) self.contents[cm.id]=cm #exceptions self.exceptions = [f.text for f \ in self._capabilities.findall('Capability/Exception/Format')] def getcapabilities(self): """Request and return capabilities document from the WFS as a file-like object. NOTE: this is effectively redundant now""" reader = WFSCapabilitiesReader(self.version) return openURL(reader.capabilities_url(self.url), timeout=self.timeout, username=self.username, password=self.password) def items(self): '''supports dict-like items() access''' items=[] for item in self.contents: items.append((item,self.contents[item])) return items def _makeStringIO(self, strval): """ Helper method to make sure the StringIO being returned will work. Differences between Python 2.7/3.x mean we have a lot of cases to handle. """ if PY2: return StringIO(strval) return StringIO(strval.decode()) def getfeature(self, typename=None, filter=None, bbox=None, featureid=None, featureversion=None, propertyname=None, maxfeatures=None,storedQueryID=None, storedQueryParams=None, method='Get', outputFormat=None, startindex=None, sortby=None): """Request and return feature data as a file-like object. #TODO: NOTE: have changed property name from ['*'] to None - check the use of this in WFS 2.0 Parameters ---------- typename : list List of typenames (string) filter : string XML-encoded OGC filter expression. bbox : tuple (left, bottom, right, top) in the feature type's coordinates == (minx, miny, maxx, maxy) featureid : list List of unique feature ids (string) featureversion : string Default is most recent feature version. propertyname : list List of feature property names. '*' matches all. maxfeatures : int Maximum number of features to be returned. method : string Qualified name of the HTTP DCP method to use. outputFormat: string (optional) Requested response format of the request. startindex: int (optional) Start position to return feature set (paging in combination with maxfeatures) sortby: list (optional) List of property names whose values should be used to order (upon presentation) the set of feature instances that satify the query. There are 3 different modes of use 1) typename and bbox (simple spatial query) 2) typename and filter (==query) (more expressive) 3) featureid (direct access to known features) """ storedQueryParams = storedQueryParams or {} url = data = None if typename and type(typename) == type(""): typename = [typename] if method.upper() == "GET": (url) = self.getGETGetFeatureRequest(typename, filter, bbox, featureid, featureversion, propertyname, maxfeatures, storedQueryID, storedQueryParams, outputFormat, 'Get', startindex, sortby) if log.isEnabledFor(logging.DEBUG): log.debug('GetFeature WFS GET url %s'% url) else: (url,data) = self.getPOSTGetFeatureRequest() # If method is 'Post', data will be None here u = openURL(url, data, method, timeout=self.timeout, username=self.username, password=self.password) # check for service exceptions, rewrap, and return # We're going to assume that anything with a content-length > 32k # is data. We'll check anything smaller. if 'Content-Length' in u.info(): length = int(u.info()['Content-Length']) have_read = False else: data = u.read() have_read = True length = len(data) if length < 32000: if not have_read: data = u.read() try: tree = etree.fromstring(data) except BaseException: # Not XML return self._makeStringIO(data) else: if tree.tag == "{%s}ServiceExceptionReport" % OGC_NAMESPACE: se = tree.find(nspath('ServiceException', OGC_NAMESPACE)) raise ServiceException(str(se.text).strip()) else: return self._makeStringIO(data) else: if have_read: return self._makeStringIO(data) return u def getpropertyvalue(self, query=None, storedquery_id=None, valuereference=None, typename=None, method=nspath('Get'),**kwargs): ''' the WFS GetPropertyValue method''' try: base_url = next((m.get('url') for m in self.getOperationByName('GetPropertyValue').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'WFS', 'version': self.version, 'request': 'GetPropertyValue'} if query: request['query'] = str(query) if valuereference: request['valueReference'] = str(valuereference) if storedquery_id: request['storedQuery_id'] = str(storedquery_id) if typename: request['typename']=str(typename) if kwargs: for kw in kwargs.keys(): request[kw]=str(kwargs[kw]) encoded_request=urlencode(request) u = openURL(base_url + encoded_request, timeout=self.timeout, username=self.username, password=self.password) return u.read() def _getStoredQueries(self): ''' gets descriptions of the stored queries available on the server ''' sqs=[] #This method makes two calls to the WFS - one ListStoredQueries, and one DescribeStoredQueries. The information is then #aggregated in 'StoredQuery' objects method=nspath('Get') #first make the ListStoredQueries response and save the results in a dictionary if form {storedqueryid:(title, returnfeaturetype)} try: base_url = next((m.get('url') for m in self.getOperationByName('ListStoredQueries').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'WFS', 'version': self.version, 'request': 'ListStoredQueries'} encoded_request = urlencode(request) u = openURL(base_url, data=encoded_request, timeout=self.timeout, username=self.username, password=self.password) tree=etree.fromstring(u.read()) tempdict={} for sqelem in tree[:]: title=rft=id=None id=sqelem.get('id') for elem in sqelem[:]: if elem.tag==nspath('Title', WFS_NAMESPACE): title=elem.text elif elem.tag==nspath('ReturnFeatureType', WFS_NAMESPACE): rft=elem.text tempdict[id]=(title,rft) #store in temporary dictionary #then make the DescribeStoredQueries request and get the rest of the information about the stored queries try: base_url = next((m.get('url') for m in self.getOperationByName('DescribeStoredQueries').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'WFS', 'version': self.version, 'request': 'DescribeStoredQueries'} encoded_request = urlencode(request) u = openURL(base_url, data=encoded_request, timeout=self.timeout, username=self.username, password=self.password) tree=etree.fromstring(u.read()) tempdict2={} for sqelem in tree[:]: params=[] #list to store parameters for the stored query description id =sqelem.get('id') for elem in sqelem[:]: abstract = '' if elem.tag==nspath('Abstract', WFS_NAMESPACE): abstract=elem.text elif elem.tag==nspath('Parameter', WFS_NAMESPACE): newparam=Parameter(elem.get('name'), elem.get('type')) params.append(newparam) tempdict2[id]=(abstract, params) #store in another temporary dictionary #now group the results into StoredQuery objects: for key in tempdict.keys(): sqs.append(StoredQuery(key, tempdict[key][0], tempdict[key][1], tempdict2[key][0], tempdict2[key][1])) return sqs storedqueries = property(_getStoredQueries, None) def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class StoredQuery(object): '''' Class to describe a storedquery ''' def __init__(self, id, title, returntype, abstract, parameters): self.id=id self.title=title self.returnfeaturetype=returntype self.abstract=abstract self.parameters=parameters class Parameter(object): def __init__(self, name, type): self.name=name self.type=type class ContentMetadata: """Abstraction for WFS metadata. Implements IMetadata. """ def __init__(self, elem, parent, parse_remote_metadata=False, timeout=30): """.""" self.id = elem.find(nspath('Name',ns=WFS_NAMESPACE)).text self.title = elem.find(nspath('Title',ns=WFS_NAMESPACE)).text abstract = elem.find(nspath('Abstract',ns=WFS_NAMESPACE)) if abstract is not None: self.abstract = abstract.text else: self.abstract = None self.keywords = [f.text for f in elem.findall(nspath('Keywords',ns=WFS_NAMESPACE))] # bboxes self.boundingBoxWGS84 = None b = elem.find(nspath('WGS84BoundingBox',ns=OWS_NAMESPACE)) if b is not None: try: lc = b.find(nspath("LowerCorner",ns=OWS_NAMESPACE)) uc = b.find(nspath("UpperCorner",ns=OWS_NAMESPACE)) ll = [float(s) for s in lc.text.split()] ur = [float(s) for s in uc.text.split()] self.boundingBoxWGS84 = (ll[0],ll[1],ur[0],ur[1]) # there is no such think as bounding box # make copy of the WGS84BoundingBox self.boundingBox = (self.boundingBoxWGS84[0], self.boundingBoxWGS84[1], self.boundingBoxWGS84[2], self.boundingBoxWGS84[3], Crs("epsg:4326")) except AttributeError: self.boundingBoxWGS84 = None # crs options self.crsOptions = [Crs(srs.text) for srs in elem.findall(nspath('OtherCRS',ns=WFS_NAMESPACE))] defaultCrs = elem.findall(nspath('DefaultCRS',ns=WFS_NAMESPACE)) if len(defaultCrs) > 0: self.crsOptions.insert(0,Crs(defaultCrs[0].text)) # verbs self.verbOptions = [op.tag for op \ in parent.findall(nspath('Operations/*',ns=WFS_NAMESPACE))] self.verbOptions + [op.tag for op \ in elem.findall(nspath('Operations/*',ns=WFS_NAMESPACE)) \ if op.tag not in self.verbOptions] #others not used but needed for iContentMetadata harmonisation self.styles=None self.timepositions=None self.defaulttimeposition=None # MetadataURLs self.metadataUrls = [] for m in elem.findall('MetadataURL'): metadataUrl = { 'type': testXMLValue(m.attrib['type'], attrib=True), 'format': m.find('Format').text.strip(), 'url': testXMLValue(m.find('OnlineResource').attrib['{http://www.w3.org/1999/xlink}href'], attrib=True) } if metadataUrl['url'] is not None and parse_remote_metadata: # download URL try: content = openURL(metadataUrl['url'], timeout=timeout) doc = etree.parse(content) try: # FGDC metadataUrl['metadata'] = Metadata(doc) except: # ISO metadataUrl['metadata'] = MD_Metadata(doc) except Exception: metadataUrl['metadata'] = None self.metadataUrls.append(metadataUrl) OWSLib-0.16.0/owslib/fes.py000066400000000000000000000407761321706412000153350ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ API for OGC Filter Encoding (FE) constructs and metadata. Filter Encoding: http://www.opengeospatial.org/standards/filter Currently supports version 1.1.0 (04-095). """ from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib import util from owslib.namespaces import Namespaces # default variables def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["dif","fes","gml","ogc","xs","xsi"]) ns[None] = n.get_namespace("ogc") return ns namespaces = get_namespaces() schema = 'http://schemas.opengis.net/filter/1.1.0/filter.xsd' schema_location = '%s %s' % (namespaces['ogc'], schema) class FilterRequest(object): """ filter class """ def __init__(self, parent=None, version='1.1.0'): """ filter Constructor Parameters ---------- - parent: parent etree.Element object (default is None) - version: version (default is '1.1.0') """ self.version = version self._root = etree.Element(util.nspath_eval('ogc:Filter', namespaces)) if parent is not None: self._root.set(util.nspath_eval('xsi:schemaLocation', namespaces), schema_location) def set(self, parent=False, qtype=None, keywords=[], typenames='csw:Record', propertyname='csw:AnyText', bbox=None, identifier=None): """ Construct and process a GetRecords request Parameters ---------- - parent: the parent Element object. If this is not, then generate a standalone request - qtype: type of resource to query (i.e. service, dataset) - keywords: list of keywords - propertyname: the PropertyName to Filter against - bbox: the bounding box of the spatial query in the form [minx,miny,maxx,maxy] - identifier: the dc:identifier to query against with a PropertyIsEqualTo. Ignores all other inputs. """ # Set the identifier if passed. Ignore other parameters dc_identifier_equals_filter = None if identifier is not None: dc_identifier_equals_filter = PropertyIsEqualTo('dc:identifier', identifier) self._root.append(dc_identifier_equals_filter.toXML()) return self._root # Set the query type if passed dc_type_equals_filter = None if qtype is not None: dc_type_equals_filter = PropertyIsEqualTo('dc:type', qtype) # Set a bbox query if passed bbox_filter = None if bbox is not None: bbox_filter = BBox(bbox) # Set a keyword query if passed keyword_filter = None if len(keywords) > 0: if len(keywords) > 1: # loop multiple keywords into an Or ks = [] for i in keywords: ks.append(PropertyIsLike(propertyname, "*%s*" % i, wildCard="*")) keyword_filter = Or(operations=ks) elif len(keywords) == 1: # one keyword keyword_filter = PropertyIsLike(propertyname, "*%s*" % keywords[0], wildCard="*") # And together filters if more than one exists filters = [_f for _f in [keyword_filter, bbox_filter, dc_type_equals_filter] if _f] if len(filters) == 1: self._root.append(filters[0].toXML()) elif len(filters) > 1: self._root.append(And(operations=filters).toXML()) return self._root def setConstraint(self, constraint, tostring=False): """ Construct and process a GetRecords request Parameters ---------- - constraint: An OgcExpression object - tostring (optional): return as string """ self._root.append(constraint.toXML()) if tostring: return util.element_to_string(self._root, xml_declaration=False) return self._root def setConstraintList(self, constraints, tostring=False): """ Construct and process a GetRecords request Parameters ---------- - constraints: A list of OgcExpression objects The list is interpretted like so: [a,b,c] a || b || c [[a,b,c]] a && b && c [[a,b],[c],[d],[e]] or [[a,b],c,d,e] (a && b) || c || d || e - tostring (optional): return as string """ ors = [] if len(constraints) == 1: if isinstance(constraints[0], OgcExpression): flt = self.setConstraint(constraints[0]) else: self._root.append(And(operations=constraints[0]).toXML()) flt = self._root if tostring: return util.element_to_string(flt, xml_declaration=False) else: return flt for c in constraints: if isinstance(c, OgcExpression): ors.append(c) elif isinstance(c, list) or isinstance(c, tuple): if len(c) == 1: ors.append(c[0]) elif len(c) >= 2: ands = [] for sub in c: if isinstance(sub, OgcExpression): ands.append(sub) ors.append(And(operations=ands)) self._root.append(Or(operations=ors).toXML()) if tostring: return util.element_to_string(self._root, xml_declaration=False) return self._root class FilterCapabilities(object): """ Abstraction for Filter_Capabilities """ def __init__(self, elem): # Spatial_Capabilities self.spatial_operands = [f.text for f in elem.findall(util.nspath_eval('ogc:Spatial_Capabilities/ogc:GeometryOperands/ogc:GeometryOperand', namespaces))] self.spatial_operators = [] for f in elem.findall(util.nspath_eval('ogc:Spatial_Capabilities/ogc:SpatialOperators/ogc:SpatialOperator', namespaces)): self.spatial_operators.append(f.attrib['name']) # Temporal_Capabilities self.temporal_operands = [f.text for f in elem.findall(util.nspath_eval('ogc:Temporal_Capabilities/ogc:TemporalOperands/ogc:TemporalOperand', namespaces))] self.temporal_operators = [] for f in elem.findall(util.nspath_eval('ogc:Temporal_Capabilities/ogc:TemporalOperators/ogc:TemporalOperator', namespaces)): self.temporal_operators.append(f.attrib['name']) # Scalar_Capabilities self.scalar_comparison_operators = [f.text for f in elem.findall(util.nspath_eval('ogc:Scalar_Capabilities/ogc:ComparisonOperators/ogc:ComparisonOperator', namespaces))] class FilterCapabilities200(object): """Abstraction for Filter_Capabilities 2.0""" def __init__(self, elem): # Spatial_Capabilities self.spatial_operands = [f.attrib.get('name') for f in elem.findall(util.nspath_eval('fes:Spatial_Capabilities/fes:GeometryOperands/fes:GeometryOperand', namespaces))] self.spatial_operators = [] for f in elem.findall(util.nspath_eval('fes:Spatial_Capabilities/fes:SpatialOperators/fes:SpatialOperator', namespaces)): self.spatial_operators.append(f.attrib['name']) # Temporal_Capabilities self.temporal_operands = [f.attrib.get('name') for f in elem.findall(util.nspath_eval('fes:Temporal_Capabilities/fes:TemporalOperands/fes:TemporalOperand', namespaces))] self.temporal_operators = [] for f in elem.findall(util.nspath_eval('fes:Temporal_Capabilities/fes:TemporalOperators/fes:TemporalOperator', namespaces)): self.temporal_operators.append(f.attrib['name']) # Scalar_Capabilities self.scalar_comparison_operators = [f.text for f in elem.findall(util.nspath_eval('fes:Scalar_Capabilities/fes:ComparisonOperators/fes:ComparisonOperator', namespaces))] # Conformance self.conformance = [] for f in elem.findall(util.nspath_eval('fes:Conformance/fes:Constraint', namespaces)): self.conformance[f.attrib.get('name')] = f.find(util.nspath_eval('fes:DefaultValue', namespaces)).text def setsortby(parent, propertyname, order='ASC'): """ constructs a SortBy element Parameters ---------- - parent: parent etree.Element object - propertyname: the PropertyName - order: the SortOrder (default is 'ASC') """ tmp = etree.SubElement(parent, util.nspath_eval('ogc:SortBy', namespaces)) tmp2 = etree.SubElement(tmp, util.nspath_eval('ogc:SortProperty', namespaces)) etree.SubElement(tmp2, util.nspath_eval('ogc:PropertyName', namespaces)).text = propertyname etree.SubElement(tmp2, util.nspath_eval('ogc:SortOrder', namespaces)).text = order class SortProperty(object): def __init__(self, propertyname, order='ASC'): self.propertyname = propertyname self.order = order.upper() if self.order not in ['DESC','ASC']: raise ValueError("SortOrder can only be 'ASC' or 'DESC'") def toXML(self): node0 = etree.Element(util.nspath_eval("ogc:SortProperty", namespaces)) etree.SubElement(node0, util.nspath_eval('ogc:PropertyName', namespaces)).text = self.propertyname etree.SubElement(node0, util.nspath_eval('ogc:SortOrder', namespaces)).text = self.order return node0 class SortBy(object): def __init__(self, properties): self.properties = properties def toXML(self): node0 = etree.Element(util.nspath_eval("ogc:SortBy", namespaces)) for prop in self.properties: node0.append(prop.toXML()) return node0 class OgcExpression(object): def __init__(self): pass class BinaryComparisonOpType(OgcExpression): """ Super class of all the property operation classes""" def __init__(self, propertyoperator, propertyname, literal, matchcase=True): self.propertyoperator = propertyoperator self.propertyname = propertyname self.literal = literal self.matchcase = matchcase def toXML(self): node0 = etree.Element(util.nspath_eval(self.propertyoperator, namespaces)) if not self.matchcase: node0.set('matchCase', 'false') etree.SubElement(node0, util.nspath_eval('ogc:PropertyName', namespaces)).text = self.propertyname etree.SubElement(node0, util.nspath_eval('ogc:Literal', namespaces)).text = self.literal return node0 class PropertyIsEqualTo(BinaryComparisonOpType): """ PropertyIsEqualTo class""" def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsEqualTo', propertyname, literal, matchcase) class PropertyIsNotEqualTo(BinaryComparisonOpType): """ PropertyIsNotEqualTo class """ def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsNotEqualTo', propertyname, literal, matchcase) class PropertyIsLessThan(BinaryComparisonOpType): """PropertyIsLessThan class""" def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsLessThan', propertyname, literal, matchcase) class PropertyIsGreaterThan(BinaryComparisonOpType): """PropertyIsGreaterThan class""" def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsGreaterThan', propertyname, literal, matchcase) class PropertyIsLessThanOrEqualTo(BinaryComparisonOpType): """PropertyIsLessThanOrEqualTo class""" def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsLessThanOrEqualTo', propertyname, literal, matchcase) class PropertyIsGreaterThanOrEqualTo(BinaryComparisonOpType): """PropertyIsGreaterThanOrEqualTo class""" def __init__(self, propertyname, literal, matchcase=True): BinaryComparisonOpType.__init__(self, 'ogc:PropertyIsGreaterThanOrEqualTo', propertyname, literal, matchcase) class PropertyIsLike(OgcExpression): """PropertyIsLike class""" def __init__(self, propertyname, literal, escapeChar='\\', singleChar='_', wildCard='%', matchCase=True): self.propertyname = propertyname self.literal = literal self.escapeChar = escapeChar self.singleChar = singleChar self.wildCard = wildCard self.matchCase = matchCase def toXML(self): node0 = etree.Element(util.nspath_eval('ogc:PropertyIsLike', namespaces)) node0.set('wildCard', self.wildCard) node0.set('singleChar', self.singleChar) node0.set('escapeChar', self.escapeChar) if not self.matchCase: node0.set('matchCase', 'false') etree.SubElement(node0, util.nspath_eval('ogc:PropertyName', namespaces)).text = self.propertyname etree.SubElement(node0, util.nspath_eval('ogc:Literal', namespaces)).text = self.literal return node0 class PropertyIsNull(OgcExpression): """PropertyIsNull class""" def __init__(self, propertyname): self.propertyname = propertyname def toXML(self): node0 = etree.Element(util.nspath_eval('ogc:PropertyIsNull', namespaces)) etree.SubElement(node0, util.nspath_eval('ogc:PropertyName', namespaces)).text = self.propertyname return node0 class PropertyIsBetween(OgcExpression): """PropertyIsBetween class""" def __init__(self, propertyname, lower, upper): self.propertyname = propertyname self.lower = lower self.upper = upper def toXML(self): node0 = etree.Element(util.nspath_eval('ogc:PropertyIsBetween', namespaces)) etree.SubElement(node0, util.nspath_eval('ogc:PropertyName', namespaces)).text = self.propertyname node1 = etree.SubElement(node0, util.nspath_eval('ogc:LowerBoundary', namespaces)) etree.SubElement(node1, util.nspath_eval('ogc:Literal', namespaces)).text = '%s' % self.lower node2 = etree.SubElement(node0, util.nspath_eval('ogc:UpperBoundary', namespaces)) etree.SubElement(node2, util.nspath_eval('ogc:Literal', namespaces)).text = '%s' % self.upper return node0 class BBox(OgcExpression): """Construct a BBox, two pairs of coordinates (west-south and east-north)""" def __init__(self, bbox, crs=None): self.bbox = bbox self.crs = crs def toXML(self): tmp = etree.Element(util.nspath_eval('ogc:BBOX', namespaces)) etree.SubElement(tmp, util.nspath_eval('ogc:PropertyName', namespaces)).text = 'ows:BoundingBox' tmp2 = etree.SubElement(tmp, util.nspath_eval('gml:Envelope', namespaces)) if self.crs is not None: tmp2.set('srsName', self.crs) etree.SubElement(tmp2, util.nspath_eval('gml:lowerCorner', namespaces)).text = '%s %s' % (self.bbox[0], self.bbox[1]) etree.SubElement(tmp2, util.nspath_eval('gml:upperCorner', namespaces)).text = '%s %s' % (self.bbox[2], self.bbox[3]) return tmp # BINARY class BinaryLogicOpType(OgcExpression): """ Binary Operators: And / Or """ def __init__(self, binary_operator, operations): self.binary_operator = binary_operator try: assert len(operations) >= 2 self.operations = operations except: raise ValueError("Binary operations (And / Or) require a minimum of two operations to operate against") def toXML(self): node0 = etree.Element(util.nspath_eval(self.binary_operator, namespaces)) for op in self.operations: node0.append(op.toXML()) return node0 class And(BinaryLogicOpType): def __init__(self, operations): super(And,self).__init__('ogc:And', operations) class Or(BinaryLogicOpType): def __init__(self, operations): super(Or,self).__init__('ogc:Or', operations) # UNARY class UnaryLogicOpType(OgcExpression): """ Unary Operator: Not """ def __init__(self, urary_operator, operations): self.urary_operator = urary_operator self.operations = operations def toXML(self): node0 = etree.Element(util.nspath_eval(self.urary_operator, namespaces)) for op in self.operations: node0.append(op.toXML()) return node0 class Not(UnaryLogicOpType): def __init__(self, operations): super(Not,self).__init__('ogc:Not', operations) OWSLib-0.16.0/owslib/fgdc.py000066400000000000000000000243171321706412000154540ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2010 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ FGDC metadata parser """ from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib import util class Metadata(object): """ Process metadata """ def __init__(self, md): if hasattr(md, 'getroot'): # standalone document self.xml = etree.tostring(md.getroot()) else: # part of a larger document self.xml = etree.tostring(md) self.idinfo = Idinfo(md) self.eainfo = Eainfo(md) self.distinfo = Distinfo(md) self.metainfo = Metainfo(md) if self.idinfo.datasetid: self.identifier = self.idinfo.datasetid class Idinfo(object): """ Process idinfo """ def __init__(self, md): val = md.find('idinfo/datasetid') self.datasetid = util.testXMLValue(val) val = md.find('idinfo/citation') self.citation = Citation(val) val = md.find('idinfo/descript') if val is not None: self.descript = Descript(val) val = md.find('idinfo/timeperd') self.timeperd = Timeperd(val) val = md.find('idinfo/status') if val is not None: self.status = Status(val) val = md.find('idinfo/spdom') if val is not None: self.spdom = Spdom(val) val = md.find('idinfo/keywords') if val is not None: self.keywords = Keywords(val) val = md.find('idinfo/accconst') self.accconst = util.testXMLValue(val) val = md.find('idinfo/useconst') self.useconst = util.testXMLValue(val) val = md.find('idinfo/ptcontac') if val is not None: self.ptcontac = Ptcontac(val) val = md.find('idinfo/datacred') self.datacred = util.testXMLValue(val) val = md.find('idinfo/crossref') self.crossref = Citation(val) class Citation(object): """ Process citation """ def __init__(self, md): if md is not None: self.citeinfo = {} val = md.find('citeinfo/origin') self.citeinfo['origin'] = util.testXMLValue(val) val = md.find('citeinfo/pubdate') self.citeinfo['pubdate'] = util.testXMLValue(val) val = md.find('citeinfo/title') self.citeinfo['title'] = util.testXMLValue(val) val = md.find('citeinfo/geoform') self.citeinfo['geoform'] = util.testXMLValue(val) val = md.find('citeinfo/pubinfo/pubplace') self.citeinfo['pubplace'] = util.testXMLValue(val) val = md.find('citeinfo/pubinfo/publish') self.citeinfo['publish'] = util.testXMLValue(val) self.citeinfo['onlink'] = [] for link in md.findall('citeinfo/onlink'): self.citeinfo['onlink'].append(util.testXMLValue(link)) class Descript(object): """ Process descript """ def __init__(self, md): val = md.find('abstract') self.abstract = util.testXMLValue(val) val = md.find('purpose') self.purpose = util.testXMLValue(val) val = md.find('supplinf') self.supplinf = util.testXMLValue(val) class Timeperd(object): """ Process timeperd """ def __init__(self, md): if md is not None: val = md.find('current') self.current = util.testXMLValue(val) val = md.find('timeinfo') if val is not None: self.timeinfo = Timeinfo(val) class Timeinfo(object): """ Process timeinfo """ def __init__(self, md): val = md.find('sngdate') if val is not None: self.sngdate = Sngdate(val) val = md.find('rngdates') if val is not None: self.rngdates = Rngdates(val) class Sngdate(object): """ Process sngdate """ def __init__(self, md): val = md.find('caldate') self.caldate = util.testXMLValue(val) val = md.find('time') self.time = util.testXMLValue(val) class Rngdates(object): """ Process rngdates """ def __init__(self, md): val = md.find('begdate') self.begdate = util.testXMLValue(val) val = md.find('begtime') self.begtime = util.testXMLValue(val) val = md.find('enddate') self.enddate = util.testXMLValue(val) val = md.find('endtime') self.endtime = util.testXMLValue(val) class Status(object): """ Process status """ def __init__(self, md): val = md.find('progress') self.progress = util.testXMLValue(val) val = md.find('update') self.update = util.testXMLValue(val) class Spdom(object): """ Process spdom """ def __init__(self, md): val = md.find('bounding/westbc') self.westbc = util.testXMLValue(val) val = md.find('bounding/eastbc') self.eastbc = util.testXMLValue(val) val = md.find('bounding/northbc') self.northbc = util.testXMLValue(val) val = md.find('bounding/southbc') self.southbc = util.testXMLValue(val) if (self.southbc is not None and self.northbc is not None and self.eastbc is not None and self.westbc is not None): self.bbox = Bbox(self) class Bbox(object): """ Generate bbox for spdom (convenience function) """ def __init__(self, spdom): self.minx = spdom.westbc self.miny = spdom.southbc self.maxx = spdom.eastbc self.maxy = spdom.northbc class Keywords(object): """ Process keywords """ def __init__(self, md): self.theme = [] self.place = [] self.temporal = [] for i in md.findall('theme'): theme = {} val = i.find('themekt') theme['themekt'] = util.testXMLValue(val) theme['themekey'] = [] for j in i.findall('themekey'): themekey = util.testXMLValue(j) if themekey is not None: theme['themekey'].append(themekey) self.theme.append(theme) for i in md.findall('place'): theme = {} place = {} val = i.find('placekt') theme['placekt'] = util.testXMLValue(val) theme['placekey'] = [] for j in i.findall('placekey'): theme['placekey'].append(util.testXMLValue(j)) self.place.append(place) for i in md.findall('temporal'): theme = {} temporal = {} val = i.find('tempkt') theme['tempkt'] = util.testXMLValue(val) theme['tempkey'] = [] for j in i.findall('tempkey'): theme['tempkey'].append(util.testXMLValue(j)) self.temporal.append(temporal) class Ptcontac(object): """ Process ptcontac """ def __init__(self, md): val = md.find('cntinfo/cntorgp/cntorg') self.cntorg = util.testXMLValue(val) val = md.find('cntinfo/cntorgp/cntper') self.cntper = util.testXMLValue(val) val = md.find('cntinfo/cntpos') self.cntpos = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/addrtype') self.addrtype = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/address') self.address = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/city') self.city = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/state') self.state = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/postal') self.postal = util.testXMLValue(val) val = md.find('cntinfo/cntaddr/country') self.country = util.testXMLValue(val) val = md.find('cntinfo/cntvoice') self.voice = util.testXMLValue(val) val = md.find('cntinfo/cntemail') self.email = util.testXMLValue(val) class Eainfo(object): """ Process eainfo """ def __init__(self, md): val = md.find('eainfo/detailed/enttyp/enttypl') self.enttypl = util.testXMLValue(val) val = md.find('eainfo/detailed/enttyp/enttypd') self.enttypd = util.testXMLValue(val) val = md.find('eainfo/detailed/enttyp/enttypds') self.enttypds = util.testXMLValue(val) self.attr = [] for i in md.findall('eainfo/detailed/attr'): attr = {} val = i.find('attrlabl') attr['attrlabl'] = util.testXMLValue(val) val = i.find('attrdef') attr['attrdef'] = util.testXMLValue(val) val = i.find('attrdefs') attr['attrdefs'] = util.testXMLValue(val) val = i.find('attrdomv/udom') attr['udom'] = util.testXMLValue(val) self.attr.append(attr) class Distinfo(object): """ Process distinfo """ def __init__(self, md): val = md.find('distinfo') if val is not None: val2 = val.find('stdorder') if val2 is not None: self.stdorder = {'digform': []} for link in val2.findall('digform'): digform = {} digform['name'] = util.testXMLValue(link.find('digtinfo/formname')) digform['url'] = util.testXMLValue(link.find('digtopt/onlinopt/computer/networka/networkr/')) self.stdorder['digform'].append(digform) class Metainfo(object): """ Process metainfo """ def __init__(self, md): val = md.find('metainfo/metd') self.metd = util.testXMLValue(val) val = md.find('metainfo/metrd') self.metrd = util.testXMLValue(val) val = md.find('metainfo/metc') if val is not None: self.metc = Ptcontac(val) val = md.find('metainfo/metstdn') self.metstdn = util.testXMLValue(val) val = md.find('metainfo/metstdv') self.metstdv = util.testXMLValue(val) val = md.find('metainfo/metac') self.metac = util.testXMLValue(val) val = md.find('metainfo/metuc') self.metuc = util.testXMLValue(val) OWSLib-0.16.0/owslib/gm03.py000066400000000000000000001142701321706412000153150ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2015 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """GM03 Core metadata parser http://www.geocat.ch/internet/geocat/en/home/documentation/gm03.html""" from __future__ import (absolute_import, division, print_function) from owslib import util from owslib.etree import etree from owslib.namespaces import Namespaces # default variables def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["gm03"]) ns[None] = n.get_namespace("gm03") return ns namespaces = get_namespaces() class _GenericObject(object): """GM03 generic object type""" def __init__(self, md): """constructor""" self.tid = None if md is not None: self.tid = md.attrib.get('TID') class _GenericObjectProperty(object): """GM03 generic object type""" def __init__(self, md): """constructor""" self.ref = None self.bid = None self.order_post = None if md is not None: self.ref = md.attrib.get('REF') self.bid = md.attrib.get('BID') self.order_pos = md.attrib.get('ORDER_POS') class PT_Group(object): """PT_Group parser""" def __init__(self, md): """constructor""" self.language = util.testXMLValue(md.find(util.nspath_eval('gm03:language', namespaces))) self.country = util.testXMLValue(md.find(util.nspath_eval('gm03:country', namespaces))) self.character_set_code = util.testXMLValue(md.find(util.nspath_eval('gm03:characterSetCode', namespaces))) self.plain_text = util.testXMLValue(md.find(util.nspath_eval('gm03:plainText', namespaces))) self.plain_url = util.testXMLValue(md.find(util.nspath_eval('gm03:plainURL', namespaces))) class PT_FreeText(object): """PT_FreeText parser""" def __init__(self, md): """constructor""" pt_groups = [] for pt_group in md.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.PT_FreeText/gm03:textGroup/gm03:GM03_2_1Core.Core.PT_Group', namespaces)): pt_groups.append(PT_Group(pt_group)) self.pt_group = pt_groups class PT_FreeURL(object): """PT_FreeURL parser""" def __init__(self, md): """constructor""" pt_groups = [] for pt_group in md.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.PT_FreeURL/gm03:URLGroup/gm03:GM03_2_1Core.Core.PT_URLGroup', namespaces)): pt_groups.append(PT_Group(pt_group)) self.pt_group = pt_groups class GM03(object): """TRANSFER parser""" def __init__(self, md): """constructor""" if hasattr(md, 'getroot'): # standalone document self.xml = etree.tostring(md.getroot()) else: # part of a larger document self.xml = etree.tostring(md) self.header = HeaderSection(md) self.data = DataSection(md) class HeaderSection(object): """HEADERSECTION parser""" def __init__(self, md): """constructor""" header = None header = md.find(util.nspath_eval('gm03:HEADERSECTION', namespaces)) if header is None: return None self.version = header.attrib.get('VERSION') self.sender = header.attrib.get('SENDER') self.models = [] for model in header.findall(util.nspath_eval('gm03:MODELS/gm03:MODEL', namespaces)): name = util.testXMLValue(model.find(util.nspath_eval('gm03:NAME', namespaces))) version = util.testXMLValue(model.find(util.nspath_eval('gm03:VERSION', namespaces))) uri = util.testXMLValue(model.find(util.nspath_eval('gm03:URI', namespaces))) model_dict = { 'name': name, 'version': version, 'uri': uri } self.models.append(model_dict) self.comment = util.testXMLValue(header.find(util.nspath_eval('gm03:COMMENT', namespaces))) class DataSection(object): """DATASECTION parser""" def __init__(self, md): """constructor""" section = None section = md.find(util.nspath_eval('gm03:DATASECTION', namespaces)) if section is None: return None mdata = section.find(util.nspath_eval('gm03:GM03_2_1Core.Core', namespaces)) if mdata is not None: self.core = Core(mdata) else: mdata = section.find(util.nspath_eval('gm03:GM03_2_1Comprehensive.Comprehensive', namespaces)) if mdata is not None: self.comprehensive = Comprehensive(mdata) class Core(object): """Core parser""" def __init__(self, md): """constructor""" self.bid = md.attrib.get('BID') val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.DQ_DataQuality', namespaces)) if val is not None: self.data_quality = DQ_DataQuality(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Authority', namespaces)) if val is not None: self.authority = _GenericObject(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_DigitalTransferOptions', namespaces)) if val is not None: self.digital_transfer_options = MD_DigitalTransferOptions(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Distribution', namespaces)) if val is not None: self.distribution = _GenericObject(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_ReferenceSystem', namespaces)) if val is not None: self.reference_system_identifier = MD_ReferenceSystem(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Thesaurus', namespaces)) if val is not None: self.thesaurus = MD_Thesaurus(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.SC_VerticalDatum', namespaces)) if val is not None: self.vertical_datum = SC_VerticalDatum(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_Address', namespaces)) if val is not None: self.address = CI_Address(val) self.date = [] for cid in md.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_Date', namespaces)): self.date.append(CI_Date(cid)) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_Telephone', namespaces)) if val is not None: self.telephone = CI_Telephone(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.DQ_Scope', namespaces)) if val is not None: self.scope = DQ_Scope(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_VerticalExtent', namespaces)) if val is not None: self.vertical_extent = EX_VerticalExtent(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Format', namespaces)) if val is not None: self.format = MD_Format(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Metadata', namespaces)) if val is not None: self.metadata = MD_Metadata(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_RepresentativeFraction', namespaces)) if val is not None: self.representative_fraction = MD_RepresentativeFraction(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Resolution', namespaces)) if val is not None: self.resolution = MD_Resolution(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_BoundingPolygon', namespaces)) if val is not None: self.bounding_polygon = EX_BoundingPolygon(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_GeographicBoundingBox', namespaces)) if val is not None: self.geographic_bounding_box = EX_GeographicBoundingBox(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_GeographicDescription', namespaces)) if val is not None: self.geographic_description = EX_GeographicDescription(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_TemporalExtent', namespaces)) if val is not None: self.temporal_extent = EX_TemporalExtent(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_DistributiondistributionFormat', namespaces)) if val is not None: self.distribution_distribution_format = MD_DistributiondistributionFormat(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.referenceSystemInfoMD_Metadata', namespaces)) if val is not None: self.reference_system_metadata = referenceSystemInfoMD_Metadata(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_Citation', namespaces)) if val is None: val = md.find(util.nspath_eval('gm03:GM03_2_1Comprehensive.Comprehensive.CI_Citation', namespaces)) if val is not None: self.citation = CI_Citation(val) else: self.citation = CI_Citation(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_Contact', namespaces)) if val is not None: self.contact = CI_Contact(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_OnlineResource', namespaces)) if val is not None: self.online_resource = CI_OnlineResource(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_ResponsibleParty', namespaces)) if val is not None: self.responsible_party = CI_ResponsibleParty(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_Extent', namespaces)) if val is not None: self.extent = EX_Extent(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_SpatialTemporalExtent', namespaces)) if val is not None: self.spatial_temporal_extent = EX_Extent(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.LI_Lineage', namespaces)) if val is not None: self.lineage = LI_Lineage(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Identifier', namespaces)) if val is not None: self.identifier = MD_Identifier(val) self.keywords = [] for kw in md.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Keywords', namespaces)): self.keywords.append(MD_Keywords(kw)) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_DataIdentification', namespaces)) if val is None: val = md.find(util.nspath_eval('gm03:GM03_2_1Comprehensive.Comprehensive.MD_DataIdentification', namespaces)) if val is not None: self.data_identification = MD_DataIdentification(val) else: self.data_identification = MD_DataIdentification(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.RS_Identifier', namespaces)) if val is not None: self.rs_identifier = RS_Identifier(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_ResponsiblePartyparentinfo', namespaces)) if val is not None: self.responsible_party_parent_info = CI_ResponsiblePartyparentinfo(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.descriptiveKeywordsMD_Identification', namespaces)) if val is not None: self.descriptive_keywords_identification = descriptiveKeywordsMD_Identification(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_ExtentgeographicElement', namespaces)) if val is not None: self.extent_geographic_element = EX_ExtentgeographicElement(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_ExtenttemporalElement', namespaces)) if val is not None: self.extent_temporal_element = EX_ExtenttemporalElement(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.EX_ExtentverticalElement', namespaces)) if val is not None: self.extent_vertical_element = EX_ExtenttemporalElement(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_IdentificationpointOfContact', namespaces)) if val is not None: self.identification_point_of_contact = MD_IdentificationpointOfContact(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_Metadatacontact', namespaces)) if val is not None: self.metadata_point_of_contact = MD_Metadatacontact(val) val = md.find(util.nspath_eval('gm03:GM03_2_1Core.Core.spatialExtentEX_SpatialTemporalExtent', namespaces)) if val is not None: self.self.spatial_temporal_extent = spatialExtentEX_SpatialTemporalExtent(val) @property def elements(self): """helper function to return all properties""" dict_elements = vars(self) if 'bid' in dict_elements: del dict_elements['bid'] return dict_elements def get_element_by_tid(self, tid): """helper function to find values by reference""" for key, value in self.elements.items(): if hasattr(value, 'tid') and value.tid == tid: return self.elements[key] return None class DQ_DataQuality(_GenericObject): """DQ_DataQuality parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:MD_Metadata', namespaces)) self.metadata = _GenericObjectProperty(val) class MD_Authority(_GenericObject): """MD_Authority parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) class MD_ReferenceSystem(_GenericObject): """MD_ReferenceSystem parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:referenceSystemIdentifier', namespaces)) self.reference_system_identifier = _GenericObjectProperty(val) class MD_DigitalTransferOptions(_GenericObject): """MD_DigitalTransferOptions parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:MD_Distribution', namespaces)) self.distribution = _GenericObjectProperty(val) class MD_Thesaurus(_GenericObject): """MD_Thesaurus parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:citation', namespaces)) self.citation = _GenericObjectProperty(val) class SC_VerticalDatum(_GenericObject): """SC_VerticalDatum parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:datumID', namespaces)) self.datum_id = _GenericObjectProperty(val) class CI_Address(_GenericObject): """CI_Address parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.street_name = util.testXMLValue(md.find(util.nspath_eval('gm03:streetName', namespaces))) self.street_number = util.testXMLValue(md.find(util.nspath_eval('gm03:streetNumber', namespaces))) self.address_line = util.testXMLValue(md.find(util.nspath_eval('gm03:addressLine', namespaces))) self.post_box = util.testXMLValue(md.find(util.nspath_eval('gm03:postBox', namespaces))) self.postal_code = util.testXMLValue(md.find(util.nspath_eval('gm03:postalCode', namespaces))) self.city = util.testXMLValue(md.find(util.nspath_eval('gm03:city', namespaces))) self.administrative_area = util.testXMLValue(md.find(util.nspath_eval('gm03:administrativeArea', namespaces))) self.country = util.testXMLValue(md.find(util.nspath_eval('gm03:country', namespaces))) class CI_Date(_GenericObject): """CI_Date parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.date = util.testXMLValue(md.find(util.nspath_eval('gm03:date', namespaces))) self.date_type = util.testXMLValue(md.find(util.nspath_eval('gm03:dateType', namespaces))) val = md.find(util.nspath_eval('gm03:CI_Citation', namespaces)) self.citation = _GenericObjectProperty(val) class CI_Telephone(_GenericObject): """CI_Telephone parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.number = util.testXMLValue(md.find(util.nspath_eval('gm03:number', namespaces))) self.number_type = util.testXMLValue(md.find(util.nspath_eval('gm03:numberType', namespaces))) val = md.find(util.nspath_eval('gm03:CI_ResponsibleParty', namespaces)) self.responsible_party = _GenericObjectProperty(val) class DQ_Scope(_GenericObject): """DQ_Scope parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.level = util.testXMLValue(md.find(util.nspath_eval('gm03:level', namespaces))) val = md.find(util.nspath_eval('gm03:DQ_DataQuality', namespaces)) self.data_quality = _GenericObjectProperty(val) class EX_VerticalExtent(_GenericObject): """EX_VerticalExtent parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.minimum_value = util.testXMLValue(md.find(util.nspath_eval('gm03:minimumValue', namespaces))) self.maximum_value = util.testXMLValue(md.find(util.nspath_eval('gm03:maximumValue', namespaces))) self.unit_of_measure = util.testXMLValue(md.find(util.nspath_eval('gm03:unitOfMeasure', namespaces))) val = md.find(util.nspath_eval('gm03:verticalDatum', namespaces)) self.vertical_datum = _GenericObjectProperty(val) class MD_Format(_GenericObject): """MD_Format parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.name = util.testXMLValue(md.find(util.nspath_eval('gm03:name', namespaces))) self.version = util.testXMLValue(md.find(util.nspath_eval('gm03:version', versionspaces))) class MD_Metadata(_GenericObject): """MD_Metadata parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.file_identifier = util.testXMLValue(md.find(util.nspath_eval('gm03:fileIdentifier', namespaces))) self.language = util.testXMLValue(md.find(util.nspath_eval('gm03:language', namespaces))) self.character_set = util.testXMLValue(md.find(util.nspath_eval('gm03:characterSet', namespaces))) self.date_stamp = util.testXMLValue(md.find(util.nspath_eval('gm03:dateStamp', namespaces))) self.metadata_standard_name = util.testXMLValue(md.find(util.nspath_eval('gm03:metadataStandardName', namespaces))) self.metadata_standard_version = util.testXMLValue(md.find(util.nspath_eval('gm03:metadataStandardVersion', namespaces))) self.dataset_uri = util.testXMLValue(md.find(util.nspath_eval('gm03:dataSetURI', namespaces))) val = md.find(util.nspath_eval('gm03:hierarchyLevel', namespaces)) if val is not None: values = [] for value in val.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_ScopeCode_/gm03:value', namespaces)): values.append(util.testXMLValue(value)) self.hierarchy_level = values val = md.find(util.nspath_eval('gm03:hierarchyLevelName', namespaces)) if val is not None: values = [] for value in val.findall(util.nspath_eval('gm03:GM03_2_1Core.Core.CharacterString_/gm03:value', namespaces)): values.append(util.testXMLValue(value)) self.hierarchy_level_name = values val = md.find(util.nspath_eval('gm03:distributionInfo', namespaces)) self.distribution_info = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:parentIdentifier', namespaces)) self.parent_identifier = _GenericObjectProperty(val) class MD_RepresentativeFraction(_GenericObject): """MD_RepresentativeFraction parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.denominator = util.testXMLValue(md.find(util.nspath_eval('gm03:denominator', namespaces))) class MD_Resolution(_GenericObject): """MD_Resolution parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.distance = util.testXMLValue(md.find(util.nspath_eval('gm03:distance', namespaces))) val = md.find(util.nspath_eval('gm03:MD_DataIdentification', namespaces)) self.data_identification = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:equivalentScale', namespaces)) self.equivalent_scale = _GenericObjectProperty(val) class MD_ScopeDescription(_GenericObject): """MD_ScopeDescription parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.attributes = util.testXMLValue(md.find(util.nspath_eval('gm03:attributes', namespaces))) self.features = util.testXMLValue(md.find(util.nspath_eval('gm03:features', namespaces))) self.feature_instances = util.testXMLValue(md.find(util.nspath_eval('gm03:featureInstances', namespaces))) self.attribute_instances = util.testXMLValue(md.find(util.nspath_eval('gm03:attributeInstances', namespaces))) self.dataset = util.testXMLValue(md.find(util.nspath_eval('gm03:dataset', namespaces))) self.other = util.testXMLValue(md.find(util.nspath_eval('gm03:other', namespaces))) val = md.find(util.nspath_eval('gm03:DQ_Scope', namespaces)) self.scope = _GenericObjectProperty(val) class EX_BoundingPolygon(_GenericObject): """EX_BoundingPolygon parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.extent_type_code = util.testXMLValue(md.find(util.nspath_eval('gm03:extentTypeCode', namespaces))) boundaries = [] for boundary in md.findall(util.nspath_eval('gm03:SURFACE/gm03:BOUNDARY', namespaces)): polylines = [] for polyline in boundary.findall(util.nspath_eval('gm03:POLYLINE', namespaces)): coords = [] arcs = [] for coord in polyline.findall(util.nspath_eval('gm03:COORD', namespaces)): c1 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C1', namespaces))) c2 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C2', namespaces))) c3 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C3', namespaces))) coordvalue = {'c1': c1, 'c2': c2, 'c3': c3} coords.append(coordvalue) for arc in polyline.findall(util.nspath_eval('gm03:ARC', namespaces)): c1 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C1', namespaces))) c2 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C2', namespaces))) c3 = util.testXMLValue(coord.find(util.nspath_eval('gm03:C3', namespaces))) a1 = util.testXMLValue(coord.find(util.nspath_eval('gm03:A1', namespaces))) a2 = util.testXMLValue(coord.find(util.nspath_eval('gm03:A2', namespaces))) r = util.testXMLValue(coord.find(util.nspath_eval('gm03:R', namespaces))) arcpoint = {'c1': c1, 'c2': c2, 'c3': c3, 'a1': a1, 'a2': a2, 'r': r} arcs.append(arcpoint) polylines.append(coords) polylines.append(arcs) boundaries.append(polylines) self.boundary = boundaries class EX_GeographicBoundingBox(_GenericObject): """EX_GeographicBoundingBox parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.extent_type_code = util.testXMLValue(md.find(util.nspath_eval('gm03:extentTypeCode', namespaces))) self.north_bound_latitude = util.testXMLValue(md.find(util.nspath_eval('gm03:northBoundLatitude', namespaces))) self.south_bound_latitude = util.testXMLValue(md.find(util.nspath_eval('gm03:southBoundLatitude', namespaces))) self.east_bound_longitude = util.testXMLValue(md.find(util.nspath_eval('gm03:eastBoundLongitude', namespaces))) self.west_bound_longitude = util.testXMLValue(md.find(util.nspath_eval('gm03:westBoundLongitude', namespaces))) class EX_GeographicDescription(_GenericObject): """EX_GeographicDescription parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.extent_type_code = util.testXMLValue(md.find(util.nspath_eval('gm03:extentTypeCode', namespaces))) val = md.find(util.nspath_eval('gm03:geographicIdentifier', namespaces)) self.geographic_identifier = _GenericObjectProperty(val) class EX_TemporalExtent(_GenericObject): """EX_TemporalExtent parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) begin = util.testXMLValue(md.find(util.nspath_eval('gm03:extent/gm03:GM03_2_1Core.Core.TM_Primitive/begin', namespaces))) end = util.testXMLValue(md.find(util.nspath_eval('gm03:extent/gm03:GM03_2_1Core.Core.TM_Primitive/end', namespaces))) self.extent = {'begin': begin, 'end': end} class MD_DistributiondistributionFormat(object): """MD_DistributiondistributionFormat parser""" def __init__(self, md): """constructor""" val = md.find(util.nspath_eval('gm03:MD_Distribution', namespaces)) self.distribution = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:distributionFormat', namespaces)) self.distribution_format = _GenericObjectProperty(val) class referenceSystemInfoMD_Metadata(object): """referenceSystemInfoMD_Metadata parser""" def __init__(self, md): """constructor""" val = md.find(util.nspath_eval('gm03:referenceSystemInfo', namespaces)) self.reference_system_info = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:MD_Metadata', namespaces)) self.metadata = _GenericObjectProperty(val) class CI_Citation(_GenericObject): """CI_Citation parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:title', namespaces)) if val is not None: self.title = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:MD_Authority', namespaces)) self.authority = _GenericObjectProperty(val) class CI_Contact(_GenericObject): """CI_Contact parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.hours_of_service = util.testXMLValue(md.find(util.nspath_eval('gm03:hoursOfService', namespaces))) val = md.find(util.nspath_eval('gm03:contactInstructions', namespaces)) if val is not None: self.contact_instructions = PT_FreeText(val) class CI_OnlineResource(_GenericObject): """CI_OnlineResource parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.protocol = util.testXMLValue(md.find(util.nspath_eval('gm03:protocol', namespaces))) self.application_profile = util.testXMLValue(md.find(util.nspath_eval('gm03:applicationProfile', namespaces))) self.function = util.testXMLValue(md.find(util.nspath_eval('gm03:function', namespaces))) val = md.find(util.nspath_eval('gm03:description', namespaces)) if val is not None: self.description = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:name', namespaces)) if val is not None: self.name = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:linkage', namespaces)) if val is not None: self.linkage = PT_FreeURL(val) val = md.find(util.nspath_eval('gm03:MD_DigitalTransferOptions', namespaces)) self.digital_transfer_options = _GenericObjectProperty(val) class CI_ResponsibleParty(_GenericObject): """CI_ResponsibleParty parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.individual_first_name = util.testXMLValue(md.find(util.nspath_eval('gm03:individualFirstName', namespaces))) self.individual_last_name = util.testXMLValue(md.find(util.nspath_eval('gm03:individualLastName', namespaces))) val = md.find(util.nspath_eval('gm03:electronicalMailAddress', namespaces)) if val is not None: self.electronical_mail_address = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.URL_/gm03:value', namespaces))) val = md.find(util.nspath_eval('gm03:organisationName', namespaces)) if val is not None: self.organisation_name = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:positionName', namespaces)) if val is not None: self.position_name = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:organisationAcronym', namespaces)) if val is not None: self.organisation_acronym = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:linkage', namespaces)) if val is not None: self.linkage = PT_FreeURL(val) val = md.find(util.nspath_eval('gm03:address', namespaces)) self.address = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:contactInfo', namespaces)) self.contact_info = _GenericObjectProperty(val) class EX_Extent(_GenericObject): """EX_Extent parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:description', namespaces)) if val is not None: self.description = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:MD_DataIdentification', namespaces)) self.data_identification = _GenericObjectProperty(val) class EX_SpatialTemporalExtent(EX_TemporalExtent): """EX_SpatialTemporalExtent parser""" def __init__(self, md): """constructor""" EX_TemporalExtent.__init__(self, md) class LI_Lineage(_GenericObject): """LI_Lineage parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:statement', namespaces)) if val is not None: self.statement = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:DQ_DataQuality', namespaces)) self.data_quality = _GenericObjectProperty(val) class MD_Identifier(_GenericObject): """MD_Identifier parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:code', namespaces)) if val is not None: self.code = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:MD_Authority', namespaces)) self.authority = _GenericObjectProperty(val) class MD_Keywords(_GenericObject): """MD_Keywords parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) self.type = util.testXMLValue(md.find(util.nspath_eval('gm03:type', namespaces))) val = md.find(util.nspath_eval('gm03:keyword', namespaces)) if val is not None: self.keyword = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:thesaurus', namespaces)) self.thesaurus = _GenericObjectProperty(val) class MD_DataIdentification(_GenericObject): """MD_DataIdentification parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:status', namespaces)) if val is not None: self.status = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_ProgressCode_/gm03:value', namespaces))) val = md.find(util.nspath_eval('gm03:abstract', namespaces)) if val is not None: self.abstract = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:purpose', namespaces)) if val is not None: self.purpose = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:MD_Metadata', namespaces)) self.metadata = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:citation', namespaces)) self.citation = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:spatialRepresentationType', namespaces)) if val is not None: self.spatial_representation_type = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_SpatialRepresentationTypeCode_/gm03:value', namespaces))) val = md.find(util.nspath_eval('gm03:language', namespaces)) if val is not None: self.language = util.testXMLValue(val.find(util.nspath_eval('gm03:CodeISO.LanguageCodeISO_/gm03:value', namespaces))) val = md.find(util.nspath_eval('gm03:characterSet', namespaces)) if val is not None: self.character_set = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_CharacterSetCode_/gm03:value', namespaces))) val = md.find(util.nspath_eval('gm03:topicCategory', namespaces)) if val is not None: self.topic_category = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.MD_TopicCategoryCode_/gm03:value', namespaces))) class RS_Identifier(_GenericObject): """RS_Identifier parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:code', namespaces)) if val is not None: self.code = PT_FreeText(val) val = md.find(util.nspath_eval('gm03:MD_Authority', namespaces)) self.authority = _GenericObjectProperty(val) class CI_ResponsiblePartyparentinfo(_GenericObject): """CI_ResponsiblePartyparentinfo parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:parentResponsibleParty', namespaces)) self.parent_responsible_party = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:CI_ResponsibleParty', namespaces)) self.responsible_party = _GenericObjectProperty(val) class descriptiveKeywordsMD_Identification(_GenericObject): """descriptiveKeywordsMD_Identification parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:descriptiveKeywords', namespaces)) self.descriptive_keywords = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:MD_Identification', namespaces)) self.identification = _GenericObjectProperty(val) class EX_ExtentgeographicElement(_GenericObject): """EX_ExtentgeographicElement parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:EX_Extent', namespaces)) self.extent = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:temporalElement', namespaces)) self.temporal_element = _GenericObjectProperty(val) class EX_ExtentverticalElement(_GenericObject): """EX_ExtentverticalElement parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:EX_Extent', namespaces)) self.extent = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:verticalElement', namespaces)) self.vertical_element = _GenericObjectProperty(val) class EX_ExtentgeographicElement(_GenericObject): """EX_ExtentgeographicElement parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:EX_Extent', namespaces)) self.extent = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:geographicElement', namespaces)) self.geographic_element = _GenericObjectProperty(val) class MD_IdentificationpointOfContact(_GenericObject): """MD_IdentificationpointOfContact parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:pointOfContact', namespaces)) self.point_of_contact = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:MD_Identification', namespaces)) self.identification = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:role', namespaces)) if val is not None: self.role = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_RoleCode_/gm03:value', namespaces))) class MD_Metadatacontact(_GenericObject): """MD_Metadatacontact parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:contact', namespaces)) self.contact = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:MD_Metadata', namespaces)) self.metadata = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:role', namespaces)) if val is not None: self.role = util.testXMLValue(val.find(util.nspath_eval('gm03:GM03_2_1Core.Core.CI_RoleCode_/gm03:value', namespaces))) class spatialExtentEX_SpatialTemporalExtent(_GenericObject): """spatialExtentEX_SpatialTemporalExtent parser""" def __init__(self, md): """constructor""" _GenericObject.__init__(self, md) val = md.find(util.nspath_eval('gm03:spatialExtent', namespaces)) self.spatial_extent = _GenericObjectProperty(val) val = md.find(util.nspath_eval('gm03:EX_SpatialTemporalExtent', namespaces)) self.spatial_temporal_extent = _GenericObjectProperty(val) class Comprehensive(Core): """Comprehensive parser""" def __init__(self, md): """constructor""" Core.__init__(self, md) OWSLib-0.16.0/owslib/interfaces.py000066400000000000000000000136621321706412000166750ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) # Follows the 4 aspects of service metadata class IServiceIdentificationMetadata: """OO-interface to service identification metadata. """ type = property("""Service name (string): "WMS", "WFS", "WCS", or "SOS".""") version = property("""Version of service protocol (string).""") title = property("""Human-targeted title of service (string).""") abstract = property("""Text describing the service (string).""") keywords = property("""Keyword list (list).""") accessconstraints = property("""Explanation of access constraints associated with service (string).""") fees = property("""Explanation of fees associated with service (string).""") class IServiceProviderMetadata: """OO-interface to service provider metadata. """ name = property("""Provider's name (string).""") url = property("""URL for provider's web site (string).""") contact = property("""How to contact the service provider (string).""") class IServiceOperations: """OO-interface to service operations metadata. """ operations = property("""List of operation descriptors (list). These must implement IOperationMetadata (below).""") exceptions = property("""List of exception formats (list).""") class IServiceContents: """OO-interface to service contents metadata. """ contents = property("""List of content descriptors (list). These must implement IServiceContent (below).""") # IServiceMetadata aggregates the 4 aspects above class IServiceMetadata(IServiceOperations, IServiceContents): """OWS Metadata. operations and contents properties are inherited. """ identification = property("""Object that implements IServiceIdentificationMetadata.""") provider = property("""Object that implements IServiceProviderMetadata.""") # A Service has an online resource URL as well as metadata collections class IService(IServiceMetadata): """The OGC Web Service interface. """ url = property("""Online resource URL (string)""") # specific service types are described below: WMS, WFS, WCS, SOS and WPS class IWebMapService(IService): """Abstraction for an OGC Web Map Service (WMS). """ def getcapabilities(): """Make a request to the WMS, returns an XML document wrapped in a Python file object.""" def getmap(**kw): """Make a request to the WMS, returns an image wrapped in a Python file object.""" def getfeatureinfo(**kw): """Make a request to the WMS, returns data.""" class IWebFeatureService(IService): """Abstraction for an OGC Web Feature Service (WFS). """ def getcapabilities(): """Make a request to the WFS, returns an XML document wrapped in a Python file object.""" def getfeature(**kw): """Make a request to the WFS, returns an XML document wrapped in a Python file object.""" def describefeaturetype(**kw): """Make a request to the WFS, returns data.""" class IWebCoverageService(IService): # TODO pass class ISensorObservationService(IService): """Abstraction for an OGC Sensor Observation Service (SOS). """ def getcapabilities(): """Make a request to the SOS, returns an XML document wrapped in a Python file object.""" def describesensor(): """Make a request to the SOS, returns an XML document wrapped in a Python file object.""" def getobservation(): """Make a request to the SOS, returns an XML document wrapped in a Python file object.""" class IWebProcessingService(IService): """ Abstract interface for an OGC Web Processing Service (WPS). """ def getcapabilities(**kw): """ Makes a GetCapabilities request to the remote WPS server, returns an XML document wrapped in a python file-like object. """ def describeprocess(**kw): """ Makes a DescribeProcess request to the remote WPS server, returns a Process object containing all the process metadata. """ def execute(**kw): """ Submits an Execute request to the remote WPS server, returns a WPSExecution object, which can be used to monitor the status of the job, and ultimately retrieve the result. """ # Second level metadata interfaces class IOperationMetadata: """OO-interface to operation metadata. """ name = property("""Operation name (string): GetCapabilities", for example.""") formatOptions = property("""List of content types (list).""") methods = property("""Mapping of method descriptors, keyed to HTTP verbs. Items must implement IMethodMetadata (below).""") class IMethodMetadata: """OO-interface to method metadata. """ url = property("""Method endpoint URL (string).""") # TODO: constraint class IContentMetadata: """OO-interface to content metadata. """ id = property("""Unique identifier (string).""") title = property("""Human-targeted title (string).""") boundingBox = property("""Four bounding values and a coordinate reference system identifier (tuple).""") boundingBoxWGS84 = property("""Four bounding values in WGS coordinates.""") crsOptions = property("""List of available coordinate/spatial reference systems (list).""") styles = property("""List of style dicts (list).""") timepositions=property("""List of times for which data is available""") defaulttimeposition=property("""Default time position""") class iSensorObservationServiceContentMetadata(IContentMetadata): """Extension class for SOS specifics""" pass # XXX: needed? class IContactMetadata: """OO-interface to OWS metadata. Properties ---------- name : string organization : string address : string city : string region : string postcode : string country : string email : string hoursofservice: string role: string """ OWSLib-0.16.0/owslib/iso.py000066400000000000000000001422531321706412000153430ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # Angelos Tzotsos # # Contact email: tomkralidis@gmail.com # ============================================================================= """ ISO metadata parser """ from __future__ import (absolute_import, division, print_function) import warnings from owslib.etree import etree from owslib import util from owslib.namespaces import Namespaces # default variables def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["gco","gfc","gmd","gml","gml32","gmx","gts","srv","xlink"]) ns[None] = n.get_namespace("gmd") return ns namespaces = get_namespaces() class MD_Metadata(object): """ Process gmd:MD_Metadata """ def __init__(self, md=None): if md is None: self.xml = None self.identifier = None self.parentidentifier = None self.language = None self.dataseturi = None self.languagecode = None self.datestamp = None self.charset = None self.hierarchy = None self.contact = [] self.datetimestamp = None self.stdname = None self.stdver = None self.locales = [] self.referencesystem = None self.identification = None self.serviceidentification = None self.identificationinfo = [] self.contentinfo = [] self.distribution = None self.dataquality = None else: if hasattr(md, 'getroot'): # standalone document self.xml = etree.tostring(md.getroot()) else: # part of a larger document self.xml = etree.tostring(md) val = md.find(util.nspath_eval('gmd:fileIdentifier/gco:CharacterString', namespaces)) self.identifier = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:parentIdentifier/gco:CharacterString', namespaces)) self.parentidentifier = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:language/gco:CharacterString', namespaces)) self.language = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:dataSetURI/gco:CharacterString', namespaces)) self.dataseturi = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:language/gmd:LanguageCode', namespaces)) self.languagecode = util.testXMLAttribute(val, 'codeListValue') val = md.find(util.nspath_eval('gmd:dateStamp/gco:Date', namespaces)) self.datestamp = util.testXMLValue(val) if not self.datestamp: val = md.find(util.nspath_eval('gmd:dateStamp/gco:DateTime', namespaces)) self.datestamp = util.testXMLValue(val) self.charset = _testCodeListValue(md.find(util.nspath_eval('gmd:characterSet/gmd:MD_CharacterSetCode', namespaces))) self.hierarchy = _testCodeListValue(md.find(util.nspath_eval('gmd:hierarchyLevel/gmd:MD_ScopeCode', namespaces))) self.contact = [] for i in md.findall(util.nspath_eval('gmd:contact/gmd:CI_ResponsibleParty', namespaces)): o = CI_ResponsibleParty(i) self.contact.append(o) val = md.find(util.nspath_eval('gmd:dateStamp/gco:DateTime', namespaces)) self.datetimestamp = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:metadataStandardName/gco:CharacterString', namespaces)) self.stdname = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:metadataStandardVersion/gco:CharacterString', namespaces)) self.stdver = util.testXMLValue(val) self.locales = [] for i in md.findall(util.nspath_eval('gmd:locale/gmd:PT_Locale', namespaces)): self.locales.append(PT_Locale(i)) val = md.find(util.nspath_eval('gmd:referenceSystemInfo/gmd:MD_ReferenceSystem', namespaces)) if val is not None: self.referencesystem = MD_ReferenceSystem(val) else: self.referencesystem = None # TODO: merge .identificationinfo into .identification warnings.warn( 'the .identification and .serviceidentification properties will merge into ' '.identification being a list of properties. This is currently implemented ' 'in .identificationinfo. ' 'Please see https://github.com/geopython/OWSLib/issues/38 for more information', FutureWarning) val = md.find(util.nspath_eval('gmd:identificationInfo/gmd:MD_DataIdentification', namespaces)) val2 = md.find(util.nspath_eval('gmd:identificationInfo/srv:SV_ServiceIdentification', namespaces)) if val is not None: self.identification = MD_DataIdentification(val, 'dataset') self.serviceidentification = None elif val2 is not None: self.identification = MD_DataIdentification(val2, 'service') self.serviceidentification = SV_ServiceIdentification(val2) else: self.identification = None self.serviceidentification = None self.identificationinfo = [] for idinfo in md.findall(util.nspath_eval('gmd:identificationInfo', namespaces)): if len(idinfo) > 0: val = list(idinfo)[0] tagval = util.xmltag_split(val.tag) if tagval == 'MD_DataIdentification': self.identificationinfo.append(MD_DataIdentification(val, 'dataset')) elif tagval == 'MD_ServiceIdentification': self.identificationinfo.append(MD_DataIdentification(val, 'service')) elif tagval == 'SV_ServiceIdentification': self.identificationinfo.append(SV_ServiceIdentification(val)) self.contentinfo = [] for contentinfo in md.findall(util.nspath_eval('gmd:contentInfo/gmd:MD_FeatureCatalogueDescription', namespaces)): self.contentinfo.append(MD_FeatureCatalogueDescription(contentinfo)) val = md.find(util.nspath_eval('gmd:distributionInfo/gmd:MD_Distribution', namespaces)) if val is not None: self.distribution = MD_Distribution(val) else: self.distribution = None val = md.find(util.nspath_eval('gmd:dataQualityInfo/gmd:DQ_DataQuality', namespaces)) if val is not None: self.dataquality = DQ_DataQuality(val) else: self.dataquality = None def get_default_locale(self): """ get default gmd:PT_Locale based on gmd:language """ for loc in self.locales: if loc.languagecode == self.language: return loc return None class PT_Locale(object): """ process PT_Locale """ def __init__(self, md=None): if md is None: self.id = None self.languagecode = None self.charset = None else: self.id = md.attrib.get('id') self.languagecode = md.find(util.nspath_eval('gmd:languageCode/gmd:LanguageCode', namespaces)).attrib.get('codeListValue') self.charset = md.find(util.nspath_eval('gmd:characterEncoding/gmd:MD_CharacterSetCode', namespaces)).attrib.get('codeListValue') class CI_Date(object): """ process CI_Date """ def __init__(self, md=None): if md is None: self.date = None self.type = None else: val = md.find(util.nspath_eval('gmd:date/gco:Date', namespaces)) if val is not None: self.date = util.testXMLValue(val) else: val = md.find(util.nspath_eval('gmd:date/gco:DateTime', namespaces)) if val is not None: self.date = util.testXMLValue(val) else: self.date = None val = md.find(util.nspath_eval('gmd:dateType/gmd:CI_DateTypeCode', namespaces)) self.type = _testCodeListValue(val) class CI_ResponsibleParty(object): """ process CI_ResponsibleParty """ def __init__(self, md=None): if md is None: self.name = None self.organization = None self.position = None self.phone = None self.fax = None self.address = None self.city = None self.region = None self.postcode = None self.country = None self.email = None self.onlineresource = None self.role = None else: val = md.find(util.nspath_eval('gmd:individualName/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:organisationName/gco:CharacterString', namespaces)) self.organization = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:positionName/gco:CharacterString', namespaces)) self.position = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:phone/gmd:CI_Telephone/gmd:voice/gco:CharacterString', namespaces)) self.phone = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:phone/gmd:CI_Telephone/gmd:facsimile/gco:CharacterString', namespaces)) self.fax = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:deliveryPoint/gco:CharacterString', namespaces)) self.address = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:city/gco:CharacterString', namespaces)) self.city = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:administrativeArea/gco:CharacterString', namespaces)) self.region = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:postalCode/gco:CharacterString', namespaces)) self.postcode = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:country/gco:CharacterString', namespaces)) self.country = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/gmd:CI_Address/gmd:electronicMailAddress/gco:CharacterString', namespaces)) self.email = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:onlineResource/gmd:CI_OnlineResource', namespaces)) if val is not None: self.onlineresource = CI_OnlineResource(val) else: self.onlineresource = None self.role = _testCodeListValue(md.find(util.nspath_eval('gmd:role/gmd:CI_RoleCode', namespaces))) class MD_Keywords(object): """ Class for the metadata MD_Keywords element """ def __init__(self, md=None): if md is None: self.keywords = [] self.type = None self.thesaurus = None self.kwdtype_codeList = 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/gmxCodelists.xml#MD_KeywordTypeCode' else: self.keywords = [] val = md.findall(util.nspath_eval('gmd:keyword/gco:CharacterString', namespaces)) for word in val: self.keywords.append(util.testXMLValue(word)) self.type = None val = md.find(util.nspath_eval('gmd:type/gmd:MD_KeywordTypeCode', namespaces)) self.type = util.testXMLAttribute(val, 'codeListValue') self.thesaurus = None val = md.find(util.nspath_eval('gmd:thesaurusName/gmd:CI_Citation', namespaces)) if val is not None: self.thesaurus = {} thesaurus = val.find(util.nspath_eval('gmd:title/gco:CharacterString', namespaces)) self.thesaurus['title'] = util.testXMLValue(thesaurus) thesaurus = val.find(util.nspath_eval('gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)) self.thesaurus['date'] = util.testXMLValue(thesaurus) thesaurus = val.find(util.nspath_eval('gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)) self.thesaurus['datetype'] = util.testXMLAttribute(thesaurus, 'codeListValue') class MD_DataIdentification(object): """ process MD_DataIdentification """ def __init__(self, md=None, identtype=None): if md is None: self.identtype = None self.title = None self.alternatetitle = None self.aggregationinfo = None self.uricode = [] self.uricodespace = [] self.date = [] self.datetype = [] self.uselimitation = [] self.uselimitation_url = [] self.accessconstraints = [] self.classification = [] self.otherconstraints = [] self.securityconstraints = [] self.useconstraints = [] self.denominators = [] self.distance = [] self.uom = [] self.resourcelanguage = [] self.creator = [] self.publisher = [] self.contributor = [] self.edition = None self.abstract = None self.abstract_url = None self.purpose = None self.status = None self.contact = [] self.keywords = [] self.keywords2 = [] self.topiccategory = [] self.supplementalinformation = None self.extent = None self.bbox = None self.temporalextent_start = None self.temporalextent_end = None self.spatialrepresentationtype = [] else: self.identtype = identtype val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.title = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:alternateTitle/gco:CharacterString', namespaces)) self.alternatetitle = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:aggregationInfo', namespaces)) self.aggregationinfo = util.testXMLValue(val) self.uricode = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:RS_Identifier/gmd:code/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uricode.append(val) self.uricodespace = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:RS_Identifier/gmd:codeSpace/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uricodespace.append(val) self.date = [] self.datetype = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date', namespaces)): self.date.append(CI_Date(i)) self.uselimitation = [] self.uselimitation_url = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_Constraints/gmd:useLimitation/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uselimitation.append(val) for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_Constraints/gmd:useLimitation/gmx:Anchor', namespaces)): val = util.testXMLValue(i) val1 = i.attrib.get(util.nspath_eval('xlink:href', namespaces)) if val is not None: self.uselimitation.append(val) self.uselimitation_url.append(val1) self.accessconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:accessConstraints/gmd:MD_RestrictionCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.accessconstraints.append(val) self.classification = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:accessConstraints/gmd:MD_ClassificationCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.classification.append(val) self.otherconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:otherConstraints/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.otherconstraints.append(val) self.securityconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_SecurityConstraints/gmd:classification/gmd:MD_ClassificationCode', namespaces)): val = util.testXMLValue(i) if val is not None: self.securityconstraints.append(val) self.useconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:useConstraints/gmd:MD_RestrictionCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.useconstraints.append(val) self.denominators = [] for i in md.findall(util.nspath_eval('gmd:spatialResolution/gmd:MD_Resolution/gmd:equivalentScale/gmd:MD_RepresentativeFraction/gmd:denominator/gco:Integer', namespaces)): val = util.testXMLValue(i) if val is not None: self.denominators.append(val) self.distance = [] self.uom = [] for i in md.findall(util.nspath_eval('gmd:spatialResolution/gmd:MD_Resolution/gmd:distance/gco:Distance', namespaces)): val = util.testXMLValue(i) if val is not None: self.distance.append(val) self.uom.append(i.get("uom")) self.resourcelanguage = [] for i in md.findall(util.nspath_eval('gmd:language/gmd:LanguageCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.resourcelanguage.append(val) self.creator = [] self.publisher = [] self.contributor = [] for val in md.findall(util.nspath_eval('gmd:pointOfContact/gmd:CI_ResponsibleParty', namespaces)): role = val.find(util.nspath_eval('gmd:role/gmd:CI_RoleCode', namespaces)) if role is not None: clv = _testCodeListValue(role) rp = CI_ResponsibleParty(val) if clv == 'originator': self.creator.append(rp) elif clv == 'publisher': self.publisher.append(rp) elif clv == 'author': self.contributor.append(rp) val = md.find(util.nspath_eval('gmd:edition/gco:CharacterString', namespaces)) self.edition = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gco:CharacterString', namespaces)) self.abstract = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gmx:Anchor', namespaces)) if val is not None: self.abstract = util.testXMLValue(val) self.abstract_url = val.attrib.get(util.nspath_eval('xlink:href', namespaces)) val = md.find(util.nspath_eval('gmd:purpose/gco:CharacterString', namespaces)) self.purpose = util.testXMLValue(val) self.status = _testCodeListValue(md.find(util.nspath_eval('gmd:status/gmd:MD_ProgressCode', namespaces))) self.contact = [] for i in md.findall(util.nspath_eval('gmd:pointOfContact/gmd:CI_ResponsibleParty', namespaces)): o = CI_ResponsibleParty(i) self.contact.append(o) self.spatialrepresentationtype = [] for val in md.findall(util.nspath_eval('gmd:spatialRepresentationType/gmd:MD_SpatialRepresentationTypeCode', namespaces)): val = util.testXMLAttribute(val, 'codeListValue') if val: self.spatialrepresentationtype.append(val) warnings.warn( 'The .keywords and .keywords2 properties will merge into the ' '.keywords property in the future, with .keywords becoming a list ' 'of MD_Keywords instances. This is currently implemented in .keywords2. ' 'Please see https://github.com/geopython/OWSLib/issues/301 for more information', FutureWarning) self.keywords = [] for i in md.findall(util.nspath_eval('gmd:descriptiveKeywords', namespaces)): mdkw = {} mdkw['type'] = _testCodeListValue(i.find(util.nspath_eval('gmd:MD_Keywords/gmd:type/gmd:MD_KeywordTypeCode', namespaces))) mdkw['thesaurus'] = {} val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) mdkw['thesaurus']['title'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)) mdkw['thesaurus']['date'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)) mdkw['thesaurus']['datetype'] = util.testXMLValue(val) mdkw['keywords'] = [] for k in i.findall(util.nspath_eval('gmd:MD_Keywords/gmd:keyword', namespaces)): val = k.find(util.nspath_eval('gco:CharacterString', namespaces)) if val is not None: val2 = util.testXMLValue(val) if val2 is not None: mdkw['keywords'].append(val2) self.keywords.append(mdkw) self.keywords2 = [] for mdkw in md.findall(util.nspath_eval('gmd:descriptiveKeywords/gmd:MD_Keywords', namespaces)): self.keywords2.append(MD_Keywords(mdkw)) self.topiccategory = [] for i in md.findall(util.nspath_eval('gmd:topicCategory/gmd:MD_TopicCategoryCode', namespaces)): val = util.testXMLValue(i) if val is not None: self.topiccategory.append(val) val = md.find(util.nspath_eval('gmd:supplementalInformation/gco:CharacterString', namespaces)) self.supplementalinformation = util.testXMLValue(val) # There may be multiple geographicElement, create an extent # from the one containing either an EX_GeographicBoundingBox or EX_BoundingPolygon. # The schema also specifies an EX_GeographicDescription. This is not implemented yet. val = None val2 = None val3 = None extents = md.findall(util.nspath_eval('gmd:extent', namespaces)) extents.extend(md.findall(util.nspath_eval('srv:extent', namespaces))) for extent in extents: if val is None: for e in extent.findall(util.nspath_eval('gmd:EX_Extent/gmd:geographicElement', namespaces)): if e.find(util.nspath_eval('gmd:EX_GeographicBoundingBox', namespaces)) is not None or e.find(util.nspath_eval('gmd:EX_BoundingPolygon', namespaces)) is not None: val = e break self.extent = EX_Extent(val) self.bbox = self.extent.boundingBox # for backwards compatibility if val2 is None: val2 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:beginPosition', namespaces)) if val2 is None: val2 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml32:TimePeriod/gml32:beginPosition', namespaces)) self.temporalextent_start = util.testXMLValue(val2) if val3 is None: val3 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:endPosition', namespaces)) if val3 is None: val3 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml32:TimePeriod/gml32:endPosition', namespaces)) self.temporalextent_end = util.testXMLValue(val3) class MD_Distributor(object): """ process MD_Distributor """ def __init__(self, md=None): if md is None: self.contact = None self.online = [] else: self.contact = None val = md.find(util.nspath_eval('gmd:MD_Distributor/gmd:distributorContact/gmd:CI_ResponsibleParty', namespaces)) if val is not None: self.contact = CI_ResponsibleParty(val) self.online = [] for ol in md.findall(util.nspath_eval('gmd:MD_Distributor/gmd:distributorTransferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource', namespaces)): self.online.append(CI_OnlineResource(ol)) class MD_Distribution(object): """ process MD_Distribution """ def __init__(self, md=None): if md is None: self.format = None self.version = None self.distributor = [] self.online = [] pass else: val = md.find(util.nspath_eval('gmd:distributionFormat/gmd:MD_Format/gmd:name/gco:CharacterString', namespaces)) self.format = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:distributionFormat/gmd:MD_Format/gmd:version/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) self.distributor = [] for dist in md.findall(util.nspath_eval('gmd:distributor', namespaces)): self.distributor.append(MD_Distributor(dist)) self.online = [] for ol in md.findall(util.nspath_eval('gmd:transferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource', namespaces)): self.online.append(CI_OnlineResource(ol)) class DQ_DataQuality(object): ''' process DQ_DataQuality''' def __init__(self, md=None): if md is None: self.conformancetitle = [] self.conformancedate = [] self.conformancedatetype = [] self.conformancedegree = [] self.lineage = None self.lineage_url = None self.specificationtitle = None self.specificationdate = [] else: self.conformancetitle = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancetitle.append(val) self.conformancedate = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancedate.append(val) self.conformancedatetype = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.conformancedatetype.append(val) self.conformancedegree = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:pass/gco:Boolean', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancedegree.append(val) val = md.find(util.nspath_eval('gmd:lineage/gmd:LI_Lineage/gmd:statement/gco:CharacterString', namespaces)) self.lineage = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:lineage/gmd:LI_Lineage/gmd:statement/gmx:Anchor', namespaces)) if val is not None: self.lineage = util.testXMLValue(val) self.lineage_url = val.attrib.get(util.nspath_eval('xlink:href', namespaces)) val = md.find(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.specificationtitle = util.testXMLValue(val) self.specificationdate = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date', namespaces)): val = util.testXMLValue(i) if val is not None: self.specificationdate.append(val) class SV_ServiceIdentification(object): """ process SV_ServiceIdentification """ def __init__(self, md=None): if md is None: self.title = None self.abstract = None self.contact = None self.identtype = 'service' self.type = None self.version = None self.fees = None self.bbox = None self.couplingtype = None self.operations = [] self.operateson = [] else: val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.title=util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gco:CharacterString', namespaces)) self.abstract = util.testXMLValue(val) self.contact = None val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/gmd:CI_ResponsibleParty', namespaces)) if val is not None: self.contact = CI_ResponsibleParty(val) self.identtype = 'service' val = md.find(util.nspath_eval('srv:serviceType/gco:LocalName', namespaces)) self.type = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:serviceTypeVersion/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:accessProperties/gmd:MD_StandardOrderProcess/gmd:fees/gco:CharacterString', namespaces)) self.fees = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:extent/gmd:EX_Extent', namespaces)) if val is not None: self.bbox = EX_Extent(val) else: self.bbox = None self.couplingtype = _testCodeListValue(md.find(util.nspath_eval('gmd:couplingType/gmd:SV_CouplingType', namespaces))) self.operations = [] for i in md.findall(util.nspath_eval('srv:containsOperations', namespaces)): tmp = {} val = i.find(util.nspath_eval('srv:SV_OperationMetadata/srv:operationName/gco:CharacterString', namespaces)) tmp['name'] = util.testXMLValue(val) tmp['dcplist'] = [] for d in i.findall(util.nspath_eval('srv:SV_OperationMetadata/srv:DCP', namespaces)): tmp2 = _testCodeListValue(d.find(util.nspath_eval('srv:DCPList', namespaces))) tmp['dcplist'].append(tmp2) tmp['connectpoint'] = [] for d in i.findall(util.nspath_eval('srv:SV_OperationMetadata/srv:connectPoint', namespaces)): tmp3 = d.find(util.nspath_eval('gmd:CI_OnlineResource', namespaces)) tmp['connectpoint'].append(CI_OnlineResource(tmp3)) self.operations.append(tmp) self.operateson = [] for i in md.findall(util.nspath_eval('srv:operatesOn', namespaces)): tmp = {} tmp['uuidref'] = i.attrib.get('uuidref') tmp['href'] = i.attrib.get(util.nspath_eval('xlink:href', namespaces)) tmp['title'] = i.attrib.get(util.nspath_eval('xlink:title', namespaces)) self.operateson.append(tmp) class CI_OnlineResource(object): """ process CI_OnlineResource """ def __init__(self,md=None): if md is None: self.url = None self.protocol = None self.name = None self.description = None self.function = None else: val = md.find(util.nspath_eval('gmd:linkage/gmd:URL', namespaces)) self.url = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:protocol/gco:CharacterString', namespaces)) self.protocol = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:name/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:description/gco:CharacterString', namespaces)) self.description = util.testXMLValue(val) self.function = _testCodeListValue(md.find(util.nspath_eval('gmd:function/gmd:CI_OnLineFunctionCode', namespaces))) class EX_GeographicBoundingBox(object): def __init__(self, md=None): if md is None: self.minx = None self.maxx = None self.miny = None self.maxy = None else: val = md.find(util.nspath_eval('gmd:westBoundLongitude/gco:Decimal', namespaces)) self.minx = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:eastBoundLongitude/gco:Decimal', namespaces)) self.maxx = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:southBoundLatitude/gco:Decimal', namespaces)) self.miny = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:northBoundLatitude/gco:Decimal', namespaces)) self.maxy = util.testXMLValue(val) class EX_Polygon(object): def __init__(self, md=None): if md is None: self.exterior_ring = None self.interior_rings = [] else: linear_ring = md.find(util.nspath_eval('gml32:Polygon/gml32:exterior/gml32:LinearRing', namespaces)) if linear_ring is not None: self.exterior_ring = self._coordinates_for_ring(linear_ring) interior_ring_elements = md.findall(util.nspath_eval('gml32:Polygon/gml32:interior', namespaces)) self.interior_rings = [] for iring_element in interior_ring_elements: linear_ring = iring_element.find(util.nspath_eval('gml32:LinearRing', namespaces)) self.interior_rings.append(self._coordinates_for_ring(linear_ring)) def _coordinates_for_ring(self, linear_ring): coordinates = [] positions = linear_ring.findall(util.nspath_eval('gml32:pos', namespaces)) for pos in positions: tokens = pos.text.split() coords = tuple([float(t) for t in tokens]) coordinates.append(coords) return coordinates class EX_GeographicBoundingPolygon(object): def __init__(self, md=None): if md is None: self.is_extent = None self.polygons = [] else: val = md.find(util.nspath_eval('gmd:extentTypeCode', namespaces)) self.is_extent = util.testXMLValue(val) md_polygons = md.findall(util.nspath_eval('gmd:polygon', namespaces)) self.polygons = [] for val in md_polygons: self.polygons.append(EX_Polygon(val)) class EX_Extent(object): """ process EX_Extent """ def __init__(self, md=None): if md is None: self.boundingBox = None self.boundingPolygon = None self.description_code = None else: self.boundingBox = None self.boundingPolygon = None if md is not None: bboxElement = md.find(util.nspath_eval('gmd:EX_GeographicBoundingBox', namespaces)) if bboxElement is not None: self.boundingBox = EX_GeographicBoundingBox(bboxElement) polygonElement = md.find(util.nspath_eval('gmd:EX_BoundingPolygon', namespaces)) if polygonElement is not None: self.boundingPolygon = EX_GeographicBoundingPolygon(polygonElement) val = md.find(util.nspath_eval('gmd:EX_GeographicDescription/gmd:geographicIdentifier/gmd:MD_Identifier/gmd:code/gco:CharacterString', namespaces)) self.description_code = util.testXMLValue(val) class MD_ReferenceSystem(object): """ process MD_ReferenceSystem """ def __init__(self, md=None): if md is None: self.code = None self.codeSpace = None self.version = None else: val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:code/gco:CharacterString', namespaces)) if val is not None: self.code = util.testXMLValue(val) else: self.code = None val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:codeSpace/gco:CharacterString', namespaces)) if val is not None: self.codeSpace = util.testXMLValue(val) else: self.codeSpace = None val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:version/gco:CharacterString', namespaces)) if val is not None: self.version = util.testXMLValue(val) else: self.version = None def _testCodeListValue(elpath): """ get gco:CodeListValue_Type attribute, else get text content """ if elpath is not None: # try to get @codeListValue val = util.testXMLValue(elpath.attrib.get('codeListValue'), True) if val is not None: return val else: # see if there is element text return util.testXMLValue(elpath) else: return None class CodelistCatalogue(object): """ process CT_CodelistCatalogue """ def __init__(self, ct): val = ct.find(util.nspath_eval('gmx:name/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:scope/gco:CharacterString', namespaces)) self.scope = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:fieldOfApplication/gco:CharacterString', namespaces)) self.fieldapp = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:versionNumber/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:versionDate/gco:Date', namespaces)) self.date = util.testXMLValue(val) self.dictionaries = {} for i in ct.findall(util.nspath_eval('gmx:codelistItem/gmx:CodeListDictionary', namespaces)): id = i.attrib.get(util.nspath_eval('gml32:id', namespaces)) self.dictionaries[id] = {} val = i.find(util.nspath_eval('gml32:description', namespaces)) self.dictionaries[id]['description'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gml32:identifier', namespaces)) self.dictionaries[id]['identifier'] = util.testXMLValue(val) self.dictionaries[id]['entries'] = {} for j in i.findall(util.nspath_eval('gmx:codeEntry', namespaces)): id2 = j.find(util.nspath_eval('gmx:CodeDefinition', namespaces)).attrib.get(util.nspath_eval('gml32:id', namespaces)) self.dictionaries[id]['entries'][id2] = {} val = j.find(util.nspath_eval('gmx:CodeDefinition/gml32:description', namespaces)) self.dictionaries[id]['entries'][id2]['description'] = util.testXMLValue(val) val = j.find(util.nspath_eval('gmx:CodeDefinition/gml32:identifier', namespaces)) self.dictionaries[id]['entries'][id2]['identifier'] = util.testXMLValue(val) val = j.find(util.nspath_eval('gmx:CodeDefinition', namespaces)).attrib.get('codeSpace') self.dictionaries[id]['entries'][id2]['codespace'] = util.testXMLValue(val, True) def getcodelistdictionaries(self): return list(self.dictionaries.keys()) def getcodedefinitionidentifiers(self, cdl): if cdl in self.dictionaries: ids = [] for i in self.dictionaries[cdl]['entries']: ids.append(self.dictionaries[cdl]['entries'][i]['identifier']) return ids else: return None class MD_FeatureCatalogueDescription(object): """Process gmd:MD_FeatureCatalogueDescription""" def __init__(self, fcd=None): if fcd is None: self.xml = None self.compliancecode = None self.language = [] self.includedwithdataset = None self.featuretypenames = [] self.featurecatalogues = [] else: if hasattr(fcd, 'getroot'): # standalone document self.xml = etree.tostring(fcd.getroot()) else: # part of a larger document self.xml = etree.tostring(fcd) self.compliancecode = None val = fcd.find(util.nspath_eval('gmd:complianceCode/gco:Boolean', namespaces)) val = util.testXMLValue(val) if val is not None: self.compliancecode = util.getTypedValue('boolean', val) self.language = [] for i in fcd.findall(util.nspath_eval('gmd:language/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.language.append(val) self.includedwithdataset = None val = fcd.find(util.nspath_eval('gmd:includedWithDataset/gco:Boolean', namespaces)) val = util.testXMLValue(val) if val is not None: self.includedwithdataset = util.getTypedValue('boolean', val) self.featuretypenames = [] for i in fcd.findall(util.nspath_eval('gmd:featureTypes/gco:LocalName', namespaces)): val = util.testXMLValue(i) if val is not None: self.featuretypenames.append(val) for i in fcd.findall(util.nspath_eval('gmd:featureTypes/gco:ScopedName', namespaces)): val = util.testXMLValue(i) if val is not None: self.featuretypenames.append(val) self.featurecatalogues = [] for i in fcd.findall(util.nspath_eval('gmd:featureCatalogueCitation', namespaces)): val = i.attrib['uuidref'] val = util.testXMLValue(val, attrib=True) if val is not None: self.featurecatalogues.append(val) class FC_FeatureCatalogue(object): """Process gfc:FC_FeatureCatalogue""" def __init__(self, fc=None): if fc is None: self.xml = None self.identifier = None self.name = None self.versiondate = None self.producer = None self.featuretypes = [] else: if hasattr(fc, 'getroot'): # standalone document self.xml = etree.tostring(fc.getroot()) else: # part of a larger document self.xml = etree.tostring(fc) val = fc.attrib['uuid'] self.identifier = util.testXMLValue(val, attrib=True) val = fc.find(util.nspath_eval('gmx:name/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = fc.find(util.nspath_eval('gmx:versionDate/gco:Date', namespaces)) self.versiondate = util.testXMLValue(val) if not self.versiondate: val = fc.find(util.nspath_eval('gmx:versionDate/gco:DateTime', namespaces)) self.versiondate = util.testXMLValue(val) self.producer = None prod = fc.find(util.nspath_eval('gfc:producer/gmd:CI_ResponsibleParty', namespaces)) if prod is not None: self.producer = CI_ResponsibleParty(prod) self.featuretypes = [] for i in fc.findall(util.nspath_eval('gfc:featureType/gfc:FC_FeatureType', namespaces)): self.featuretypes.append(FC_FeatureType(i)) class FC_FeatureType(object): """Process gfc:FC_FeatureType""" def __init__(self, ft=None): if ft is None: self.xml = None self.identifier = None self.typename = None self.definition = None self.isabstract = None self.aliases = [] self.attributes = [] else: if hasattr(ft, 'getroot'): # standalone document self.xml = etree.tostring(ft.getroot()) else: # part of a larger document self.xml = etree.tostring(ft) val = ft.attrib['uuid'] self.identifier = util.testXMLValue(val, attrib=True) val = ft.find(util.nspath_eval('gfc:typeName/gco:LocalName', namespaces)) self.typename = util.testXMLValue(val) val = ft.find(util.nspath_eval('gfc:definition/gco:CharacterString', namespaces)) self.definition = util.testXMLValue(val) self.isabstract = None val = ft.find(util.nspath_eval('gfc:isAbstract/gco:Boolean', namespaces)) val = util.testXMLValue(val) if val is not None: self.isabstract = util.getTypedValue('boolean', val) self.aliases = [] for i in ft.findall(util.nspath_eval('gfc:aliases/gco:LocalName', namespaces)): self.aliases.append(util.testXMLValue(i)) self.attributes = [] for i in ft.findall(util.nspath_eval('gfc:carrierOfCharacteristics/gfc:FC_FeatureAttribute', namespaces)): self.attributes.append(FC_FeatureAttribute(i)) class FC_FeatureAttribute(object): """Process gfc:FC_FeatureAttribute""" def __init__(self, fa=None): if fa is None: self.xml = None self.membername = None self.definition = None self.code = None self.valuetype = None self.listedvalues = [] else: if hasattr(fa, 'getroot'): # standalone document self.xml = etree.tostring(fa.getroot()) else: # part of a larger document self.xml = etree.tostring(fa) val = fa.find(util.nspath_eval('gfc:memberName/gco:LocalName', namespaces)) self.membername = util.testXMLValue(val) val = fa.find(util.nspath_eval('gfc:definition/gco:CharacterString', namespaces)) self.definition = util.testXMLValue(val) val = fa.find(util.nspath_eval('gfc:code/gco:CharacterString', namespaces)) self.code = util.testXMLValue(val) val = fa.find(util.nspath_eval('gfc:valueType/gco:TypeName/gco:aName/gco:CharacterString', namespaces)) self.valuetype = util.testXMLValue(val) self.listedvalues = [] for i in fa.findall(util.nspath_eval('gfc:listedValue/gfc:FC_ListedValue', namespaces)): self.listedvalues.append(FC_ListedValue(i)) class FC_ListedValue(object): """Process gfc:FC_ListedValue""" def __init__(self, lv=None): if lv is None: self.xml = None self.label = None self.code = None self.definition = None else: if hasattr(lv, 'getroot'): # standalone document self.xml = etree.tostring(lv.getroot()) else: # part of a larger document self.xml = etree.tostring(lv) val = lv.find(util.nspath_eval('gfc:label/gco:CharacterString', namespaces)) self.label = util.testXMLValue(val) val = lv.find(util.nspath_eval('gfc:code/gco:CharacterString', namespaces)) self.code = util.testXMLValue(val) val = lv.find(util.nspath_eval('gfc:definition/gco:CharacterString', namespaces)) self.definition = util.testXMLValue(val) OWSLib-0.16.0/owslib/iso_che.py000066400000000000000000001245001321706412000161550ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2009 Tom Kralidis # # Authors : Tom Kralidis # Angelos Tzotsos # # Contact email: tomkralidis@gmail.com # ============================================================================= """ ISO metadata parser """ from __future__ import (absolute_import, division, print_function) import warnings from owslib.etree import etree from owslib import util from owslib.namespaces import Namespaces # default variables def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["gco","gmd","gml","gml32","gmx","gts","srv","xlink"]) ns["che"] = 'http://www.geocat.ch/2008/che' ns[None] = n.get_namespace("gmd") return ns namespaces = get_namespaces() class CHE_MD_Metadata(object): """ Process gmd:MD_Metadata """ def __init__(self, md=None): if md is None: self.xml = None self.identifier = None self.parentidentifier = None self.language = None self.dataseturi = None self.languagecode = None self.datestamp = None self.charset = None self.hierarchy = None self.contact = [] self.datetimestamp = None self.stdname = None self.stdver = None self.locales = [] self.referencesystem = None self.identification = None self.serviceidentification = None self.identificationinfo = [] self.distribution = None self.dataquality = None else: if hasattr(md, 'getroot'): # standalone document self.xml = etree.tostring(md.getroot()) else: # part of a larger document self.xml = etree.tostring(md) val = md.find(util.nspath_eval('gmd:fileIdentifier/gco:CharacterString', namespaces)) self.identifier = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:parentIdentifier/gco:CharacterString', namespaces)) self.parentidentifier = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:language/gco:CharacterString', namespaces)) self.language = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:dataSetURI/gco:CharacterString', namespaces)) self.dataseturi = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:language/gmd:LanguageCode', namespaces)) self.languagecode = util.testXMLAttribute(val, 'codeListValue') val = md.find(util.nspath_eval('gmd:dateStamp/gco:Date', namespaces)) self.datestamp = util.testXMLValue(val) if not self.datestamp: val = md.find(util.nspath_eval('gmd:dateStamp/gco:DateTime', namespaces)) self.datestamp = util.testXMLValue(val) self.charset = _testCodeListValue(md.find(util.nspath_eval('gmd:characterSet/gmd:MD_CharacterSetCode', namespaces))) self.hierarchy = _testCodeListValue(md.find(util.nspath_eval('gmd:hierarchyLevel/gmd:MD_ScopeCode', namespaces))) self.contact = [] for i in md.findall(util.nspath_eval('gmd:contact/che:CHE_CI_ResponsibleParty', namespaces)): o = CI_ResponsibleParty(i) self.contact.append(o) val = md.find(util.nspath_eval('gmd:dateStamp/gco:DateTime', namespaces)) self.datetimestamp = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:metadataStandardName/gco:CharacterString', namespaces)) self.stdname = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:metadataStandardVersion/gco:CharacterString', namespaces)) self.stdver = util.testXMLValue(val) self.locales = [] for i in md.findall(util.nspath_eval('gmd:locale/gmd:PT_Locale', namespaces)): self.locales.append(PT_Locale(i)) val = md.find(util.nspath_eval('gmd:referenceSystemInfo/gmd:MD_ReferenceSystem', namespaces)) if val is not None: self.referencesystem = MD_ReferenceSystem(val) else: self.referencesystem = None # TODO: merge .identificationinfo into .identification warnings.warn( 'the .identification and .serviceidentification properties will merge into ' '.identification being a list of properties. This is currently implemented ' 'in .identificationinfo. ' 'Please see https://github.com/geopython/OWSLib/issues/38 for more information', FutureWarning) val = md.find(util.nspath_eval('gmd:identificationInfo/che:CHE_MD_DataIdentification', namespaces)) val2 = md.find(util.nspath_eval('gmd:identificationInfo/srv:SV_ServiceIdentification', namespaces)) if val is not None: self.identification = MD_DataIdentification(val, 'dataset') self.serviceidentification = None elif val2 is not None: self.identification = MD_DataIdentification(val2, 'service') self.serviceidentification = SV_ServiceIdentification(val2) else: self.identification = None self.serviceidentification = None self.identificationinfo = [] for idinfo in md.findall(util.nspath_eval('gmd:identificationInfo', namespaces)): if len(idinfo) > 0: val = list(idinfo)[0] tagval = util.xmltag_split(val.tag) if tagval == 'CHE_MD_DataIdentification': self.identificationinfo.append(MD_DataIdentification(val, 'dataset')) elif tagval == 'MD_ServiceIdentification': self.identificationinfo.append(MD_DataIdentification(val, 'service')) elif tagval == 'SV_ServiceIdentification': self.identificationinfo.append(SV_ServiceIdentification(val)) val = md.find(util.nspath_eval('gmd:distributionInfo/gmd:MD_Distribution', namespaces)) if val is not None: self.distribution = MD_Distribution(val) else: self.distribution = None val = md.find(util.nspath_eval('gmd:dataQualityInfo/gmd:DQ_DataQuality', namespaces)) if val is not None: self.dataquality = DQ_DataQuality(val) else: self.dataquality = None def get_default_locale(self): """ get default gmd:PT_Locale based on gmd:language """ for loc in self.locales: if loc.languagecode == self.language: return loc return None class PT_Locale(object): """ process PT_Locale """ def __init__(self, md=None): if md is None: self.id = None self.languagecode = None self.charset = None else: self.id = md.attrib.get('id') self.languagecode = md.find(util.nspath_eval('gmd:languageCode/gmd:LanguageCode', namespaces)).attrib.get('codeListValue') self.charset = md.find(util.nspath_eval('gmd:characterEncoding/gmd:MD_CharacterSetCode', namespaces)).attrib.get('codeListValue') class CI_Date(object): """ process CI_Date """ def __init__(self, md=None): if md is None: self.date = None self.type = None else: val = md.find(util.nspath_eval('gmd:date/gco:Date', namespaces)) if val is not None: self.date = util.testXMLValue(val) else: val = md.find(util.nspath_eval('gmd:date/gco:DateTime', namespaces)) if val is not None: self.date = util.testXMLValue(val) else: self.date = None val = md.find(util.nspath_eval('gmd:dateType/gmd:CI_DateTypeCode', namespaces)) self.type = _testCodeListValue(val) class CI_ResponsibleParty(object): """ process CI_ResponsibleParty """ def __init__(self, md=None): if md is None: self.name = None self.organization = None self.position = None self.phone = None self.fax = None self.address = None self.city = None self.region = None self.postcode = None self.country = None self.email = None self.onlineresource = None self.role = None else: val = md.find(util.nspath_eval('gmd:individualName/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:organisationName/gco:CharacterString', namespaces)) self.organization = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:positionName/gco:CharacterString', namespaces)) self.position = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:phone/che:CHE_CI_Telephone/gmd:voice/gco:CharacterString', namespaces)) self.phone = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:phone/che:CHE_CI_Telephone/gmd:facsimile/gco:CharacterString', namespaces)) self.fax = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:deliveryPoint/gco:CharacterString', namespaces)) self.address = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:city/gco:CharacterString', namespaces)) self.city = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:administrativeArea/gco:CharacterString', namespaces)) self.region = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:postalCode/gco:CharacterString', namespaces)) self.postcode = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:country/gco:CharacterString', namespaces)) self.country = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/gmd:electronicMailAddress/gco:CharacterString', namespaces)) self.email = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/che:streetName/gco:CharacterString', namespaces)) self.streetname = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/che:streetNumber/gco:CharacterString', namespaces)) self.streetnumber = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:address/che:CHE_CI_Address/che:postBox/gco:CharacterString', namespaces)) self.postbox = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:contactInfo/gmd:CI_Contact/gmd:onlineResource/gmd:CI_OnlineResource', namespaces)) if val is not None: self.onlineresource = CI_OnlineResource(val) else: self.onlineresource = None self.role = _testCodeListValue(md.find(util.nspath_eval('gmd:role/gmd:CI_RoleCode', namespaces))) class MD_Keywords(object): """ Class for the metadata MD_Keywords element """ def __init__(self, md=None): if md is None: self.keywords = [] self.type = None self.thesaurus = None self.kwdtype_codeList = 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/gmxCodelists.xml#MD_KeywordTypeCode' else: self.keywords = [] val = md.findall(util.nspath_eval('gmd:keyword/gco:CharacterString', namespaces)) for word in val: self.keywords.append(util.testXMLValue(word)) self.type = None val = md.find(util.nspath_eval('gmd:type/gmd:MD_KeywordTypeCode', namespaces)) self.type = util.testXMLAttribute(val, 'codeListValue') self.thesaurus = None val = md.find(util.nspath_eval('gmd:thesaurusName/gmd:CI_Citation', namespaces)) if val is not None: self.thesaurus = {} thesaurus = val.find(util.nspath_eval('gmd:title/gco:CharacterString', namespaces)) self.thesaurus['title'] = util.testXMLValue(thesaurus) thesaurus = val.find(util.nspath_eval('gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)) self.thesaurus['date'] = util.testXMLValue(thesaurus) thesaurus = val.find(util.nspath_eval('gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)) self.thesaurus['datetype'] = util.testXMLAttribute(thesaurus, 'codeListValue') class MD_DataIdentification(object): """ process MD_DataIdentification """ def __init__(self, md=None, identtype=None): if md is None: self.identtype = None self.title = None self.alternatetitle = None self.aggregationinfo = None self.uricode = [] self.uricodespace = [] self.date = [] self.datetype = [] self.uselimitation = [] self.uselimitation_url = [] self.accessconstraints = [] self.classification = [] self.otherconstraints = [] self.securityconstraints = [] self.useconstraints = [] self.denominators = [] self.distance = [] self.uom = [] self.resourcelanguage = [] self.creator = [] self.publisher = [] self.contributor = [] self.edition = None self.abstract = None self.abstract_url = None self.purpose = None self.status = None self.contact = [] self.keywords = [] self.keywords2 = [] self.topiccategory = [] self.supplementalinformation = None self.extent = None self.bbox = None self.temporalextent_start = None self.temporalextent_end = None self.spatialrepresentationtype = [] else: self.identtype = identtype val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.title = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:alternateTitle/gco:CharacterString', namespaces)) self.alternatetitle = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:aggregationInfo', namespaces)) self.aggregationinfo = util.testXMLValue(val) self.uricode = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:RS_Identifier/gmd:code/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uricode.append(val) self.uricodespace = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:identifier/gmd:RS_Identifier/gmd:codeSpace/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uricodespace.append(val) self.date = [] self.datetype = [] for i in md.findall(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:date/gmd:CI_Date', namespaces)): self.date.append(CI_Date(i)) self.uselimitation = [] self.uselimitation_url = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_Constraints/gmd:useLimitation/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.uselimitation.append(val) for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_Constraints/gmd:useLimitation/gmx:Anchor', namespaces)): val = util.testXMLValue(i) val1 = i.attrib.get(util.nspath_eval('xlink:href', namespaces)) if val is not None: self.uselimitation.append(val) self.uselimitation_url.append(val1) self.accessconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:accessConstraints/gmd:MD_RestrictionCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.accessconstraints.append(val) self.classification = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:accessConstraints/gmd:MD_ClassificationCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.classification.append(val) self.otherconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:otherConstraints/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.otherconstraints.append(val) self.securityconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_SecurityConstraints/gmd:classification/gmd:MD_ClassificationCode', namespaces)): val = util.testXMLValue(i) if val is not None: self.securityconstraints.append(val) self.useconstraints = [] for i in md.findall(util.nspath_eval('gmd:resourceConstraints/gmd:MD_LegalConstraints/gmd:useConstraints/gmd:MD_RestrictionCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.useconstraints.append(val) self.denominators = [] for i in md.findall(util.nspath_eval('gmd:spatialResolution/gmd:MD_Resolution/gmd:equivalentScale/gmd:MD_RepresentativeFraction/gmd:denominator/gco:Integer', namespaces)): val = util.testXMLValue(i) if val is not None: self.denominators.append(val) self.distance = [] self.uom = [] for i in md.findall(util.nspath_eval('gmd:spatialResolution/gmd:MD_Resolution/gmd:distance/gco:Distance', namespaces)): val = util.testXMLValue(i) if val is not None: self.distance.append(val) self.uom.append(i.get("uom")) self.resourcelanguage = [] for i in md.findall(util.nspath_eval('gmd:language/gmd:LanguageCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.resourcelanguage.append(val) self.creator = [] self.publisher = [] self.contributor = [] for val in md.findall(util.nspath_eval('gmd:pointOfContact/che:CHE_CI_ResponsibleParty', namespaces)): role = val.find(util.nspath_eval('gmd:role/gmd:CI_RoleCode', namespaces)) if role is not None: clv = _testCodeListValue(role) rp = CI_ResponsibleParty(val) if clv == 'originator': self.creator.append(rp) elif clv == 'publisher': self.publisher.append(rp) elif clv == 'author': self.contributor.append(rp) val = md.find(util.nspath_eval('gmd:edition/gco:CharacterString', namespaces)) self.edition = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gco:CharacterString', namespaces)) self.abstract = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gmx:Anchor', namespaces)) if val is not None: self.abstract = util.testXMLValue(val) self.abstract_url = val.attrib.get(util.nspath_eval('xlink:href', namespaces)) val = md.find(util.nspath_eval('gmd:purpose/gco:CharacterString', namespaces)) self.purpose = util.testXMLValue(val) self.status = _testCodeListValue(md.find(util.nspath_eval('gmd:status/gmd:MD_ProgressCode', namespaces))) self.contact = [] for i in md.findall(util.nspath_eval('gmd:pointOfContact/che:CHE_CI_ResponsibleParty', namespaces)): o = CI_ResponsibleParty(i) self.contact.append(o) self.spatialrepresentationtype = [] for val in md.findall(util.nspath_eval('gmd:spatialRepresentationType/gmd:MD_SpatialRepresentationTypeCode', namespaces)): val = util.testXMLAttribute(val, 'codeListValue') if val: self.spatialrepresentationtype.append(val) warnings.warn( 'The .keywords and .keywords2 properties will merge into the ' '.keywords property in the future, with .keywords becoming a list ' 'of MD_Keywords instances. This is currently implemented in .keywords2. ' 'Please see https://github.com/geopython/OWSLib/issues/301 for more information', FutureWarning) self.keywords = [] for i in md.findall(util.nspath_eval('gmd:descriptiveKeywords', namespaces)): mdkw = {} mdkw['type'] = _testCodeListValue(i.find(util.nspath_eval('gmd:MD_Keywords/gmd:type/gmd:MD_KeywordTypeCode', namespaces))) mdkw['thesaurus'] = {} val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) mdkw['thesaurus']['title'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)) mdkw['thesaurus']['date'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gmd:MD_Keywords/gmd:thesaurusName/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)) mdkw['thesaurus']['datetype'] = util.testXMLValue(val) mdkw['keywords'] = [] for k in i.findall(util.nspath_eval('gmd:MD_Keywords/gmd:keyword', namespaces)): val = k.find(util.nspath_eval('gco:CharacterString', namespaces)) if val is not None: val2 = util.testXMLValue(val) if val2 is not None: mdkw['keywords'].append(val2) self.keywords.append(mdkw) self.keywords2 = [] for mdkw in md.findall(util.nspath_eval('gmd:descriptiveKeywords/gmd:MD_Keywords', namespaces)): self.keywords2.append(MD_Keywords(mdkw)) self.topiccategory = [] for i in md.findall(util.nspath_eval('gmd:topicCategory/gmd:MD_TopicCategoryCode', namespaces)): val = util.testXMLValue(i) if val is not None: self.topiccategory.append(val) val = md.find(util.nspath_eval('gmd:supplementalInformation/gco:CharacterString', namespaces)) self.supplementalinformation = util.testXMLValue(val) # There may be multiple geographicElement, create an extent # from the one containing either an EX_GeographicBoundingBox or EX_BoundingPolygon. # The schema also specifies an EX_GeographicDescription. This is not implemented yet. val = None val2 = None val3 = None extents = md.findall(util.nspath_eval('gmd:extent', namespaces)) extents.extend(md.findall(util.nspath_eval('srv:extent', namespaces))) for extent in extents: if val is None: for e_ in extent.findall(util.nspath_eval('gmd:EX_Extent/gmd:geographicElement', namespaces)): if e_.find(util.nspath_eval('gmd:EX_GeographicBoundingBox', namespaces)) is not None or e_.find(util.nspath_eval('gmd:EX_BoundingPolygon', namespaces)) is not None: self.extent = EX_Extent(e_) if self.extent.boundingBox is not None: break self.bbox = self.extent.boundingBox # for backwards compatibility if val2 is None: val2 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:beginPosition', namespaces)) if val2 is None: val2 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml32:TimePeriod/gml32:beginPosition', namespaces)) self.temporalextent_start = util.testXMLValue(val2) if val3 is None: val3 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml:TimePeriod/gml:endPosition', namespaces)) if val3 is None: val3 = extent.find(util.nspath_eval('gmd:EX_Extent/gmd:temporalElement/gmd:EX_TemporalExtent/gmd:extent/gml32:TimePeriod/gml32:endPosition', namespaces)) self.temporalextent_end = util.testXMLValue(val3) class MD_Distributor(object): """ process MD_Distributor """ def __init__(self, md=None): if md is None: self.contact = None self.online = [] else: self.contact = None val = md.find(util.nspath_eval('gmd:MD_Distributor/gmd:distributorContact/che:CHE_CI_ResponsibleParty', namespaces)) if val is not None: self.contact = CI_ResponsibleParty(val) self.online = [] for ol in md.findall(util.nspath_eval('gmd:MD_Distributor/gmd:distributorTransferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource', namespaces)): self.online.append(CI_OnlineResource(ol)) class MD_Distribution(object): """ process MD_Distribution """ def __init__(self, md=None): if md is None: self.format = None self.version = None self.distributor = [] self.online = [] pass else: val = md.find(util.nspath_eval('gmd:distributionFormat/gmd:MD_Format/gmd:name/gco:CharacterString', namespaces)) self.format = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:distributionFormat/gmd:MD_Format/gmd:version/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) self.distributor = [] for dist in md.findall(util.nspath_eval('gmd:distributor', namespaces)): self.distributor.append(MD_Distributor(dist)) self.online = [] for ol in md.findall(util.nspath_eval('gmd:transferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource', namespaces)): self.online.append(CI_OnlineResource(ol)) class DQ_DataQuality(object): ''' process DQ_DataQuality''' def __init__(self, md=None): if md is None: self.conformancetitle = [] self.conformancedate = [] self.conformancedatetype = [] self.conformancedegree = [] self.lineage = None self.lineage_url = None self.specificationtitle = None self.specificationdate = [] else: self.conformancetitle = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancetitle.append(val) self.conformancedate = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:date/gco:Date', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancedate.append(val) self.conformancedatetype = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date/gmd:dateType/gmd:CI_DateTypeCode', namespaces)): val = _testCodeListValue(i) if val is not None: self.conformancedatetype.append(val) self.conformancedegree = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:pass/gco:Boolean', namespaces)): val = util.testXMLValue(i) if val is not None: self.conformancedegree.append(val) val = md.find(util.nspath_eval('gmd:lineage/gmd:LI_Lineage/gmd:statement/gco:CharacterString', namespaces)) self.lineage = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:lineage/gmd:LI_Lineage/gmd:statement/gmx:Anchor', namespaces)) if val is not None: self.lineage = util.testXMLValue(val) self.lineage_url = val.attrib.get(util.nspath_eval('xlink:href', namespaces)) val = md.find(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.specificationtitle = util.testXMLValue(val) self.specificationdate = [] for i in md.findall(util.nspath_eval('gmd:report/gmd:DQ_DomainConsistency/gmd:result/gmd:DQ_ConformanceResult/gmd:specification/gmd:CI_Citation/gmd:date/gmd:CI_Date', namespaces)): val = util.testXMLValue(i) if val is not None: self.specificationdate.append(val) class SV_ServiceIdentification(object): """ process SV_ServiceIdentification """ def __init__(self, md=None): if md is None: self.title = None self.abstract = None self.contact = None self.identtype = 'service' self.type = None self.version = None self.fees = None self.bbox = None self.couplingtype = None self.operations = [] self.operateson = [] else: val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString', namespaces)) self.title=util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:abstract/gco:CharacterString', namespaces)) self.abstract = util.testXMLValue(val) self.contact = None val = md.find(util.nspath_eval('gmd:citation/gmd:CI_Citation/gmd:citedResponsibleParty/che:CHE_CI_ResponsibleParty', namespaces)) if val is not None: self.contact = CI_ResponsibleParty(val) self.identtype = 'service' val = md.find(util.nspath_eval('srv:serviceType/gco:LocalName', namespaces)) self.type = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:serviceTypeVersion/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:accessProperties/gmd:MD_StandardOrderProcess/gmd:fees/gco:CharacterString', namespaces)) self.fees = util.testXMLValue(val) val = md.find(util.nspath_eval('srv:extent/gmd:EX_Extent', namespaces)) if val is not None: self.bbox = EX_Extent(val) else: self.bbox = None self.couplingtype = _testCodeListValue(md.find(util.nspath_eval('gmd:couplingType/gmd:SV_CouplingType', namespaces))) self.operations = [] for i in md.findall(util.nspath_eval('srv:containsOperations', namespaces)): tmp = {} val = i.find(util.nspath_eval('srv:SV_OperationMetadata/srv:operationName/gco:CharacterString', namespaces)) tmp['name'] = util.testXMLValue(val) tmp['dcplist'] = [] for d in i.findall(util.nspath_eval('srv:SV_OperationMetadata/srv:DCP', namespaces)): tmp2 = _testCodeListValue(d.find(util.nspath_eval('srv:DCPList', namespaces))) tmp['dcplist'].append(tmp2) tmp['connectpoint'] = [] for d in i.findall(util.nspath_eval('srv:SV_OperationMetadata/srv:connectPoint', namespaces)): tmp3 = d.find(util.nspath_eval('gmd:CI_OnlineResource', namespaces)) tmp['connectpoint'].append(CI_OnlineResource(tmp3)) self.operations.append(tmp) self.operateson = [] for i in md.findall(util.nspath_eval('srv:operatesOn', namespaces)): tmp = {} tmp['uuidref'] = i.attrib.get('uuidref') tmp['href'] = i.attrib.get(util.nspath_eval('xlink:href', namespaces)) tmp['title'] = i.attrib.get(util.nspath_eval('xlink:title', namespaces)) self.operateson.append(tmp) class CI_OnlineResource(object): """ process CI_OnlineResource """ def __init__(self,md=None): if md is None: self.url = None self.protocol = None self.name = None self.description = None self.function = None else: val = md.find(util.nspath_eval('gmd:linkage/che:PT_FreeURL/che:URLGroup/che:LocalisedURL', namespaces)) if val is None: val = md.find(util.nspath_eval('gmd:linkage/gmd:URL', namespaces)) self.url = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:protocol/gco:CharacterString', namespaces)) self.protocol = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:name/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:description/gco:CharacterString', namespaces)) self.description = util.testXMLValue(val) self.function = _testCodeListValue(md.find(util.nspath_eval('gmd:function/gmd:CI_OnLineFunctionCode', namespaces))) class EX_GeographicBoundingBox(object): def __init__(self, md=None): if md is None: self.minx = None self.maxx = None self.miny = None self.maxy = None else: val = md.find(util.nspath_eval('gmd:westBoundLongitude/gco:Decimal', namespaces)) self.minx = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:eastBoundLongitude/gco:Decimal', namespaces)) self.maxx = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:southBoundLatitude/gco:Decimal', namespaces)) self.miny = util.testXMLValue(val) val = md.find(util.nspath_eval('gmd:northBoundLatitude/gco:Decimal', namespaces)) self.maxy = util.testXMLValue(val) class EX_Polygon(object): def __init__(self, md=None): if md is None: self.exterior_ring = None self.interior_rings = [] else: linear_ring = md.find(util.nspath_eval('gml32:Polygon/gml32:exterior/gml32:LinearRing', namespaces)) if linear_ring is not None: self.exterior_ring = self._coordinates_for_ring(linear_ring) interior_ring_elements = md.findall(util.nspath_eval('gml32:Polygon/gml32:interior', namespaces)) self.interior_rings = [] for iring_element in interior_ring_elements: linear_ring = iring_element.find(util.nspath_eval('gml32:LinearRing', namespaces)) self.interior_rings.append(self._coordinates_for_ring(linear_ring)) def _coordinates_for_ring(self, linear_ring): coordinates = [] positions = linear_ring.findall(util.nspath_eval('gml32:pos', namespaces)) for pos in positions: tokens = pos.text.split() coords = tuple([float(t) for t in tokens]) coordinates.append(coords) return coordinates class EX_GeographicBoundingPolygon(object): def __init__(self, md=None): if md is None: self.is_extent = None self.polygons = [] else: val = md.find(util.nspath_eval('gmd:extentTypeCode', namespaces)) self.is_extent = util.testXMLValue(val) md_polygons = md.findall(util.nspath_eval('gmd:polygon', namespaces)) self.polygons = [] for val in md_polygons: self.polygons.append(EX_Polygon(val)) class EX_Extent(object): """ process EX_Extent """ def __init__(self, md=None): if md is None: self.boundingBox = None self.boundingPolygon = None self.description_code = None else: self.boundingBox = None self.boundingPolygon = None if md is not None: bboxElement = md.find(util.nspath_eval('gmd:EX_GeographicBoundingBox', namespaces)) if bboxElement is not None: self.boundingBox = EX_GeographicBoundingBox(bboxElement) polygonElement = md.find(util.nspath_eval('gmd:EX_BoundingPolygon', namespaces)) if polygonElement is not None: self.boundingPolygon = EX_GeographicBoundingPolygon(polygonElement) val = md.find(util.nspath_eval('gmd:EX_GeographicDescription/gmd:geographicIdentifier/gmd:MD_Identifier/gmd:code/gco:CharacterString', namespaces)) self.description_code = util.testXMLValue(val) class MD_ReferenceSystem(object): """ process MD_ReferenceSystem """ def __init__(self, md=None): if md is None: self.code = None self.codeSpace = None self.version = None else: val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:code/gco:CharacterString', namespaces)) if val is not None: self.code = util.testXMLValue(val) else: self.code = None val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:codeSpace/gco:CharacterString', namespaces)) if val is not None: self.codeSpace = util.testXMLValue(val) else: self.codeSpace = None val = md.find(util.nspath_eval('gmd:referenceSystemIdentifier/gmd:RS_Identifier/gmd:version/gco:CharacterString', namespaces)) if val is not None: self.version = util.testXMLValue(val) else: self.version = None def _testCodeListValue(elpath): """ get gco:CodeListValue_Type attribute, else get text content """ if elpath is not None: # try to get @codeListValue val = util.testXMLValue(elpath.attrib.get('codeListValue'), True) if val is not None: return val else: # see if there is element text return util.testXMLValue(elpath) else: return None class CodelistCatalogue(object): """ process CT_CodelistCatalogue """ def __init__(self, ct): val = ct.find(util.nspath_eval('gmx:name/gco:CharacterString', namespaces)) self.name = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:scope/gco:CharacterString', namespaces)) self.scope = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:fieldOfApplication/gco:CharacterString', namespaces)) self.fieldapp = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:versionNumber/gco:CharacterString', namespaces)) self.version = util.testXMLValue(val) val = ct.find(util.nspath_eval('gmx:versionDate/gco:Date', namespaces)) self.date = util.testXMLValue(val) self.dictionaries = {} for i in ct.findall(util.nspath_eval('gmx:codelistItem/gmx:CodeListDictionary', namespaces)): id = i.attrib.get(util.nspath_eval('gml32:id', namespaces)) self.dictionaries[id] = {} val = i.find(util.nspath_eval('gml32:description', namespaces)) self.dictionaries[id]['description'] = util.testXMLValue(val) val = i.find(util.nspath_eval('gml32:identifier', namespaces)) self.dictionaries[id]['identifier'] = util.testXMLValue(val) self.dictionaries[id]['entries'] = {} for j in i.findall(util.nspath_eval('gmx:codeEntry', namespaces)): id2 = j.find(util.nspath_eval('gmx:CodeDefinition', namespaces)).attrib.get(util.nspath_eval('gml32:id', namespaces)) self.dictionaries[id]['entries'][id2] = {} val = j.find(util.nspath_eval('gmx:CodeDefinition/gml32:description', namespaces)) self.dictionaries[id]['entries'][id2]['description'] = util.testXMLValue(val) val = j.find(util.nspath_eval('gmx:CodeDefinition/gml32:identifier', namespaces)) self.dictionaries[id]['entries'][id2]['identifier'] = util.testXMLValue(val) val = j.find(util.nspath_eval('gmx:CodeDefinition', namespaces)).attrib.get('codeSpace') self.dictionaries[id]['entries'][id2]['codespace'] = util.testXMLValue(val, True) def getcodelistdictionaries(self): return list(self.dictionaries.keys()) def getcodedefinitionidentifiers(self, cdl): if cdl in self.dictionaries: ids = [] for i in self.dictionaries[cdl]['entries']: ids.append(self.dictionaries[cdl]['entries'][i]['identifier']) return ids else: return None OWSLib-0.16.0/owslib/map/000077500000000000000000000000001321706412000147455ustar00rootroot00000000000000OWSLib-0.16.0/owslib/map/__init__.py000066400000000000000000000001421321706412000170530ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/map/common.py000066400000000000000000000056331321706412000166160ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) import cgi try: # Python 3 from urllib.parse import urlencode except ImportError: # Python 2 from urllib import urlencode from owslib.etree import etree from owslib.util import openURL, strip_bom class WMSCapabilitiesReader(object): """Read and parse capabilities document into a lxml.etree infoset """ def __init__(self, version='1.1.1', url=None, un=None, pw=None, headers=None): """Initialize""" self.version = version self._infoset = None self.url = url self.username = un self.password = pw self.headers = headers self.request = None #if self.username and self.password: ## Provide login information in order to use the WMS server ## Create an OpenerDirector with support for Basic HTTP ## Authentication... #passman = HTTPPasswordMgrWithDefaultRealm() #passman.add_password(None, self.url, self.username, self.password) #auth_handler = HTTPBasicAuthHandler(passman) #opener = build_opener(auth_handler) #self._open = opener.open def capabilities_url(self, service_url): """Return a capabilities url """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'WMS')) if 'request' not in params: qs.append(('request', 'GetCapabilities')) if 'version' not in params: qs.append(('version', self.version)) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, service_url, timeout=30): """Get and parse a WMS capabilities document, returning an elementtree instance service_url is the base url, to which is appended the service, version, and request parameters """ self.request = self.capabilities_url(service_url) # now split it up again to use the generic openURL function... spliturl = self.request.split('?') u = openURL(spliturl[0], spliturl[1], method='Get', username=self.username, password=self.password, timeout=timeout, headers=self.headers) raw_text = strip_bom(u.read()) return etree.fromstring(raw_text) def readString(self, st): """Parse a WMS capabilities document, returning an elementtree instance. string should be an XML capabilities document """ if not isinstance(st, str) and not isinstance(st, bytes): raise ValueError("String must be of type string or bytes, not %s" % type(st)) raw_text = strip_bom(st) return etree.fromstring(raw_text) OWSLib-0.16.0/owslib/map/wms111.py000066400000000000000000000603021321706412000163510ustar00rootroot00000000000000# -*- coding: iso-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= """ API for Web Map Service (WMS) methods and metadata. Currently supports only version 1.1.1 of the WMS protocol. """ from __future__ import (absolute_import, division, print_function) import cgi try: # Python 3 from urllib.parse import urlencode except ImportError: # Python 2 from urllib import urlencode import warnings import six from owslib.etree import etree from owslib.util import (openURL, testXMLValue, extract_xml_list, xmltag_split, OrderedDict, ServiceException, bind_url) from owslib.fgdc import Metadata from owslib.iso import MD_Metadata from owslib.map.common import WMSCapabilitiesReader class CapabilitiesError(Exception): pass class WebMapService_1_1_1(object): """Abstraction for OGC Web Map Service (WMS). Implements IWebMapService. """ def __getitem__(self, name): ''' check contents dictionary to allow dict like access to service layers ''' if name in self.__getattribute__('contents'): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version='1.1.1', xml=None, username=None, password=None, parse_remote_metadata=False, headers=None, timeout=30): """Initialize.""" self.url = url self.username = username self.password = password self.version = version self.timeout = timeout self.headers = headers self._capabilities = None # Authentication handled by Reader reader = WMSCapabilitiesReader(self.version, url=self.url, un=self.username, pw=self.password, headers=headers) if xml: # read from stored xml self._capabilities = reader.readString(xml) else: # read from server self._capabilities = reader.read(self.url, timeout=self.timeout) self.request = reader.request # avoid building capabilities metadata if the # response is a ServiceExceptionReport se = self._capabilities.find('ServiceException') if se is not None: err_message = str(se.text).strip() raise ServiceException(err_message) # build metadata objects self._buildMetadata(parse_remote_metadata) def _buildMetadata(self, parse_remote_metadata=False): """Set up capabilities metadata objects.""" self.updateSequence = self._capabilities.attrib.get('updateSequence') # serviceIdentification metadata serviceelem = self._capabilities.find('Service') self.identification = ServiceIdentification(serviceelem, self.version) # serviceProvider metadata self.provider = ServiceProvider(serviceelem) # serviceOperations metadata self.operations = [] for elem in self._capabilities.find('Capability/Request')[:]: self.operations.append(OperationMetadata(elem)) # serviceContents metadata: our assumption is that services use a # top-level layer as a metadata organizer, nothing more. self.contents = OrderedDict() caps = self._capabilities.find('Capability') # recursively gather content metadata for all layer elements. # To the WebMapService.contents store only metadata of named layers. def gather_layers(parent_elem, parent_metadata): layers = [] for index, elem in enumerate(parent_elem.findall('Layer')): cm = ContentMetadata(elem, parent=parent_metadata, index=index + 1, parse_remote_metadata=parse_remote_metadata) if cm.id: if cm.id in self.contents: warnings.warn('Content metadata for layer "%s" already exists. Using child layer' % cm.id) layers.append(cm) self.contents[cm.id] = cm cm.children = gather_layers(elem, cm) return layers gather_layers(caps, None) # exceptions self.exceptions = [f.text for f in self._capabilities.findall('Capability/Exception/Format')] def items(self): '''supports dict-like items() access''' items = [] for item in self.contents: items.append((item, self.contents[item])) return items def getcapabilities(self): """Request and return capabilities document from the WMS as a file-like object. NOTE: this is effectively redundant now""" reader = WMSCapabilitiesReader( self.version, url=self.url, un=self.username, pw=self.password ) u = self._open(reader.capabilities_url(self.url)) # check for service exceptions, and return if u.info()['Content-Type'] == 'application/vnd.ogc.se_xml': se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = str(se_tree.find('ServiceException').text).strip() raise ServiceException(err_message) return u def __build_getmap_request(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, transparent=False, bgcolor=None, exceptions=None, **kwargs): request = {'service': 'WMS', 'version': self.version, 'request': 'GetMap'} # check layers and styles assert len(layers) > 0 request['layers'] = ','.join(layers) if styles: assert len(styles) == len(layers) request['styles'] = ','.join(styles) else: request['styles'] = '' # size request['width'] = str(size[0]) request['height'] = str(size[1]) request['srs'] = str(srs) request['bbox'] = ','.join([repr(x) for x in bbox]) request['format'] = str(format) request['transparent'] = str(transparent).upper() request['bgcolor'] = '0x' + bgcolor[1:7] request['exceptions'] = str(exceptions) if time is not None: request['time'] = str(time) if kwargs: for kw in kwargs: request[kw]=kwargs[kw] return request def getmap(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, transparent=False, bgcolor='#FFFFFF', exceptions='application/vnd.ogc.se_xml', method='Get', timeout=None, **kwargs ): """Request and return an image from the WMS as a file-like object. Parameters ---------- layers : list List of content layer names. styles : list Optional list of named styles, must be the same length as the layers list. srs : string A spatial reference system identifier. bbox : tuple (left, bottom, right, top) in srs units. format : string Output image format such as 'image/jpeg'. size : tuple (width, height) in pixels. transparent : bool Optional. Transparent background if True. bgcolor : string Optional. Image background color. method : string Optional. HTTP DCP method name: Get or Post. **kwargs : extra arguments anything else e.g. vendor specific parameters Example ------- wms = WebMapService('http://giswebservices.massgis.state.ma.us/geoserver/wms', version='1.1.1') img = wms.getmap(layers=['massgis:GISDATA.SHORELINES_ARC'],\ styles=[''],\ srs='EPSG:4326',\ bbox=(-70.8, 42, -70, 42.8),\ size=(300, 300),\ format='image/jpeg',\ transparent=True) out = open('example.jpg', 'wb') bytes_written = out.write(img.read()) out.close() """ try: base_url = next((m.get('url') for m in self.getOperationByName('GetMap').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'version': self.version, 'request': 'GetMap'} request = self.__build_getmap_request( layers=layers, styles=styles, srs=srs, bbox=bbox, format=format, size=size, time=time, transparent=transparent, bgcolor=bgcolor, exceptions=exceptions, **kwargs) data = urlencode(request) self.request = bind_url(base_url) + data u = openURL(base_url, data, method, username=self.username, password=self.password, timeout=timeout or self.timeout) # check for service exceptions, and return if u.info()['Content-Type'].split(';')[0] in ['application/vnd.ogc.se_xml']: se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = six.text_type(se_tree.find('ServiceException').text).strip() raise ServiceException(err_message) return u def getfeatureinfo(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, transparent=False, bgcolor='#FFFFFF', exceptions='application/vnd.ogc.se_xml', query_layers=None, xy=None, info_format=None, feature_count=20, method='Get', timeout=None, **kwargs ): try: base_url = next((m.get('url') for m in self.getOperationByName('GetFeatureInfo').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url # GetMap-Request request = self.__build_getmap_request( layers=layers, styles=styles, srs=srs, bbox=bbox, format=format, size=size, time=time, transparent=transparent, bgcolor=bgcolor, exceptions=exceptions, kwargs=kwargs) # extend to GetFeatureInfo-Request request['request'] = 'GetFeatureInfo' if not query_layers: __str_query_layers = ','.join(layers) else: __str_query_layers = ','.join(query_layers) request['query_layers'] = __str_query_layers request['x'] = str(xy[0]) request['y'] = str(xy[1]) request['info_format'] = info_format request['feature_count'] = str(feature_count) data = urlencode(request) self.request = bind_url(base_url) + data u = openURL(base_url, data, method, username=self.username, password=self.password, timeout=timeout or self.timeout) # check for service exceptions, and return if u.info()['Content-Type'] == 'application/vnd.ogc.se_xml': se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = six.text_type(se_tree.find('ServiceException').text).strip() raise ServiceException(err_message) return u def getServiceXML(self): xml = None if self._capabilities is not None: xml = etree.tostring(self._capabilities) return xml def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class ServiceIdentification(object): ''' Implements IServiceIdentificationMetadata ''' def __init__(self, infoset, version): self._root=infoset self.type = testXMLValue(self._root.find('Name')) self.version = version self.title = testXMLValue(self._root.find('Title')) self.abstract = testXMLValue(self._root.find('Abstract')) self.keywords = extract_xml_list(self._root.findall('KeywordList/Keyword')) self.accessconstraints = testXMLValue(self._root.find('AccessConstraints')) self.fees = testXMLValue(self._root.find('Fees')) class ServiceProvider(object): ''' Implements IServiceProviderMetatdata ''' def __init__(self, infoset): self._root=infoset name=self._root.find('ContactInformation/ContactPersonPrimary/ContactOrganization') if name is not None: self.name=name.text else: self.name=None self.url=self._root.find('OnlineResource').attrib.get('{http://www.w3.org/1999/xlink}href', '') #contact metadata contact = self._root.find('ContactInformation') ## sometimes there is a contact block that is empty, so make ## sure there are children to parse if contact is not None and contact[:] != []: self.contact = ContactMetadata(contact) else: self.contact = None def getContentByName(self, name): """Return a named content item.""" for item in self.contents: if item.name == name: return item raise KeyError("No content named %s" % name) def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class ContentMetadata: """ Abstraction for WMS layer metadata. Implements IContentMetadata. """ def __init__(self, elem, parent=None, children=None, index=0, parse_remote_metadata=False, timeout=30): if elem.tag != 'Layer': raise ValueError('%s should be a Layer' % (elem,)) self.parent = parent if parent: self.index = "%s.%d" % (parent.index, index) else: self.index = str(index) self._children = children self.id = self.name = testXMLValue(elem.find('Name')) # layer attributes self.queryable = int(elem.attrib.get('queryable', 0)) self.cascaded = int(elem.attrib.get('cascaded', 0)) self.opaque = int(elem.attrib.get('opaque', 0)) self.noSubsets = int(elem.attrib.get('noSubsets', 0)) self.fixedWidth = int(elem.attrib.get('fixedWidth', 0)) self.fixedHeight = int(elem.attrib.get('fixedHeight', 0)) # title is mandatory property self.title = None title = testXMLValue(elem.find('Title')) if title is not None: self.title = title.strip() self.abstract = testXMLValue(elem.find('Abstract')) # bboxes b = elem.find('BoundingBox') self.boundingBox = None if b is not None: try: # sometimes the SRS attribute is (wrongly) not provided srs = b.attrib['SRS'] except KeyError: srs = None self.boundingBox = ( float(b.attrib['minx']), float(b.attrib['miny']), float(b.attrib['maxx']), float(b.attrib['maxy']), srs, ) elif self.parent: if hasattr(self.parent, 'boundingBox'): self.boundingBox = self.parent.boundingBox # ScaleHint sh = elem.find('ScaleHint') self.scaleHint = None if sh is not None: if 'min' in sh.attrib and 'max' in sh.attrib: self.scaleHint = {'min': sh.attrib['min'], 'max': sh.attrib['max']} attribution = elem.find('Attribution') if attribution is not None: self.attribution = dict() title = attribution.find('Title') url = attribution.find('OnlineResource') logo = attribution.find('LogoURL') if title is not None: self.attribution['title'] = title.text if url is not None: self.attribution['url'] = url.attrib['{http://www.w3.org/1999/xlink}href'] if logo is not None: self.attribution['logo_size'] = (int(logo.attrib['width']), int(logo.attrib['height'])) self.attribution['logo_url'] = logo.find('OnlineResource').attrib['{http://www.w3.org/1999/xlink}href'] b = elem.find('LatLonBoundingBox') if b is not None: self.boundingBoxWGS84 = ( float(b.attrib['minx']), float(b.attrib['miny']), float(b.attrib['maxx']), float(b.attrib['maxy']), ) elif self.parent: self.boundingBoxWGS84 = self.parent.boundingBoxWGS84 else: self.boundingBoxWGS84 = None # SRS options self.crsOptions = [] # Copy any parent SRS options (they are inheritable properties) if self.parent: self.crsOptions = list(self.parent.crsOptions) # Look for SRS option attached to this layer if elem.find('SRS') is not None: ## some servers found in the wild use a single SRS ## tag containing a whitespace separated list of SRIDs ## instead of several SRS tags. hence the inner loop for srslist in [x.text for x in elem.findall('SRS')]: if srslist: for srs in srslist.split(): self.crsOptions.append(srs) #Get rid of duplicate entries self.crsOptions = list(set(self.crsOptions)) #Set self.crsOptions to None if the layer (and parents) had no SRS options if len(self.crsOptions) == 0: #raise ValueError('%s no SRS available!?' % (elem,)) #Comment by D Lowe. #Do not raise ValueError as it is possible that a layer is purely a parent layer and does not have SRS specified. Instead set crsOptions to None # Comment by Jachym: # Do not set it to None, but to [], which will make the code # work further. Fixed by anthonybaxter self.crsOptions = [] #Styles self.styles = {} #Copy any parent styles (they are inheritable properties) if self.parent: self.styles = self.parent.styles.copy() #Get the styles for this layer (items with the same name are replaced) for s in elem.findall('Style'): name = s.find('Name') title = s.find('Title') if name is None or title is None: raise ValueError('%s missing name or title' % (s,)) style = { 'title' : title.text } # legend url legend = s.find('LegendURL/OnlineResource') if legend is not None: style['legend'] = legend.attrib['{http://www.w3.org/1999/xlink}href'] self.styles[name.text] = style # keywords self.keywords = [f.text for f in elem.findall('KeywordList/Keyword')] # timepositions - times for which data is available. self.timepositions=None self.defaulttimeposition = None for extent in elem.findall('Extent'): if extent.attrib.get("name").lower() =='time': if extent.text: self.timepositions=extent.text.split(',') self.defaulttimeposition = extent.attrib.get("default") break # Elevations - available vertical levels self.elevations=None for extent in elem.findall('Extent'): if extent.attrib.get("name").lower() == 'elevation': if extent.text: self.elevations = extent.text.split(',') break # MetadataURLs self.metadataUrls = [] for m in elem.findall('MetadataURL'): metadataUrl = { 'type': testXMLValue(m.attrib['type'], attrib=True), 'format': testXMLValue(m.find('Format')), 'url': testXMLValue(m.find('OnlineResource').attrib['{http://www.w3.org/1999/xlink}href'], attrib=True) } if metadataUrl['url'] is not None and parse_remote_metadata: # download URL try: content = openURL(metadataUrl['url'], timeout=timeout) doc = etree.parse(content) if metadataUrl['type'] is not None: if metadataUrl['type'] == 'FGDC': metadataUrl['metadata'] = Metadata(doc) if metadataUrl['type'] == 'TC211': metadataUrl['metadata'] = MD_Metadata(doc) except Exception: metadataUrl['metadata'] = None self.metadataUrls.append(metadataUrl) # DataURLs self.dataUrls = [] for m in elem.findall('DataURL'): dataUrl = { 'format': m.find('Format').text.strip(), 'url': m.find('OnlineResource').attrib['{http://www.w3.org/1999/xlink}href'] } self.dataUrls.append(dataUrl) self.layers = [] for child in elem.findall('Layer'): self.layers.append(ContentMetadata(child, self)) @property def children(self): return self._children @children.setter def children(self, value): if self._children is None: self._children = value else: self._children.extend(value) def __str__(self): return 'Layer Name: %s Title: %s' % (self.name, self.title) class OperationMetadata: """Abstraction for WMS OperationMetadata. Implements IOperationMetadata. """ def __init__(self, elem): """.""" self.name = xmltag_split(elem.tag) # formatOptions self.formatOptions = [f.text for f in elem.findall('Format')] self.methods = [] for verb in elem.findall('DCPType/HTTP/*'): url = verb.find('OnlineResource').attrib['{http://www.w3.org/1999/xlink}href'] self.methods.append({'type' : xmltag_split(verb.tag), 'url': url}) class ContactMetadata: """Abstraction for contact details advertised in GetCapabilities. """ def __init__(self, elem): name = elem.find('ContactPersonPrimary/ContactPerson') if name is not None: self.name = name.text else: self.name = None email = elem.find('ContactElectronicMailAddress') if email is not None: self.email = email.text else: self.email = None self.address = self.city = self.region = None self.postcode = self.country = None address = elem.find('ContactAddress') if address is not None: street = address.find('Address') if street is not None: self.address = street.text city = address.find('City') if city is not None: self.city = city.text region = address.find('StateOrProvince') if region is not None: self.region = region.text postcode = address.find('PostCode') if postcode is not None: self.postcode = postcode.text country = address.find('Country') if country is not None: self.country = country.text organization = elem.find('ContactPersonPrimary/ContactOrganization') if organization is not None: self.organization = organization.text else:self.organization = None position = elem.find('ContactPosition') if position is not None: self.position = position.text else: self.position = None OWSLib-0.16.0/owslib/map/wms130.py000066400000000000000000000726771321706412000163740ustar00rootroot00000000000000# -*- coding: iso-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= """ API For Web Map Service version 1.3.0. """ from __future__ import (absolute_import, division, print_function) try: # Python 3 from urllib.parse import urlencode except ImportError: # Python 2 from urllib import urlencode import warnings import six from owslib.etree import etree from owslib.util import (openURL, ServiceException, testXMLValue, extract_xml_list, xmltag_split, OrderedDict, nspath, bind_url) from owslib.util import nspath from owslib.fgdc import Metadata from owslib.iso import MD_Metadata from owslib.crs import Crs from owslib.namespaces import Namespaces from owslib.map.common import WMSCapabilitiesReader from owslib.util import log n = Namespaces() WMS_NAMESPACE = n.get_namespace("wms") OGC_NAMESPACE = n.get_namespace('ogc') class WebMapService_1_3_0(object): def __getitem__(self, name): ''' check contents dictionary to allow dict like access to service layers ''' if name in self.__getattribute__('contents'): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version='1.3.0', xml=None, username=None, password=None, parse_remote_metadata=False, timeout=30, headers=None): """initialize""" self.url = url self.username = username self.password = password self.version = version self.timeout = timeout self.headers = headers self._capabilities = None # Authentication handled by Reader reader = WMSCapabilitiesReader(self.version, url=self.url, un=self.username, pw=self.password, headers=headers) if xml: # read from stored xml self._capabilities = reader.readString(xml) else: # read from server self._capabilities = reader.read(self.url, timeout=self.timeout) self.request = reader.request # avoid building capabilities metadata if the # response is a ServiceExceptionReport se = self._capabilities.find('ServiceException') if se is not None: err_message = str(se.text).strip() raise ServiceException(err_message) # build metadata objects self._buildMetadata(parse_remote_metadata) def _buildMetadata(self, parse_remote_metadata=False): '''set up capabilities metadata objects:''' self.updateSequence = self._capabilities.attrib.get('updateSequence') # serviceIdentification metadata serviceelem = self._capabilities.find(nspath('Service', ns=WMS_NAMESPACE)) self.identification = ServiceIdentification(serviceelem, self.version) # serviceProvider metadata self.provider = ServiceProvider(serviceelem) # serviceOperations metadata self.operations = [] for elem in self._capabilities.find(nspath('Capability/Request', ns=WMS_NAMESPACE))[:]: self.operations.append(OperationMetadata(elem)) # serviceContents metadata: our assumption is that services use a top-level # layer as a metadata organizer, nothing more. self.contents = OrderedDict() caps = self._capabilities.find(nspath('Capability', WMS_NAMESPACE)) # recursively gather content metadata for all layer elements. # To the WebMapService.contents store only metadata of named layers. def gather_layers(parent_elem, parent_metadata): layers = [] for index, elem in enumerate(parent_elem.findall(nspath('Layer', WMS_NAMESPACE))): cm = ContentMetadata(elem, parent=parent_metadata, index=index+1, parse_remote_metadata=parse_remote_metadata) if cm.id: if cm.id in self.contents: warnings.warn('Content metadata for layer "%s" already exists. Using child layer' % cm.id) layers.append(cm) self.contents[cm.id] = cm cm.children = gather_layers(elem, cm) return layers gather_layers(caps, None) # exceptions self.exceptions = [f.text for f in self._capabilities.findall(nspath('Capability/Exception/Format', WMS_NAMESPACE))] def items(self): '''supports dict-like items() access''' items = [] for item in self.contents: items.append((item, self.contents[item])) return items def getServiceXML(self): xml = None if self._capabilities is not None: xml = etree.tostring(self._capabilities) return xml def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) def __build_getmap_request(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, dimensions={}, elevation=None, transparent=False, bgcolor=None, exceptions=None, **kwargs): request = {'service': 'WMS', 'version': self.version, 'request': 'GetMap'} # check layers and styles assert len(layers) > 0 request['layers'] = ','.join(layers) if styles: assert len(styles) == len(layers) request['styles'] = ','.join(styles) else: request['styles'] = '' # size request['width'] = str(size[0]) request['height'] = str(size[1]) # remap srs to crs for the actual request if srs.upper() == 'EPSG:0': # if it's esri's unknown spatial ref code, bail raise Exception('Undefined spatial reference (%s).' % srs) sref = Crs(srs) if sref.axisorder == 'yx': # remap the given bbox bbox = (bbox[1], bbox[0], bbox[3], bbox[2]) # remapping the srs to crs for the request request['crs'] = str(srs) request['bbox'] = ','.join([repr(x) for x in bbox]) request['format'] = str(format) request['transparent'] = str(transparent).upper() request['bgcolor'] = '0x' + bgcolor[1:7] request['exceptions'] = str(exceptions) if time is not None: request['time'] = str(time) if elevation is not None: request['elevation'] = str(elevation) # any other specified dimension, prefixed with "dim_" for k, v in six.iteritems(dimensions): request['dim_' + k] = str(v) if kwargs: for kw in kwargs: request[kw]=kwargs[kw] return request def getmap(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, elevation=None, dimensions={}, transparent=False, bgcolor='#FFFFFF', exceptions='XML', method='Get', timeout=None, **kwargs ): """Request and return an image from the WMS as a file-like object. Parameters ---------- layers : list List of content layer names. styles : list Optional list of named styles, must be the same length as the layers list. srs : string A spatial reference system identifier. Note: this is an invalid query parameter key for 1.3.0 but is being retained for standardization with 1.1.1. Note: throws exception if the spatial ref is ESRI's "no reference" code (EPSG:0) bbox : tuple (left, bottom, right, top) in srs units (note, this order does not change depending on axis order of the crs). CRS:84: (long, lat) EPSG:4326: (lat, long) format : string Output image format such as 'image/jpeg'. size : tuple (width, height) in pixels. time : string or list or range Optional. Time value of the specified layer as ISO-8601 (per value) elevation : string or list or range Optional. Elevation value of the specified layer. dimensions: dict (dimension : string or list or range) Optional. Any other Dimension option, as specified in the GetCapabilities transparent : bool Optional. Transparent background if True. bgcolor : string Optional. Image background color. method : string Optional. HTTP DCP method name: Get or Post. **kwargs : extra arguments anything else e.g. vendor specific parameters Example ------- wms = WebMapService('http://webservices.nationalatlas.gov/wms/1million',\ version='1.3.0') img = wms.getmap(layers=['airports1m'],\ styles=['default'],\ srs='EPSG:4326',\ bbox=(-176.646, 17.7016, -64.8017, 71.2854),\ size=(300, 300),\ format='image/jpeg',\ transparent=True) out = open('example.jpg.jpg', 'wb') out.write(img.read()) out.close() """ try: base_url = next((m.get('url') for m in self.getOperationByName('GetMap').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = self.__build_getmap_request( layers=layers, styles=styles, srs=srs, bbox=bbox, dimensions=dimensions, elevation=elevation, format=format, size=size, time=time, transparent=transparent, bgcolor=bgcolor, exceptions=exceptions, **kwargs) data = urlencode(request) self.request = bind_url(base_url) + data u = openURL(base_url, data, method, username=self.username, password=self.password, timeout=timeout or self.timeout) # need to handle casing in the header keys headers = {} for k, v in six.iteritems(u.info()): headers[k.lower()] = v # handle the potential charset def if headers['content-type'].split(';')[0] in ['application/vnd.ogc.se_xml', 'text/xml']: se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = six.text_type(se_tree.find(nspath('ServiceException', OGC_NAMESPACE)).text).strip() raise ServiceException(err_message) return u def getfeatureinfo(self, layers=None, styles=None, srs=None, bbox=None, format=None, size=None, time=None, elevation=None, dimensions={}, transparent=False, bgcolor='#FFFFFF', exceptions='XML', query_layers=None, xy=None, info_format=None, feature_count=20, method='Get', timeout=None, **kwargs ): try: base_url = next((m.get('url') for m in self.getOperationByName('GetFeatureInfo').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url # GetMap-Request request = self.__build_getmap_request( layers=layers, styles=styles, srs=srs, bbox=bbox, dimensions=dimensions, elevation=elevation, format=format, size=size, time=time, transparent=transparent, bgcolor=bgcolor, exceptions=exceptions, kwargs=kwargs) # extend to GetFeatureInfo-Request request['request'] = 'GetFeatureInfo' if not query_layers: __str_query_layers = ','.join(layers) else: __str_query_layers = ','.join(query_layers) request['query_layers'] = __str_query_layers request['i'] = str(xy[0]) request['j'] = str(xy[1]) request['info_format'] = info_format request['feature_count'] = str(feature_count) data = urlencode(request) self.request = bind_url(base_url) + data u = openURL(base_url, data, method, username=self.username, password=self.password, timeout=timeout or self.timeout) # check for service exceptions, and return if u.info()['Content-Type'] == 'XML': se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = six.text_type(se_tree.find('ServiceException').text).strip() raise ServiceException(err_message) return u class ServiceIdentification(object): def __init__(self, infoset, version): self._root = infoset self.type = testXMLValue(self._root.find(nspath('Name', WMS_NAMESPACE))) self.version = version self.title = testXMLValue(self._root.find(nspath('Title', WMS_NAMESPACE))) self.abstract = testXMLValue(self._root.find(nspath('Abstract', WMS_NAMESPACE))) self.keywords = extract_xml_list(self._root.findall(nspath('KeywordList/Keyword', WMS_NAMESPACE))) self.accessconstraints = testXMLValue(self._root.find(nspath('AccessConstraints', WMS_NAMESPACE))) self.fees = testXMLValue(self._root.find(nspath('Fees', WMS_NAMESPACE))) class ServiceProvider(object): def __init__(self, infoset): self._root = infoset name = self._root.find(nspath('ContactInformation/ContactPersonPrimary/ContactOrganization', WMS_NAMESPACE)) if name is not None: self.name = name.text else: self.name = None self.url = self._root.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib.get('{http://www.w3.org/1999/xlink}href', '') # contact metadata contact = self._root.find(nspath('ContactInformation', WMS_NAMESPACE)) # sometimes there is a contact block that is empty, so make # sure there are children to parse if contact is not None and contact[:] != []: self.contact = ContactMetadata(contact) else: self.contact = None class ContentMetadata(object): def __init__(self, elem, parent=None, children=None, index=0, parse_remote_metadata=False, timeout=30): if xmltag_split(elem.tag) != 'Layer': raise ValueError('%s should be a Layer' % (elem,)) self.parent = parent if parent: self.index = "%s.%d" % (parent.index, index) else: self.index = str(index) self._children = children self.id = self.name = testXMLValue(elem.find(nspath('Name', WMS_NAMESPACE))) # layer attributes self.queryable = int(elem.attrib.get('queryable', 0)) self.cascaded = int(elem.attrib.get('cascaded', 0)) self.opaque = int(elem.attrib.get('opaque', 0)) self.noSubsets = int(elem.attrib.get('noSubsets', 0)) self.fixedWidth = int(elem.attrib.get('fixedWidth', 0)) self.fixedHeight = int(elem.attrib.get('fixedHeight', 0)) # title is mandatory property self.title = None title = testXMLValue(elem.find(nspath('Title', WMS_NAMESPACE))) if title is not None: self.title = title.strip() self.abstract = testXMLValue(elem.find(nspath('Abstract', WMS_NAMESPACE))) # TODO: what is the preferred response to esri's handling of custom projections # in the spatial ref definitions? see http://resources.arcgis.com/en/help/main/10.1/index.html#//00sq000000m1000000 # and an example (20150812) http://maps.ngdc.noaa.gov/arcgis/services/firedetects/MapServer/WMSServer?request=GetCapabilities&service=WMS # bboxes b = elem.find(nspath('EX_GeographicBoundingBox', WMS_NAMESPACE)) self.boundingBoxWGS84 = None if b is not None: minx = b.find(nspath('westBoundLongitude', WMS_NAMESPACE)) miny = b.find(nspath('southBoundLatitude', WMS_NAMESPACE)) maxx = b.find(nspath('eastBoundLongitude', WMS_NAMESPACE)) maxy = b.find(nspath('northBoundLatitude', WMS_NAMESPACE)) box = tuple(map(float, [minx.text if minx is not None else None, miny.text if miny is not None else None, maxx.text if maxx is not None else None, maxy.text if maxy is not None else None])) self.boundingBoxWGS84 = tuple(box) elif self.parent: if hasattr(self.parent, 'boundingBoxWGS84'): self.boundingBoxWGS84 = self.parent.boundingBoxWGS84 # make a bbox list (of tuples) crs_list = [] for bb in elem.findall(nspath('BoundingBox', WMS_NAMESPACE)): srs_str = bb.attrib.get('CRS', None) srs = Crs(srs_str) box = tuple(map(float, [bb.attrib['minx'], bb.attrib['miny'], bb.attrib['maxx'], bb.attrib['maxy']] )) minx, miny, maxx, maxy = box[0], box[1], box[2], box[3] # handle the ordering so that it always # returns (minx, miny, maxx, maxy) if srs and srs.axisorder == 'yx': # reverse things minx, miny, maxx, maxy = box[1], box[0], box[3], box[2] crs_list.append(( minx, miny, maxx, maxy, srs_str, )) self.crs_list = crs_list # and maintain the original boundingBox attribute (first in list) # or the wgs84 bbox (to handle cases of incomplete parentage) self.boundingBox = crs_list[0] if crs_list else self.boundingBoxWGS84 # ScaleHint sh = elem.find(nspath('ScaleHint', WMS_NAMESPACE)) self.scaleHint = None if sh is not None: if 'min' in sh.attrib and 'max' in sh.attrib: self.scaleHint = {'min': sh.attrib['min'], 'max': sh.attrib['max']} attribution = elem.find(nspath('Attribution', WMS_NAMESPACE)) if attribution is not None: self.attribution = dict() title = attribution.find(nspath('Title', WMS_NAMESPACE)) url = attribution.find(nspath('OnlineResource', WMS_NAMESPACE)) logo = attribution.find(nspath('LogoURL', WMS_NAMESPACE)) if title is not None: self.attribution['title'] = title.text if url is not None: self.attribution['url'] = url.attrib['{http://www.w3.org/1999/xlink}href'] if logo is not None: self.attribution['logo_size'] = (int(logo.attrib['width']), int(logo.attrib['height'])) self.attribution['logo_url'] = logo.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib['{http://www.w3.org/1999/xlink}href'] # TODO: get this from the bbox attributes instead (deal with parents) # SRS options self.crsOptions = [] # Copy any parent SRS options (they are inheritable properties) if self.parent: self.crsOptions = list(self.parent.crsOptions) # Look for SRS option attached to this layer if elem.find(nspath('CRS', WMS_NAMESPACE)) is not None: # some servers found in the wild use a single SRS # tag containing a whitespace separated list of SRIDs # instead of several SRS tags. hence the inner loop for srslist in map(lambda x: x.text, elem.findall(nspath('CRS', WMS_NAMESPACE))): if srslist: for srs in srslist.split(): self.crsOptions.append(srs) # Get rid of duplicate entries self.crsOptions = list(set(self.crsOptions)) # Set self.crsOptions to None if the layer (and parents) had no SRS options if len(self.crsOptions) == 0: # raise ValueError('%s no SRS available!?' % (elem,)) # Comment by D Lowe. # Do not raise ValueError as it is possible that a layer is purely a parent layer and does not have SRS specified. Instead set crsOptions to None # Comment by Jachym: # Do not set it to None, but to [], which will make the code # work further. Fixed by anthonybaxter self.crsOptions = [] # Styles self.styles = {} # Copy any parent styles (they are inheritable properties) if self.parent: self.styles = self.parent.styles.copy() # Get the styles for this layer (items with the same name are replaced) for s in elem.findall(nspath('Style', WMS_NAMESPACE)): name = s.find(nspath('Name', WMS_NAMESPACE)) title = s.find(nspath('Title', WMS_NAMESPACE)) if name is None or title is None: raise ValueError('%s missing name or title' % (s,)) style = {'title': title.text} # legend url legend = s.find(nspath('LegendURL/OnlineResource', WMS_NAMESPACE)) if legend is not None: style['legend'] = legend.attrib['{http://www.w3.org/1999/xlink}href'] lgd = s.find(nspath('LegendURL', WMS_NAMESPACE)) if lgd is not None: if 'width' in lgd.attrib.keys(): style['legend_width'] = lgd.attrib.get('width') if 'height' in lgd.attrib.keys(): style['legend_height'] = lgd.attrib.get('height') lgd_format = lgd.find(nspath('Format', WMS_NAMESPACE)) if lgd_format is not None: style['legend_format'] = lgd_format.text.strip() self.styles[name.text] = style # keywords self.keywords = [f.text for f in elem.findall(nspath('KeywordList/Keyword', WMS_NAMESPACE))] # extents replaced by dimensions of name # comment by Soren Scott # 500, 490, 480 # it can be repeated with the same name so ? this assumes a single one to match 1.1.1 self.timepositions = None self.defaulttimeposition = None time_dimension = None for dim in elem.findall(nspath('Dimension', WMS_NAMESPACE)): dim_name = dim.attrib.get('name') if dim_name is not None and dim_name.lower() == 'time': time_dimension = dim if time_dimension is not None: self.timepositions = time_dimension.text.split(',') if time_dimension.text else None self.defaulttimeposition = time_dimension.attrib.get('default', None) # Elevations - available vertical levels self.elevations = None elev_dimension = None for dim in elem.findall(nspath('Dimension', WMS_NAMESPACE)): if dim.attrib.get('name') == 'elevation': elev_dimension = dim if elev_dimension is not None: self.elevations = [e.strip() for e in elev_dimension.text.split(',')] if elev_dimension.text else None # and now capture the dimensions as more generic things (and custom things) self.dimensions = {} for dim in elem.findall(nspath('Dimension', WMS_NAMESPACE)): dim_name = dim.attrib.get('name') dim_data = {} for k, v in six.iteritems(dim.attrib): if k != 'name': dim_data[k] = v # single values and ranges are not differentiated here dim_data['values'] = dim.text.strip().split(',') if dim.text.strip() else None self.dimensions[dim_name] = dim_data # MetadataURLs self.metadataUrls = [] for m in elem.findall(nspath('MetadataURL', WMS_NAMESPACE)): metadataUrl = { 'type': testXMLValue(m.attrib['type'], attrib=True), 'format': testXMLValue(m.find(nspath('Format', WMS_NAMESPACE))), 'url': testXMLValue(m.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib['{http://www.w3.org/1999/xlink}href'], attrib=True) } if metadataUrl['url'] is not None and parse_remote_metadata: # download URL try: content = openURL(metadataUrl['url'], timeout=timeout) doc = etree.parse(content) if metadataUrl['type'] is not None: if metadataUrl['type'] == 'FGDC': metadataUrl['metadata'] = Metadata(doc) if metadataUrl['type'] == 'TC211': metadataUrl['metadata'] = MD_Metadata(doc) except Exception: metadataUrl['metadata'] = None self.metadataUrls.append(metadataUrl) # DataURLs self.dataUrls = [] for m in elem.findall(nspath('DataURL', WMS_NAMESPACE)): dataUrl = { 'format': m.find(nspath('Format', WMS_NAMESPACE)).text.strip(), 'url': m.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib['{http://www.w3.org/1999/xlink}href'] } self.dataUrls.append(dataUrl) # FeatureListURLs self.featureListUrls = [] for m in elem.findall(nspath('FeatureListURL', WMS_NAMESPACE)): featureUrl = { 'format': m.find(nspath('Format', WMS_NAMESPACE)).text.strip(), 'url': m.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib['{http://www.w3.org/1999/xlink}href'] } self.featureListUrls.append(featureUrl) self.layers = [] for child in elem.findall(nspath('Layer', WMS_NAMESPACE)): self.layers.append(ContentMetadata(child, self)) @property def children(self): return self._children @children.setter def children(self, value): if self._children is None: self._children = value else: self._children.extend(value) def __str__(self): return 'Layer Name: %s Title: %s' % (self.name, self.title) class OperationMetadata(object): def __init__(self, elem): """.""" self.name = xmltag_split(elem.tag) # formatOptions self.formatOptions = [f.text for f in elem.findall(nspath('Format', WMS_NAMESPACE))] self.methods = [] for verb in elem.findall(nspath('DCPType/HTTP/*', WMS_NAMESPACE)): url = verb.find(nspath('OnlineResource', WMS_NAMESPACE)).attrib['{http://www.w3.org/1999/xlink}href'] self.methods.append({'type': xmltag_split(verb.tag), 'url': url}) class ContactMetadata(object): def __init__(self, elem): name = elem.find(nspath('ContactPersonPrimary/ContactPerson', WMS_NAMESPACE)) if name is not None: self.name = name.text else: self.name = None email = elem.find('ContactElectronicMailAddress') if email is not None: self.email = email.text else: self.email = None self.address = self.city = self.region = None self.postcode = self.country = None address = elem.find(nspath('ContactAddress', WMS_NAMESPACE)) if address is not None: street = address.find(nspath('Address', WMS_NAMESPACE)) if street is not None: self.address = street.text city = address.find(nspath('City', WMS_NAMESPACE)) if city is not None: self.city = city.text region = address.find(nspath('StateOrProvince', WMS_NAMESPACE)) if region is not None: self.region = region.text postcode = address.find(nspath('PostCode', WMS_NAMESPACE)) if postcode is not None: self.postcode = postcode.text country = address.find(nspath('Country', WMS_NAMESPACE)) if country is not None: self.country = country.text organization = elem.find(nspath('ContactPersonPrimary/ContactOrganization', WMS_NAMESPACE)) if organization is not None: self.organization = organization.text else: self.organization = None position = elem.find(nspath('ContactPosition', WMS_NAMESPACE)) if position is not None: self.position = position.text else: self.position = None OWSLib-0.16.0/owslib/namespaces.py000066400000000000000000000132611321706412000166640ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) import six class Namespaces(object): """ Class for holding and maniputlating a dictionary containing the various namespaces for each standard. """ namespace_dict = { 'atom' : 'http://www.w3.org/2005/Atom', 'csw' : 'http://www.opengis.net/cat/csw/2.0.2', 'dc' : 'http://purl.org/dc/elements/1.1/', 'dct' : 'http://purl.org/dc/terms/', 'dif' : 'http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/', 'draw' : 'gov.usgs.cida.gdp.draw', 'fes' : 'http://www.opengis.net/fes/2.0', 'fgdc' : 'http://www.opengis.net/cat/csw/csdgm', 'gco' : 'http://www.isotc211.org/2005/gco', 'gfc' : 'http://www.isotc211.org/2005/gfc', 'gm03' : 'http://www.interlis.ch/INTERLIS2.3', 'gmd' : 'http://www.isotc211.org/2005/gmd', 'gmi' : 'http://www.isotc211.org/2005/gmi', 'gml' : 'http://www.opengis.net/gml', 'gml311': 'http://www.opengis.net/gml', 'gml32' : 'http://www.opengis.net/gml/3.2', 'gmx' : 'http://www.isotc211.org/2005/gmx', 'gts' : 'http://www.isotc211.org/2005/gts', 'ogc' : 'http://www.opengis.net/ogc', 'om' : 'http://www.opengis.net/om/1.0', 'om10' : 'http://www.opengis.net/om/1.0', 'om100' : 'http://www.opengis.net/om/1.0', 'om20' : 'http://www.opengis.net/om/2.0', 'ows' : 'http://www.opengis.net/ows', 'ows100': 'http://www.opengis.net/ows', 'ows110': 'http://www.opengis.net/ows/1.1', 'ows200': 'http://www.opengis.net/ows/2.0', 'rim' : 'urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0', 'rdf' : 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'sa' : 'http://www.opengis.net/sampling/1.0', 'sml' : 'http://www.opengis.net/sensorML/1.0.1', 'sml101': 'http://www.opengis.net/sensorML/1.0.1', 'sos' : 'http://www.opengis.net/sos/1.0', 'sos20' : 'http://www.opengis.net/sos/2.0', 'srv' : 'http://www.isotc211.org/2005/srv', 'swe' : 'http://www.opengis.net/swe/1.0.1', 'swe10' : 'http://www.opengis.net/swe/1.0', 'swe101': 'http://www.opengis.net/swe/1.0.1', 'swe20' : 'http://www.opengis.net/swe/2.0', 'swes' : 'http://www.opengis.net/swes/2.0', 'tml' : 'ttp://www.opengis.net/tml', 'wfs' : 'http://www.opengis.net/wfs', 'wfs20' : 'http://www.opengis.net/wfs/2.0', 'wcs' : 'http://www.opengis.net/wcs', 'wms' : 'http://www.opengis.net/wms', 'wps' : 'http://www.opengis.net/wps/1.0.0', 'wps100': 'http://www.opengis.net/wps/1.0.0', 'xlink' : 'http://www.w3.org/1999/xlink', 'xs' : 'http://www.w3.org/2001/XMLSchema', 'xs2' : 'http://www.w3.org/XML/Schema', 'xsi' : 'http://www.w3.org/2001/XMLSchema-instance', 'wml2' : 'http://www.opengis.net/waterml/2.0' } def get_namespace(self, key): """ Retrieves a namespace from the dictionary Example: -------- >>> from owslib.namespaces import Namespaces >>> ns = Namespaces() >>> ns.get_namespace('csw') 'http://www.opengis.net/cat/csw/2.0.2' >>> ns.get_namespace('wfs20') 'http://www.opengis.net/wfs/2.0' """ retval = None if key in self.namespace_dict: retval = self.namespace_dict[key] return retval def get_versioned_namespace(self, key, ver=None): """ Retrieves a namespace from the dictionary with a specific version number Example: -------- >>> from owslib.namespaces import Namespaces >>> ns = Namespaces() >>> ns.get_versioned_namespace('ows') 'http://www.opengis.net/ows' >>> ns.get_versioned_namespace('ows','1.1.0') 'http://www.opengis.net/ows/1.1' """ if ver is None: return self.get_namespace(key) version = '' # Strip the decimals out of the passed in version for s in ver.split('.'): version += s key += version retval = None if key in self.namespace_dict: retval = self.namespace_dict[key] return retval def get_namespaces(self, keys=None): """ Retrieves a dict of namespaces from the namespace mapping Parameters ---------- - keys: List of keys query and return Example: -------- >>> ns = Namespaces() >>> x = ns.get_namespaces(['csw','gmd']) >>> x == {'csw': 'http://www.opengis.net/cat/csw/2.0.2', 'gmd': 'http://www.isotc211.org/2005/gmd'} True >>> x = ns.get_namespaces('csw') >>> x == {'csw': 'http://www.opengis.net/cat/csw/2.0.2'} True >>> ns.get_namespaces() {...} """ # If we aren't looking for any namespaces in particular return the whole dict if keys is None or len(keys) == 0: return self.namespace_dict if isinstance(keys, six.string_types): return { keys: self.get_namespace(keys) } retval = {} for key in keys: retval[key] = self.get_namespace(key) return retval def get_namespace_from_url(self, url): for k, v in self.namespace_dict.items(): if v == url: return k return None OWSLib-0.16.0/owslib/ows.py000066400000000000000000000264271321706412000153650ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2008 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ API for OGC Web Services Common (OWS) constructs and metadata. OWS Common: http://www.opengeospatial.org/standards/common Currently supports version 1.1.0 (06-121r3). """ from __future__ import (absolute_import, division, print_function) import logging from owslib.etree import etree from owslib import crs, util from owslib.namespaces import Namespaces LOGGER = logging.getLogger(__name__) n = Namespaces() OWS_NAMESPACE_1_0_0 = n.get_namespace("ows") OWS_NAMESPACE_1_1_0 = n.get_namespace("ows110") OWS_NAMESPACE_2_0 = n.get_namespace("ows200") XSI_NAMESPACE = n.get_namespace("xsi") XLINK_NAMESPACE = n.get_namespace("xlink") DEFAULT_OWS_NAMESPACE=OWS_NAMESPACE_1_1_0 #Use this as default for OWSCommon objects class OwsCommon(object): """Initialize OWS Common object""" def __init__(self,version): self.version = version if version == '1.0.0': self.namespace = OWS_NAMESPACE_1_0_0 else: self.namespace = OWS_NAMESPACE_1_1_0 class ServiceIdentification(object): """Initialize an OWS Common ServiceIdentification construct""" def __init__(self,infoset,namespace=DEFAULT_OWS_NAMESPACE): self._root = infoset val = self._root.find(util.nspath('Title', namespace)) self.title = util.testXMLValue(val) val = self._root.find(util.nspath('Abstract', namespace)) self.abstract = util.testXMLValue(val) self.keywords = [] for f in self._root.findall(util.nspath('Keywords/Keyword', namespace)): if f.text is not None: self.keywords.append(f.text) val = self._root.find(util.nspath('AccessConstraints', namespace)) self.accessconstraints = util.testXMLValue(val) val = self._root.find(util.nspath('Fees', namespace)) self.fees = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceType', namespace)) self.type = util.testXMLValue(val) self.service=self.type #alternative? keep both?discuss val = self._root.find(util.nspath('ServiceTypeVersion', namespace)) self.version = util.testXMLValue(val) self.versions = [] for v in self._root.findall(util.nspath('ServiceTypeVersion', namespace)): self.versions.append(util.testXMLValue(v)) self.profiles = [] for p in self._root.findall(util.nspath('Profile', namespace)): self.profiles.append(util.testXMLValue(p)) class ServiceProvider(object): """Initialize an OWS Common ServiceProvider construct""" def __init__(self, infoset,namespace=DEFAULT_OWS_NAMESPACE): self._root = infoset val = self._root.find(util.nspath('ProviderName', namespace)) self.name = util.testXMLValue(val) self.contact = ServiceContact(infoset, namespace) val = self._root.find(util.nspath('ProviderSite', namespace)) if val is not None: urlattrib=val.attrib[util.nspath('href', XLINK_NAMESPACE)] self.url = util.testXMLValue(urlattrib, True) else: self.url =None class ServiceContact(object): """Initialize an OWS Common ServiceContact construct""" def __init__(self, infoset,namespace=DEFAULT_OWS_NAMESPACE): self._root = infoset val = self._root.find(util.nspath('ProviderName', namespace)) self.name = util.testXMLValue(val) self.organization=util.testXMLValue(self._root.find(util.nspath('ContactPersonPrimary/ContactOrganization', namespace))) val = self._root.find(util.nspath('ProviderSite', namespace)) if val is not None: self.site = util.testXMLValue(val.attrib.get(util.nspath('href', XLINK_NAMESPACE)), True) else: self.site = None val = self._root.find(util.nspath('ServiceContact/Role', namespace)) self.role = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/IndividualName', namespace)) self.name = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/PositionName', namespace)) self.position = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Phone/Voice', namespace)) self.phone = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Phone/Facsimile', namespace)) self.fax = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/DeliveryPoint', namespace)) self.address = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/City', namespace)) self.city = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/AdministrativeArea', namespace)) self.region = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/PostalCode', namespace)) self.postcode = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/Country', namespace)) self.country = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/Address/ElectronicMailAddress', namespace)) self.email = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/OnlineResource', namespace)) if val is not None: self.url = util.testXMLValue(val.attrib.get(util.nspath('href', XLINK_NAMESPACE)), True) else: self.url = None val = self._root.find(util.nspath('ServiceContact/ContactInfo/HoursOfService', namespace)) self.hours = util.testXMLValue(val) val = self._root.find(util.nspath('ServiceContact/ContactInfo/ContactInstructions', namespace)) self.instructions = util.testXMLValue(val) class Constraint(object): def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): self.name = elem.attrib.get('name') self.values = [i.text for i in elem.findall(util.nspath('Value', namespace))] self.values += [i.text for i in elem.findall(util.nspath('AllowedValues/Value', namespace))] def __repr__(self): if self.values: return "Constraint: %s - %s" % (self.name, self.values) else: return "Constraint: %s" % self.name class Parameter(object): def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): self.name = elem.attrib.get('name') self.values = [i.text for i in elem.findall(util.nspath('Value', namespace))] self.values += [i.text for i in elem.findall(util.nspath('AllowedValues/Value', namespace))] def __repr__(self): if self.values: return "Parameter: %s - %s" % (self.name, self.values) else: return "Parameter: %s" % self.name class OperationsMetadata(object): """Initialize an OWS OperationMetadata construct""" def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): if 'name' not in elem.attrib: # This is not a valid element return self.name = elem.attrib['name'] self.formatOptions = ['text/xml'] parameters = [] self.methods = [] self.constraints = [] for verb in elem.findall(util.nspath('DCP/HTTP/*', namespace)): url = util.testXMLAttribute(verb, util.nspath('href', XLINK_NAMESPACE)) if url is not None: verb_constraints = [Constraint(conts, namespace) for conts in verb.findall(util.nspath('Constraint', namespace))] self.methods.append({'constraints' : verb_constraints, 'type' : util.xmltag_split(verb.tag), 'url': url}) for parameter in elem.findall(util.nspath('Parameter', namespace)): if namespace == OWS_NAMESPACE_1_1_0: parameters.append((parameter.attrib['name'], {'values': [i.text for i in parameter.findall(util.nspath('AllowedValues/Value', namespace))]})) else: parameters.append((parameter.attrib['name'], {'values': [i.text for i in parameter.findall(util.nspath('Value', namespace))]})) self.parameters = dict(parameters) for constraint in elem.findall(util.nspath('Constraint', namespace)): self.constraints.append(Constraint(constraint, namespace)) class BoundingBox(object): """Initialize an OWS BoundingBox construct""" def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): self.minx = None self.miny = None self.maxx = None self.maxy = None val = elem.attrib.get('crs') try: self.crs = crs.Crs(val) except (AttributeError, ValueError): LOGGER.warning('Invalid CRS %r. Expected integer') self.crs = None val = elem.attrib.get('dimensions') if val is not None: self.dimensions = int(util.testXMLValue(val, True)) else: # assume 2 self.dimensions = 2 val = elem.find(util.nspath('LowerCorner', namespace)) tmp = util.testXMLValue(val) if tmp is not None: xy = tmp.split() if len(xy) > 1: if self.crs is not None and self.crs.axisorder == 'yx': self.minx, self.miny = xy[1], xy[0] else: self.minx, self.miny = xy[0], xy[1] val = elem.find(util.nspath('UpperCorner', namespace)) tmp = util.testXMLValue(val) if tmp is not None: xy = tmp.split() if len(xy) > 1: if self.crs is not None and self.crs.axisorder == 'yx': self.maxx, self.maxy = xy[1], xy[0] else: self.maxx, self.maxy = xy[0], xy[1] class WGS84BoundingBox(BoundingBox): """WGS84 bbox, axis order xy""" def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): BoundingBox.__init__(self, elem, namespace) self.dimensions = 2 self.crs = crs.Crs('urn:ogc:def:crs:OGC:2:84') class ExceptionReport(Exception): """OWS ExceptionReport""" def __init__(self, elem, namespace=DEFAULT_OWS_NAMESPACE): self.exceptions = [] if hasattr(elem, 'getroot'): elem = elem.getroot() for i in elem.findall(util.nspath('Exception', namespace)): tmp = {} val = i.attrib.get('exceptionCode') tmp['exceptionCode'] = util.testXMLValue(val, True) val = i.attrib.get('locator') tmp['locator'] = util.testXMLValue(val, True) val = i.find(util.nspath('ExceptionText', namespace)) tmp['ExceptionText'] = util.testXMLValue(val) self.exceptions.append(tmp) # set topmost stacktrace as return message self.code = self.exceptions[0]['exceptionCode'] self.locator = self.exceptions[0]['locator'] self.msg = self.exceptions[0]['ExceptionText'] self.xml = etree.tostring(elem) def __str__(self): return repr(self.msg) OWSLib-0.16.0/owslib/sos.py000066400000000000000000000030051321706412000153440ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2013 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= """ Sensor Observation Service (SOS) methods and metadata. Factory function. """ from __future__ import (absolute_import, division, print_function) from .swe.observation import sos100, sos200 from .util import clean_ows_url def SensorObservationService(url, version='1.0.0', xml=None, username=None, password=None,): """ SOS factory function :param url: url of capabilities document :param version: SOS version 1.0.0 or 2.0.0 :param xml: elementtree object :param username: username allowed to handle with SOS :param password: password for the username :return: a version specific SensorObservationService object """ clean_url = clean_ows_url(url) if version in ['1.0', '1.0.0']: return sos100.SensorObservationService_1_0_0.__new__( sos100.SensorObservationService_1_0_0, clean_url, version, xml, username, password) elif version in ['2.0', '2.0.0']: return sos200.SensorObservationService_2_0_0.__new__( sos200.SensorObservationService_2_0_0, clean_url, version, xml, username, password) OWSLib-0.16.0/owslib/swe/000077500000000000000000000000001321706412000147665ustar00rootroot00000000000000OWSLib-0.16.0/owslib/swe/__init__.py000066400000000000000000000001041321706412000170720ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/swe/common.py000066400000000000000000000444111321706412000166340ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) from owslib.util import nspath_eval from owslib.namespaces import Namespaces from owslib.util import testXMLAttribute, testXMLValue, InfiniteDateTime, NegativeInfiniteDateTime from dateutil import parser from datetime import timedelta from owslib.etree import etree import inspect from sys import modules def get_namespaces(): ns = Namespaces() return ns.get_namespaces(["swe20", "xlink"]) namespaces = get_namespaces() def nspv(path): return nspath_eval(path, namespaces) def make_pair(string, cast=None): if string is None: return None string = string.split(" ") if cast is not None: try: string = [cast(x) for x in string] except: print("Could not cast pair to correct type. Setting to an empty tuple!") string = "" return tuple(string) def get_uom(element): uom = testXMLAttribute(element, "code") if uom is None: uom = testXMLAttribute(element, nspv("xlink:href")) return uom def get_boolean(value): if value is None: return None if value is True or value.lower() in ["yes","true"]: return True elif value is False or value.lower() in ["no","false"]: return False else: return None def get_int(value): try: return int(value) except: return None def get_float(value): try: return float(value) except: return None AnyScalar = [nspv(x) for x in ["swe20:Boolean", "swe20:Count", "swe20:Quantity", "swe20:Time", "swe20:Category", "swe20:Text"]] AnyNumerical = [nspv(x) for x in ["swe20:Count", "swe20:Quantity", "swe20:Time"]] AnyRange = [nspv(x) for x in ["swe20:QuantityRange", "swe20:TimeRange", "swe20:CountRange", "swe20:CategoryRange"]] class NamedObject(object): def __init__(self, element): # No call to super(), the type object will process that. self.name = testXMLAttribute(element, "name") try: # attempt to find a class with the same name as the XML tag parsed # which is also contained within this module. # Ideally the classes should be explicitly whitelisted, but I # don't know what the set of possible classes to dispatch to should # be self.content = obj_mapping[element[-1].tag.split("}")[-1]]( element[-1]) except (IndexError, KeyError): self.content = None except BaseException: raise # Revert to the content if attribute does not exists def __getattr__(self, name): return getattr(self.content, name) class AbstractSWE(object): def __init__(self, element): # Attributes self.id = testXMLAttribute(element,"id") # string, optional # Elements self.extention = [] # anyType, min=0, max=X class AbstractSWEIdentifiable(AbstractSWE): def __init__(self, element): super(AbstractSWEIdentifiable, self).__init__(element) # Elements self.identifier = testXMLValue(element.find(nspv("swe20:identifier"))) # anyURI, min=0 self.label = testXMLValue(element.find(nspv("swe20:label"))) # string, min=0 self.description = testXMLValue(element.find(nspv("swe20:description"))) # string, min=0 class AbstractDataComponent(AbstractSWEIdentifiable): def __init__(self, element): super(AbstractDataComponent, self).__init__(element) # Attributes self.definition = testXMLAttribute(element,"definition") # anyURI, required self.updatable = get_boolean(testXMLAttribute(element,"updatable")) # boolean, optional self.optional = get_boolean(testXMLAttribute(element,"optional")) or False # boolean, default=False class AbstractSimpleComponent(AbstractDataComponent): def __init__(self, element): super(AbstractSimpleComponent, self).__init__(element) # Attributes self.referenceFrame = testXMLAttribute(element,"referenceFrame") # anyURI, optional self.axisID = testXMLAttribute(element,"axisID") # string, optional # Elements self.quality = [_f for _f in [Quality(q) for q in [e.find('*') for e in element.findall(nspv("swe20:quality"))] if q is not None] if _f] try: self.nilValues = NilValues(element.find(nspv("swe20:nilValues"))) except: self.nilValues = None class Quality(object): def __new__(cls, element): t = element.tag.split("}")[-1] if t == "Quantity": return Quantity(element) elif t == "QuantityRange": return QuantityRange(element) elif t == "Category": return Category(element) elif t == "Text": return Text(element) else: return None class NilValues(AbstractSWE): def __init__(self, element): super(NilValues, self).__init__(element) self.nilValue = [_f for _f in [nilValue(x) for x in element.findall(nspv("swe20:nilValue"))] if _f] # string, min=0, max=X class nilValue(object): def __init__(self, element): self.reason = testXMLAttribute(element, "reason") self.value = testXMLValue(element) class AllowedTokens(AbstractSWE): def __init__(self, element): super(AllowedTokens, self).__init__(element) self.value = [_f for _f in [testXMLValue(x) for x in element.findall(nspv("swe20:value"))] if _f] # string, min=0, max=X self.pattern = testXMLValue(element.find(nspv("swe20:pattern"))) # string (Unicode Technical Standard #18, Version 13), min=0 class AllowedValues(AbstractSWE): def __init__(self, element): super(AllowedValues, self).__init__(element) self.value = [_f for _f in [get_float(x) for x in [testXMLValue(x) for x in element.findall(nspv("swe20:value"))]] if _f] self.interval = [_f for _f in [make_pair(testXMLValue(x)) for x in element.findall(nspv("swe20:interval"))] if _f] self.significantFigures = get_int(testXMLValue(element.find(nspv("swe20:significantFigures")))) # integer, min=0 class AllowedTimes(AbstractSWE): def __init__(self, element): super(AllowedTimes, self).__init__(element) self.value = [_f for _f in [testXMLValue(x) for x in element.findall(nspv("swe20:value"))] if _f] self.interval = [_f for _f in [make_pair(testXMLValue(x)) for x in element.findall(nspv("swe20:interval"))] if _f] self.significantFigures = get_int(testXMLValue(element.find(nspv("swe20:significantFigures")))) # integer, min=0 class Boolean(AbstractSimpleComponent): def __init__(self, element): super(Boolean, self).__init__(element) # Elements """ 6.2.1 Boolean A Boolean representation of a proptery can take only two values that should be "true/false" or "yes/no". """ value = get_boolean(testXMLValue(element.find(nspv("swe20:value")))) # boolean, min=0, max=1 class Text(AbstractSimpleComponent): def __init__(self, element): super(Text, self).__init__(element) # Elements """ Req 6. A textual representation shall at least consist of a character string. """ self.value = testXMLValue(element.find(nspv("swe20:value"))) # string, min=0, max=1 try: self.constraint = AllowedTokens(element.find(nspv("swe20:constraint/swe20:AllowedTokens"))) # AllowedTokens, min=0, max=1 except: self.constraint = None class Category(AbstractSimpleComponent): def __init__(self, element): super(Category, self).__init__(element) # Elements self.codeSpace = testXMLAttribute(element.find(nspv("swe20:codeSpace")), nspv("xlink:href")) # Reference, min=0, max=1 self.value = testXMLValue(element.find(nspv("swe20:value"))) # string, min=0, max=1 try: self.constraint = AllowedTokens(element.find(nspv("swe20:constraint/swe20:AllowedTokens"))) # AllowedTokens, min=0, max=1 except: self.constraint = None class CategoryRange(Category): def __init__(self, element): super(CategoryRange, self).__init__(element) # Elements value = testXMLValue(element.find(nspv("swe20:value"))) self.values = make_pair(value) if value is not None else None class Count(AbstractSimpleComponent): def __init__(self, element): super(Count, self).__init__(element) # Elements self.value = get_int(testXMLValue(element.find(nspv("swe20:value")))) # integer, min=0, max=1 try: self.constraint = AllowedValues(element.find(nspv("swe20:constraint/swe20:AllowedValues"))) # AllowedValues, min=0, max=1 except: self.constraint = None class CountRange(Count): def __init__(self, element): super(CountRange, self).__init__(element) # Elements value = testXMLValue(element.find(nspv("swe20:value"))) self.value = make_pair(value,int) if value is not None else None class Quantity(AbstractSimpleComponent): def __init__(self, element): super(Quantity, self).__init__(element) # Elements self.uom = get_uom(element.find(nspv("swe20:uom"))) self.value = get_float(testXMLValue(element.find(nspv("swe20:value")))) # double, min=0, max=1 try: self.constraint = AllowedValues(element.find(nspv("swe20:constraint/swe20:AllowedValues"))) # AllowedValues, min=0, max=1 except: self.constraint = None class QuantityRange(Quantity): def __init__(self, element): super(QuantityRange, self).__init__(element) # Elements value = testXMLValue(element.find(nspv("swe20:value"))) self.value = make_pair(value,float) if value is not None else None def get_time(value, referenceTime, uom): try: value = parser.parse(value) except (AttributeError, ValueError): # Most likely an integer/float using a referenceTime try: if uom.lower() == "s": value = referenceTime + timedelta(seconds=float(value)) elif uom.lower() == "min": value = referenceTime + timedelta(minutes=float(value)) elif uom.lower() == "h": value = referenceTime + timedelta(hours=float(value)) elif uom.lower() == "d": value = referenceTime + timedelta(days=float(value)) except (AttributeError, ValueError): pass except OverflowError: # Too many numbers (> 10) or INF/-INF if value.lower() == "inf": value = InfiniteDateTime() elif value.lower() == "-inf": value = NegativeInfiniteDateTime() # Usually due to not finding the element except TypeError: value = None return value class Time(AbstractSimpleComponent): def __init__(self, element): super(Time, self).__init__(element) # Elements self.uom = get_uom(element.find(nspv("swe20:uom"))) try: self.constraint = AllowedTimes(element.find(nspv("swe20:constraint/swe20:AllowedTimes"))) # AllowedTimes, min=0, max=1 except: self.constraint = None # Attributes self.localFrame = testXMLAttribute(element,"localFrame") # anyURI, optional try: self.referenceTime = parser.parse(testXMLAttribute(element, "referenceTime") ) # dateTime, optional except (AttributeError, ValueError, TypeError): self.referenceTime = None value = testXMLValue(element.find(nspv("swe20:value"))) # TimePosition, min=0, max=1 self.value = get_time(value, self.referenceTime, self.uom) class TimeRange(AbstractSimpleComponent): def __init__(self, element): super(TimeRange, self).__init__(element) # Elements self.uom = get_uom(element.find(nspv("swe20:uom"))) try: self.constraint = AllowedTimes(element.find(nspv("swe20:constraint/swe20:AllowedTimes"))) # AllowedTimes, min=0, max=1 except: self.constraint = None # Attributes self.localFrame = testXMLAttribute(element,"localFrame") # anyURI, optional try: self.referenceTime = parser.parse(testXMLAttribute(element,"referenceTime")) # dateTime, optional except (AttributeError, ValueError, TypeError): self.referenceTime = None values = make_pair(testXMLValue(element.find(nspv("swe20:value")))) # TimePosition, min=0, max=1 self.value = [get_time(t, self.referenceTime, self.uom) for t in values] class DataRecord(AbstractDataComponent): def __init__(self, element): super(DataRecord, self).__init__(element) # Elements self.field = [Field(x) for x in element.findall(nspv("swe20:field"))] def get_by_name(self, name): return next((x for x in self.field if x.name == name), None) class Field(NamedObject): def __init__(self, element): super(Field, self).__init__(element) class Vector(AbstractDataComponent): def __init__(self, element): super(Vector, self).__init__(element) # Elements self.coordinate = [Coordinate(x) for x in element.findall(nspv("swe20:coordinate"))] # Attributes self.referenceFrame = testXMLAttribute(element,"referenceFrame") # anyURI, required self.localFrame = testXMLAttribute(element,"localFrame") # anyURI, optional def get_by_name(self, name): return next((x for x in self.coordinate if x.name == name), None) class Coordinate(NamedObject): def __init__(self, element): super(Coordinate, self).__init__(element) #if element[-1].tag not in AnyNumerical: # print "Coordinate does not appear to be an AnyNumerical member" class DataChoice(AbstractDataComponent): def __init__(self, element): super(DataChoice, self).__init__(element) self.item = [Item(x) for x in element.findall(nspv("swe20:item"))] def get_by_name(self, name): return next((x for x in self.item if x.name == name), None) class Item(NamedObject): def __init__(self, element): super(Item, self).__init__(element) class DataArray(AbstractDataComponent): def __init__(self, element): super(DataArray, self).__init__(element) self.elementCount = element.find(nspv("swe20:elementCount/swe20:Count")) # required self.elementType = ElementType(element.find(nspv("swe20:elementType"))) # required self.values = testXMLValue(element.find(nspv("swe20:values"))) try: self.encoding = AbstractEncoding(element.find(nspv("swe20:encoding"))) except: self.encoding = None class Matrix(AbstractDataComponent): def __init__(self, element): super(Matrix, self).__init__(element) self.elementCount = element.find(nspv("swe20:elementCount/swe20:Count")) # required self.elementType = ElementType(element.find(nspv("swe20:elementType"))) # required self.encoding = AbstractEncoding(element.find(nspv("swe20:encoding"))) self.values = testXMLValue(element.find(nspv("swe20:values"))) self.referenceFrame = testXMLAttribute(element, "referenceFrame") # anyURI, required self.localFrame = testXMLAttribute(element, "localFrame") # anyURI, optional class DataStream(AbstractSWEIdentifiable): def __init__(self, element): super(DataStream, self).__init__(element) self.elementCount = element.find(nspv("swe20:elementCount/swe20:Count")) # optional self.elementType = ElementType(element.find(nspv("swe20:elementType"))) # optional self.encoding = AbstractEncoding(element.find(nspv("swe20:encoding"))) self.values = testXMLValue(element.find(nspv("swe20:values"))) class ElementType(NamedObject): def __init__(self, element): super(ElementType, self).__init__(element) class AbstractEncoding(object): def __new__(cls, element): t = element[-1].tag.split("}")[-1] if t == "TextEncoding": return super(AbstractEncoding, cls).__new__(TextEncoding) elif t == "XMLEncoding": return super(AbstractEncoding, cls).__new__(XMLEncoding) elif t == "BinaryEncoding": return super(AbstractEncoding, cls).__new__(BinaryEncoding) class TextEncoding(AbstractEncoding): def __init__(self, element): self.tokenSeparator = testXMLAttribute(element[-1], "tokenSeparator") # string, required self.blockSeparator = testXMLAttribute(element[-1], "blockSeparator") # string, required self.decimalSeparator = testXMLAttribute(element[-1], "decimalSeparator") or "." # string, optional, default="." self.collapseWhiteSpaces = get_boolean(testXMLAttribute(element[-1], "collapseWhiteSpaces")) or True # boolean, optional, default=True class XMLEncoding(AbstractEncoding): def __init__(self, element): raise NotImplementedError class BinaryEncoding(AbstractEncoding): def __init__(self, element): raise NotImplementedError # TODO: Individually whitelist valid classes which correspond to XML tags obj_mapping = {name: obj for name, obj in inspect.getmembers(modules[__name__], inspect.isclass)} OWSLib-0.16.0/owslib/swe/observation/000077500000000000000000000000001321706412000173215ustar00rootroot00000000000000OWSLib-0.16.0/owslib/swe/observation/__init__.py000066400000000000000000000001041321706412000214250ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/swe/observation/om.py000066400000000000000000000075451321706412000203210ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2014 Pete Taylor # # Authors : Pete Taylor # # Contact email: peterataylor@gmail.com # ============================================================================= from owslib.util import nspath_eval, extract_time from owslib.namespaces import Namespaces from owslib.util import testXMLAttribute, testXMLValue def get_namespaces(): ns = Namespaces() return ns.get_namespaces(["swe20", "xlink", "sos20", "om20", "gml32", "xsi"]) namespaces = get_namespaces() def nspv(path): return nspath_eval(path, namespaces) class TimePeriod(object): ''' Basic class for gml TimePeriod ''' def __init__(self, start, end): self.start = start self.end = end def __str__(self): return ("start: " + str(self.start) + " " + "end: " + str(self.end)) class OM_Observation(object): ''' The base OM_Observation type, of which there may be many specialisations, e.g. MesaurementObservation, SWE Observation, WML2 etc. Currently assumes that many properties are xlink only (not inline). ''' def __init__(self, element): self.type = testXMLAttribute(element.find(nspv( "om20:type")), nspv("xlink:href")) self.featureOfInterest = testXMLAttribute(element.find(nspv( "om20:featureOfInterest")), nspv("xlink:href")) self.observedProperty = testXMLAttribute(element.find(nspv( "om20:observedProperty")), nspv("xlink:href")) self.procedure = testXMLAttribute(element.find(nspv( "om20:procedure")), nspv("xlink:href")) ''' Determine if phenom time is instant or a period. This depend on the type of observation -- this could be split out ''' instant_element = element.find(nspv( "om20:phenomenonTime/gml32:TimeInstant")) if instant_element is not None: self.phenomenonTime = extract_time(instant_element) else: start = extract_time(element.find(nspv( "om20:phenomenonTime/gml32:TimePeriod/gml32:beginPosition"))) end = extract_time(element.find(nspv( "om20:phenomenonTime/gml32:TimePeriod/gml32:endPosition"))) self.phenomenonTime = TimePeriod(start, end) self.resultTime = extract_time(element.find(nspv( "om20:resultTime/gml32:TimeInstant/gml32:timePosition"))) self.result = element.find(nspv("om20:result")) def get_result(self): ''' This will handle different result types using specialised observation types ''' return self.result class MeasurementObservation(OM_Observation): ''' Specialised observation type that has a measurement (value + uom) as result type ''' def __init__(self, element): super(MeasurementObservation, self).__init__(element) self._parse_result() def _parse_result(self): ''' Parse the result property, extracting the value and unit of measure ''' if self.result is not None: uom = testXMLAttribute(self.result, "uom") value_str = testXMLValue(self.result) try: value = float(value_str) except: raise ValueError("Error parsing measurement value") self.result = Measurement(value, uom) def get_result(self): return self.result class Result(object): ''' Base class for different OM_Observation result types ''' def __init__(self, element): pass class Measurement(Result): ''' A single measurement (value + uom) ''' def __init__(self, value, uom): super(Measurement, self).__init__(None) self.value = value self.uom = uom def __str__(self): return str(self.value) + "(" + self.uom + ")" OWSLib-0.16.0/owslib/swe/observation/sos100.py000066400000000000000000000314251321706412000207250ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) import cgi from owslib.etree import etree from datetime import datetime try: # Python 3 from urllib.parse import urlencode except ImportError: # Python 2 from urllib import urlencode from owslib import ows from owslib.crs import Crs from owslib.fes import FilterCapabilities from owslib.util import openURL, testXMLValue, nspath_eval, nspath, extract_time from owslib.namespaces import Namespaces def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["ogc","sa","sml","gml","sos","swe","xlink"]) ns["ows"] = n.get_namespace("ows110") return ns namespaces = get_namespaces() class SensorObservationService_1_0_0(object): """ Abstraction for OGC Sensor Observation Service (SOS). Implements ISensorObservationService. """ def __new__(self, url, version, xml=None, username=None, password=None): """overridden __new__ method""" obj=object.__new__(self) obj.__init__(url, version, xml, username, password) return obj def __getitem__(self,id): ''' check contents dictionary to allow dict like access to service observational offerings''' if id in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[id] else: raise KeyError("No Observational Offering with id: %s" % id) def __init__(self, url, version='1.0.0', xml=None, username=None, password=None): """Initialize.""" self.url = url self.username = username self.password = password self.version = version self._capabilities = None # Authentication handled by Reader reader = SosCapabilitiesReader( version=self.version, url=self.url, username=self.username, password=self.password ) if xml: # read from stored xml self._capabilities = reader.read_string(xml) else: # read from server self._capabilities = reader.read(self.url) # Avoid building metadata if the response is an Exception if self._capabilities.tag == nspath_eval("ows:ExceptionReport", namespaces): raise ows.ExceptionReport(self._capabilities) # build metadata objects self._build_metadata() def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) def _build_metadata(self): """ Set up capabilities metadata objects """ self.updateSequence = self._capabilities.attrib.get('updateSequence') # ows:ServiceIdentification metadata service_id_element = self._capabilities.find(nspath_eval('ows:ServiceIdentification', namespaces)) self.identification = ows.ServiceIdentification(service_id_element) # ows:ServiceProvider metadata service_provider_element = self._capabilities.find(nspath_eval('ows:ServiceProvider', namespaces)) self.provider = ows.ServiceProvider(service_provider_element) # ows:OperationsMetadata metadata self.operations=[] for elem in self._capabilities.findall(nspath_eval('ows:OperationsMetadata/ows:Operation', namespaces)): self.operations.append(ows.OperationsMetadata(elem)) # sos:FilterCapabilities filters = self._capabilities.find(nspath_eval('sos:Filter_Capabilities', namespaces)) if filters is not None: self.filters = FilterCapabilities(filters) else: self.filters = None # sos:Contents metadata self.contents = {} self.offerings = [] for offering in self._capabilities.findall(nspath_eval('sos:Contents/sos:ObservationOfferingList/sos:ObservationOffering', namespaces)): off = SosObservationOffering(offering) self.contents[off.id] = off self.offerings.append(off) def describe_sensor(self, outputFormat=None, procedure=None, method='Get', **kwargs): try: base_url = next((m.get('url') for m in self.getOperationByName('DescribeSensor').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'SOS', 'version': self.version, 'request': 'DescribeSensor'} # Required Fields assert isinstance(outputFormat, str) request['outputFormat'] = outputFormat assert isinstance(procedure, str) request['procedure'] = procedure url_kwargs = {} if 'timeout' in kwargs: url_kwargs['timeout'] = kwargs.pop('timeout') # Client specified timeout value # Optional Fields if kwargs: for kw in kwargs: request[kw]=kwargs[kw] data = urlencode(request) response = openURL(base_url, data, method, username=self.username, password=self.password, **url_kwargs).read() tr = etree.fromstring(response) if tr.tag == nspath_eval("ows:ExceptionReport", namespaces): raise ows.ExceptionReport(tr) return response def get_observation(self, responseFormat=None, offerings=None, observedProperties=None, eventTime=None, procedure=None, method='Get', **kwargs): """ Parameters ---------- format : string Output format. Provide one that is available for all offerings method : string Optional. HTTP DCP method name: Get or Post. Must **kwargs : extra arguments anything else e.g. vendor specific parameters """ try: base_url = next((m.get('url') for m in self.getOperationByName('GetObservation').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'SOS', 'version': self.version, 'request': 'GetObservation'} # Required Fields assert isinstance(offerings, list) and len(offerings) > 0 request['offering'] = ','.join(offerings) assert isinstance(observedProperties, list) and len(observedProperties) > 0 request['observedProperty'] = ','.join(observedProperties) assert isinstance(responseFormat, str) request['responseFormat'] = responseFormat # Optional Fields if eventTime is not None: request['eventTime'] = eventTime url_kwargs = {} if 'timeout' in kwargs: url_kwargs['timeout'] = kwargs.pop('timeout') # Client specified timeout value if procedure is not None: request['procedure'] = procedure if kwargs: for kw in kwargs: request[kw]=kwargs[kw] data = urlencode(request) response = openURL(base_url, data, method, username=self.username, password=self.password, **url_kwargs).read() try: tr = etree.fromstring(response) if tr.tag == nspath_eval("ows:ExceptionReport", namespaces): raise ows.ExceptionReport(tr) else: return response except ows.ExceptionReport: raise except BaseException: return response def get_operation_by_name(self, name): """ Return a Operation item by name, case insensitive """ for item in self.operations: if item.name.lower() == name.lower(): return item raise KeyError("No Operation named %s" % name) class SosObservationOffering(object): def __init__(self, element): self._root = element self.id = testXMLValue(self._root.attrib.get(nspath_eval('gml:id', namespaces)), True) self.description = testXMLValue(self._root.find(nspath_eval('gml:description', namespaces))) self.name = testXMLValue(self._root.find(nspath_eval('gml:name', namespaces))) val = testXMLValue(self._root.find(nspath_eval('gml:srsName', namespaces))) if val is not None: self.srs = Crs(val) # LOOK: Check on GML boundedBy to make sure we handle all of the cases # gml:boundedBy try: envelope = self._root.find(nspath_eval('gml:boundedBy/gml:Envelope', namespaces)) lower_left_corner = testXMLValue(envelope.find(nspath_eval('gml:lowerCorner', namespaces))).split() upper_right_corner = testXMLValue(envelope.find(nspath_eval('gml:upperCorner', namespaces))).split() # (left, bottom, right, top) in self.bbox_srs units self.bbox = (float(lower_left_corner[1]), float(lower_left_corner[0]), float(upper_right_corner[1]), float(upper_right_corner[0])) self.bbox_srs = Crs(testXMLValue(envelope.attrib.get('srsName'), True)) except Exception: self.bbox = None self.bbox_srs = None # LOOK: Support all gml:TimeGeometricPrimitivePropertyType # Right now we are just supporting gml:TimePeriod # sos:Time begin_position_element = self._root.find(nspath_eval('sos:time/gml:TimePeriod/gml:beginPosition', namespaces)) self.begin_position = extract_time(begin_position_element) end_position_element = self._root.find(nspath_eval('sos:time/gml:TimePeriod/gml:endPosition', namespaces)) self.end_position = extract_time(end_position_element) self.result_model = testXMLValue(self._root.find(nspath_eval('sos:resultModel', namespaces))) self.procedures = [] for proc in self._root.findall(nspath_eval('sos:procedure', namespaces)): self.procedures.append(testXMLValue(proc.attrib.get(nspath_eval('xlink:href', namespaces)), True)) # LOOK: Support swe:Phenomenon here # this includes compound properties self.observed_properties = [] for op in self._root.findall(nspath_eval('sos:observedProperty', namespaces)): self.observed_properties.append(testXMLValue(op.attrib.get(nspath_eval('xlink:href', namespaces)), True)) self.features_of_interest = [] for fot in self._root.findall(nspath_eval('sos:featureOfInterest', namespaces)): self.features_of_interest.append(testXMLValue(fot.attrib.get(nspath_eval('xlink:href', namespaces)), True)) self.response_formats = [] for rf in self._root.findall(nspath_eval('sos:responseFormat', namespaces)): self.response_formats.append(testXMLValue(rf)) self.response_modes = [] for rm in self._root.findall(nspath_eval('sos:responseMode', namespaces)): self.response_modes.append(testXMLValue(rm)) def __str__(self): return 'Offering id: %s, name: %s' % (self.id, self.name) def __repr__(self): return "" % self.name class SosCapabilitiesReader(object): def __init__(self, version="1.0.0", url=None, username=None, password=None): self.version = version self.url = url self.username = username self.password = password def capabilities_url(self, service_url): """ Return a capabilities url """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'SOS')) if 'request' not in params: qs.append(('request', 'GetCapabilities')) if 'acceptVersions' not in params: qs.append(('acceptVersions', self.version)) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, service_url): """ Get and parse a WMS capabilities document, returning an elementtree instance service_url is the base url, to which is appended the service, acceptVersions, and request parameters """ getcaprequest = self.capabilities_url(service_url) spliturl=getcaprequest.split('?') u = openURL(spliturl[0], spliturl[1], method='Get', username=self.username, password=self.password) return etree.fromstring(u.read()) def read_string(self, st): """ Parse a SOS capabilities document, returning an elementtree instance st should be an XML capabilities document """ if not isinstance(st, bytes): raise ValueError("String must be of type bytes, not %s" % type(st)) return etree.fromstring(st) OWSLib-0.16.0/owslib/swe/observation/sos200.py000066400000000000000000000356301321706412000207300ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) import cgi from owslib.etree import etree try: from urllib.parse import urlencode # Python 3 except ImportError: from urllib import urlencode # Python 2 from owslib import ows from owslib.crs import Crs from owslib.fes import FilterCapabilities200 from owslib.util import openURL, testXMLValue, testXMLAttribute, nspath_eval, extract_time from owslib.namespaces import Namespaces from owslib.swe.observation.om import MeasurementObservation from owslib.swe.observation.waterml2 import MeasurementTimeseriesObservation def get_namespaces(): n = Namespaces() ns = n.get_namespaces(["fes", "ogc", "xsi", "om20", "gml32", "sa", "sml", "swe20", "swes", "xlink"]) ns["ows"] = n.get_namespace("ows110") ns["sos"] = n.get_namespace("sos20") return ns namespaces = get_namespaces() class SensorObservationService_2_0_0(object): """ Abstraction for OGC Sensor Observation Service (SOS). Implements ISensorObservationService. """ def __new__(self, url, version, xml=None, username=None, password=None): """overridden __new__ method""" obj = object.__new__(self) obj.__init__(url, version, xml, username, password) return obj def __getitem__(self, id): ''' check contents dictionary to allow dict like access to service observational offerings''' if id in self.__getattribute__('contents').keys(): return self.__getattribute__('contents')[id] else: raise KeyError("No Observational Offering with id: %s" % id) def __init__(self, url, version='2.0.0', xml=None, username=None, password=None): """Initialize.""" self.url = url self.username = username self.password = password self.version = version self._capabilities = None # Authentication handled by Reader reader = SosCapabilitiesReader( version=self.version, url=self.url, username=self.username, password=self.password ) if xml: # read from stored xml self._capabilities = reader.read_string(xml) else: # read from server self._capabilities = reader.read(self.url) # Avoid building metadata if the response is an Exception se = self._capabilities.find(nspath_eval('ows:ExceptionReport', namespaces)) if se is not None: raise ows.ExceptionReport(se) # build metadata objects self._build_metadata() def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) def _build_metadata(self): """ Set up capabilities metadata objects """ self.updateSequence = self._capabilities.attrib.get('updateSequence') # ows:ServiceIdentification metadata service_id_element = self._capabilities.find(nspath_eval('ows:ServiceIdentification', namespaces)) self.identification = ows.ServiceIdentification(service_id_element) # ows:ServiceProvider metadata service_provider_element = self._capabilities.find(nspath_eval('ows:ServiceProvider', namespaces)) self.provider = ows.ServiceProvider(service_provider_element) # ows:OperationsMetadata metadata self.operations = [] for elem in self._capabilities.findall(nspath_eval('ows:OperationsMetadata/ows:Operation', namespaces)): self.operations.append(ows.OperationsMetadata(elem)) # sos:FilterCapabilities filters = self._capabilities.find(nspath_eval('sos:Filter_Capabilities', namespaces)) if filters is not None: self.filters = FilterCapabilities200(filters) else: self.filters = None # sos:Contents metadata self.contents = {} self.offerings = [] for offering in self._capabilities.findall(nspath_eval('sos:contents/sos:Contents/swes:offering/sos:ObservationOffering', namespaces)): off = SosObservationOffering(offering) self.contents[off.id] = off self.offerings.append(off) self.observed_properties = [] for op in self._capabilities.findall(nspath_eval('sos:contents/sos:Contents/swes:observableProperty', namespaces)): observed_prop = testXMLValue(op) self.observed_properties.append(observed_prop) def describe_sensor(self, outputFormat=None, procedure=None, method=None, **kwargs): method = method or 'Get' try: base_url = next((m.get('url') for m in self.getOperationByName('DescribeSensor').methods if m.get('type').lower() == method.lower())) except StopIteration: base_url = self.url request = {'service': 'SOS', 'version': self.version, 'request': 'DescribeSensor'} # Required Fields assert isinstance(outputFormat, str) request['procedureDescriptionFormat'] = outputFormat assert isinstance(procedure, str) request['procedure'] = procedure url_kwargs = {} if 'timeout' in kwargs: url_kwargs['timeout'] = kwargs.pop('timeout') # Client specified timeout value # Optional Fields if kwargs: for kw in kwargs: request[kw] = kwargs[kw] response = openURL(base_url, request, method, username=self.username, password=self.password, **url_kwargs).read() tr = etree.fromstring(response) if tr.tag == nspath_eval("ows:ExceptionReport", namespaces): raise ows.ExceptionReport(tr) return response def get_observation(self, responseFormat=None, offerings=None, observedProperties=None, eventTime=None, procedure=None, method=None, **kwargs): """ Parameters ---------- format : string Output format. Provide one that is available for all offerings method : string Optional. HTTP DCP method name: Get or Post. Must **kwargs : extra arguments anything else e.g. vendor specific parameters """ method = method or 'Get' # Pluck out the get observation URL for HTTP method - methods is an # array of dicts methods = self.get_operation_by_name('GetObservation').methods base_url = [ m['url'] for m in methods if m['type'] == method][0] request = {'service': 'SOS', 'version': self.version, 'request': 'GetObservation'} # Required Fields assert isinstance(offerings, list) and len(offerings) > 0 request['offering'] = ','.join(offerings) assert isinstance(observedProperties, list) and len(observedProperties) > 0 request['observedProperty'] = ','.join(observedProperties) if responseFormat is not None: request['responseFormat'] = responseFormat # Optional Fields if eventTime is not None: request['temporalFilter'] = eventTime url_kwargs = {} if 'timeout' in kwargs: url_kwargs['timeout'] = kwargs.pop('timeout') # Client specified timeout value if procedure is not None: request['procedure'] = procedure if kwargs: for kw in kwargs: request[kw] = kwargs[kw] response = openURL(base_url, request, method, username=self.username, password=self.password, **url_kwargs).read() try: tr = etree.fromstring(response) if tr.tag == nspath_eval("ows:ExceptionReport", namespaces): raise ows.ExceptionReport(tr) else: return response except ows.ExceptionReport: raise except BaseException: return response def get_operation_by_name(self, name): """ Return a Operation item by name, case insensitive """ for item in self.operations: if item.name.lower() == name.lower(): return item raise KeyError("No Operation named %s" % name) class SosObservationOffering(object): def __init__(self, element): self._root = element self.id = testXMLValue(self._root.find(nspath_eval('swes:identifier', namespaces))) if self.id is None: self.id = testXMLValue(self._root.attrib.get(nspath_eval('swes:id', namespaces)), True) self.description = testXMLValue(self._root.find(nspath_eval('swes:description', namespaces))) self.name = testXMLValue(self._root.find(nspath_eval('swes:name', namespaces))) # sos:observedArea try: envelope = self._root.find(nspath_eval('sos:observedArea/gml32:Envelope', namespaces)) lower_left_corner = testXMLValue(envelope.find(nspath_eval('gml32:lowerCorner', namespaces))).split() upper_right_corner = testXMLValue(envelope.find(nspath_eval('gml32:upperCorner', namespaces))).split() # (left, bottom, right, top) in self.bbox_srs units self.bbox = (float(lower_left_corner[1]), float(lower_left_corner[0]), float(upper_right_corner[1]), float(upper_right_corner[0])) self.bbox_srs = Crs(testXMLValue(envelope.attrib.get('srsName'), True)) except Exception: self.bbox = None self.bbox_srs = None # LOOK: Support all gml:TimeGeometricPrimitivePropertyType # Right now we are just supporting gml:TimePeriod # sos:Time begin_position_element = self._root.find(nspath_eval('sos:phenomenonTime/gml32:TimePeriod/gml32:beginPosition', namespaces)) self.begin_position = extract_time(begin_position_element) end_position_element = self._root.find(nspath_eval('sos:phenomenonTime/gml32:TimePeriod/gml32:endPosition', namespaces)) self.end_position = extract_time(end_position_element) self.procedures = [] for proc in self._root.findall(nspath_eval('swes:procedure', namespaces)): self.procedures.append(testXMLValue(proc)) self.procedure_description_formats = [] for proc in self._root.findall(nspath_eval('swes:procedureDescriptionFormat', namespaces)): self.procedure_description_formats.append(testXMLValue(proc)) # LOOK: Support swe:Phenomenon here # this includes compound properties self.observed_properties = [] for op in self._root.findall(nspath_eval('swes:observableProperty', namespaces)): self.observed_properties.append(testXMLValue(op)) self.features_of_interest = [] for fot in self._root.findall(nspath_eval('sos:featureOfInterest', namespaces)): self.features_of_interest.append(testXMLValue(fot.attrib.get(nspath_eval('xlink:href', namespaces)), True)) self.response_formats = [] for rf in self._root.findall(nspath_eval('sos:responseFormat', namespaces)): self.response_formats.append(testXMLValue(rf)) self.observation_models = [] for om in self._root.findall(nspath_eval('sos:observationType', namespaces)): self.observation_models.append(testXMLValue(om)) def __str__(self): return 'Offering id: %s, name: %s' % (self.id, self.name) def __repr__(self): return "" % self.name class SosCapabilitiesReader(object): def __init__(self, version="2.0.0", url=None, username=None, password=None): self.version = version self.url = url self.username = username self.password = password def capabilities_url(self, service_url): """ Return a capabilities url """ qs = [] if service_url.find('?') != -1: qs = cgi.parse_qsl(service_url.split('?')[1]) params = [x[0] for x in qs] if 'service' not in params: qs.append(('service', 'SOS')) if 'request' not in params: qs.append(('request', 'GetCapabilities')) if 'acceptversions' not in params: qs.append(('acceptversions', self.version)) urlqs = urlencode(tuple(qs)) return service_url.split('?')[0] + '?' + urlqs def read(self, service_url): """ Get and parse a WMS capabilities document, returning an elementtree instance service_url is the base url, to which is appended the service, version, and request parameters """ getcaprequest = self.capabilities_url(service_url) spliturl = getcaprequest.split('?') u = openURL(spliturl[0], spliturl[1], method='Get', username=self.username, password=self.password) return etree.fromstring(u.read()) def read_string(self, st): """ Parse a SOS capabilities document, returning an elementtree instance st should be an XML capabilities document """ if not isinstance(st, str) and not isinstance(st, bytes): raise ValueError("String must be of type string or bytes, not %s" % type(st)) return etree.fromstring(st) class SOSGetObservationResponse(object): """ The base response type from SOS2.0. Container for OM_Observation objects. """ def __init__(self, element): obs_data = element.findall( nspath_eval("sos:observationData/om20:OM_Observation", namespaces)) self.observations = [] decoder = ObservationDecoder() for obs in obs_data: parsed_obs = decoder.decode_observation(obs) self.observations.append(parsed_obs) def __iter__(self): for obs in self.observations: yield obs def __getitem__(self, index): return self.observations[index] class ObservationDecoder(object): """ Class to handle decoding different Observation types. The decode method inspects the type of om:result element and returns the appropriate observation type, which handles parsing of the result. """ def decode_observation(self, element): """ Returns a parsed observation of the appropriate type, by inspecting the result element. 'element' input is the XML tree of the OM_Observation object """ result_element = element.find(nspath_eval("om20:result", namespaces)) if len(result_element) == 0: result_type = testXMLAttribute( result_element, nspath_eval("xsi:type", namespaces)) else: result_type = list(result_element)[0].tag if result_type.find('MeasureType') != -1: return MeasurementObservation(element) elif (result_type == '{http://www.opengis.net/waterml/2.0}MeasurementTimeseries'): return MeasurementTimeseriesObservation(element) else: raise NotImplementedError('Result type {} not supported'.format(result_type)) OWSLib-0.16.0/owslib/swe/observation/waterml2.py000066400000000000000000000121451321706412000214330ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2014 Pete Taylor # # Authors : Pete Taylor # # Contact email: peterataylor@gmail.com # ============================================================================= from owslib.util import nspath_eval from owslib.namespaces import Namespaces from owslib.util import testXMLAttribute, testXMLValue from owslib.swe.common import Quantity from dateutil import parser from owslib.swe.observation.om import OM_Observation, Result def get_namespaces(): ns = Namespaces() return ns.get_namespaces(["swe20", "xlink", "sos20", "om20", "gml32", "xsi", "wml2"]) namespaces = get_namespaces() def nspv(path): return nspath_eval(path, namespaces) class MeasurementTimeseriesObservation(OM_Observation): ''' A timeseries observation that has a measurement timeseries as result. An implementation of the WaterML2 MeasurementTimeseriesObservation. ''' def __init__(self, element): super(MeasurementTimeseriesObservation, self).__init__(element) self._parse_result() def _parse_result(self): ''' Parse the result element of the observation type ''' if self.result is not None: result = self.result.find(nspv( "wml2:MeasurementTimeseries")) self.result = MeasurementTimeseries(result) def get_result(self): return self.result class Timeseries(Result): ''' Generic time-series class ''' def __init__(self, element): super(Timeseries, self).__init__(element) class MeasurementTimeseries(Timeseries): ''' A WaterML2.0 timeseries of measurements, with per-value metadata. ''' def __init__(self, element): super(MeasurementTimeseries, self).__init__(element) self.defaultTVPMetadata = TVPMeasurementMetadata(element.find( nspv("wml2:defaultPointMetadata/wml2:DefaultTVPMeasurementMetadata"))) elems = element.findall(nspv("wml2:point")) self.points = [] for point in elems: self.points.append(TimeValuePair(point)) def __iter__(self): for point in self.points: yield point def __len__(self): return len(self.points) def _parse_metadata(self, element): ''' Parse metadata elements relating to timeseries: TS: baseTime, spacing, commentBlock, parameter MTS: startAnchor, endAnchor, cumulative, accAnchor/Length, maxGap ''' pass class TimeValuePair(object): ''' A time-value pair as specified by WaterML2.0 Currently no support for tvp metadata. ''' def __init__(self, element): date_str = testXMLValue( element.find(nspv("wml2:MeasurementTVP/wml2:time"))) try: self.datetime = parser.parse(date_str) except: raise ValueError("Error parsing datetime string: %s" % date_str) value_str = testXMLValue(element.find(nspv( "wml2:MeasurementTVP/wml2:value"))) try: self.value = float(value_str) except: self.value = float('nan') def __str__(self): return str(self.datetime) + "," + str(self.value) class TVPMetadata(object): def __init__(self, element): ''' Base time-value pair metadata. Still to do: - relatedObservation ''' self.quality = testXMLAttribute(element.find(nspv( "wml2:quality")), nspv("xlink:href")) self.nilReason = testXMLAttribute(element.find(nspv( "wml2:nilReason")), nspv("xlink:href")) self.comment = testXMLValue(element.find(nspv( "wml2:comment"))) self.qualifier = testXMLAttribute(element.find(nspv( "wml2:qualifier")), nspv("xlink:href")) self.processing = testXMLValue(element.find(nspv( "wml2:processing")), nspv("xlink:href")) self.source = testXMLValue(element.find(nspv( "wml2:source")), nspv("xlink:href")) class TVPMeasurementMetadata(TVPMetadata): ''' Measurement specific metadata. Still to do: - aggregationDuration ''' def __init__(self, element): super(TVPMeasurementMetadata, self).__init__(element) self.uom = testXMLAttribute(element.find(nspv( "wml2:uom")), "code") self.interpolationType = testXMLAttribute(element.find(nspv( "wml2:interpolationType")), nspv("xlink:href")) self.censoredReason = testXMLAttribute(element.find(nspv( "wml2:censoredReason")), "xlink:href") accuracy = testXMLValue(element.find(nspv("wml2:accuracy"))) if accuracy is not None: self.accuracy = Quantity(element) class MeasurementTimeseriesDomainRange(Timeseries): ''' Class to implement domain range timeseries encoding ''' def __init__(self, element): super(MeasurementTimeseriesDomainRange, self, element).__init__() class MonitoringPoint(object): ''' A WaterML2.0 Monitoring Point, which is a specialised O&M SamplingPoint ''' def __init__(self, element): pass OWSLib-0.16.0/owslib/swe/sensor/000077500000000000000000000000001321706412000162775ustar00rootroot00000000000000OWSLib-0.16.0/owslib/swe/sensor/__init__.py000066400000000000000000000001041321706412000204030ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/swe/sensor/sml.py000066400000000000000000000347521321706412000174570ustar00rootroot00000000000000# encoding: utf-8 from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib import crs, util from owslib.util import testXMLValue, testXMLAttribute, nspath_eval, xmltag_split, dict_union, extract_xml_list from owslib.namespaces import Namespaces def get_namespaces(): n = Namespaces() namespaces = n.get_namespaces(["sml","gml","xlink"]) namespaces["ism"] = "urn:us:gov:ic:ism:v2" return namespaces namespaces = get_namespaces() def nsp(path): return nspath_eval(path, namespaces) class SensorML(object): def __init__(self, element): if isinstance(element, str) or isinstance(element, bytes): self._root = etree.fromstring(element) else: self._root = element if hasattr(self._root, 'getroot'): self._root = self._root.getroot() self.members = [Member(x) for x in self._root.findall(nsp('sml:member'))] class Member(object): def __new__(cls, element): t = element[-1].tag.split("}")[-1] if t == "System": return System(element.find(nsp("sml:System"))) elif t == "ProcessChain": return ProcessChain(element.find(nsp("sml:ProcessChain"))) elif t == "ProcessModel": return ProcessModel(element.find(nsp("sml:ProcessModel"))) elif t == "Component": return Component(element.find(nsp("sml:Component"))) class PropertyGroup(object): def __init__(self, element): # Both capabilities and characteristics contain a single swe:DataRecord element self.capabilities = {} for cap in element.findall(nsp('sml:capabilities')): name = testXMLAttribute(cap, "name") if name is not None: self.capabilities[name] = cap[0] self.characteristics = {} for cha in element.findall(nsp('sml:characteristics')): name = testXMLAttribute(cha, "name") if name is not None: self.characteristics[name] = cha[0] def get_capabilities_by_name(self, name): """ Return list of element by name, case insensitive """ return [self.capabilities[capab] for capab in self.capabilities.keys() if capab.lower() == name.lower()] def get_characteristics_by_name(self, name): """ Return list of element objects by name, case insensitive """ return [self.characteristics[charac] for charac in self.characteristics.keys() if charac.lower() == name.lower()] class ConstraintGroup(object): def __init__(self, element): # ism:SecurityAttributesOptionsGroup self.security = element.findall(nsp("sml:securityConstraint/sml:Security/ism:SecurityAttributesOptionGroup")) # gml:TimeInstant or gml:TimePeriod element self.validTime = element.find(nsp("sml:validTime")) self.rights = [Right(x) for x in element.findall(nsp("sml:legalConstraint/sml:Rights"))] class Documentation(object): def __init__(self, element): self.arcrole = testXMLAttribute(element, nsp("xlink:arcrole")) self.url = testXMLAttribute(element, nsp("xlink:href")) self.documents = [Document(d) for d in element.findall(nsp("sml:Document"))] class Document(object): def __init__(self, element): self.id = testXMLAttribute(element, nsp("gml:id")) self.version = testXMLValue(element.find(nsp("sml:version"))) self.description = testXMLValue(element.find(nsp("gml:description"))) self.date = testXMLValue(element.find(nsp("sml:date"))) try: self.contact = Contact(element.find(nsp("sml:contact"))) except AttributeError: self.contact = None self.format = testXMLValue(element.find(nsp('sml:format'))) self.url = testXMLAttribute(element.find(nsp('sml:onlineResource')), nsp('xlink:href')) class Right(object): def __init__(self, element): self.id = testXMLAttribute(element, nsp('gml:id')) self.privacyAct = testXMLAttribute(element, nsp('sml:privacyAct')) self.intellectualPropertyRights = testXMLAttribute(element, nsp('sml:intellectualPropertyRights')) self.copyRights = testXMLAttribute(element, nsp('sml:copyRights')) self.documentation = [Documentation(x) for x in element.findall(nsp("sml:documentation"))] class ReferenceGroup(object): def __init__(self, element): self.contacts = {} for contact in element.findall(nsp('sml:contact')): cont = Contact(contact) self.contacts[cont.role] = cont self.documentation = [Documentation(x) for x in element.findall(nsp("sml:documentation"))] def get_contacts_by_role(self, role): """ Return a Contact by role, case insensitive """ return [self.contacts[contact] for contact in self.contacts.keys() if contact.lower() == role.lower()] class GeneralInfoGroup(object): def __init__(self, element): self.keywords = extract_xml_list(element.findall(nsp('sml:keywords/sml:KeywordList/sml:keyword'))) self.identifiers = {} for identifier in element.findall(nsp('sml:identification/sml:IdentifierList/sml:identifier')): ident = Identifier(identifier) self.identifiers[ident.name] = ident self.classifiers = {} for classifier in element.findall(nsp('sml:classification/sml:ClassifierList/sml:classifier')): classi = Classifier(classifier) self.classifiers[classi.name] = classi def get_identifiers_by_name(self, name): """ Return list of Identifier objects by name, case insensitive """ return [self.identifiers[identifier] for identifier in self.identifiers.keys() if identifier.lower() == name.lower()] def get_classifiers_by_name(self, name): """ Return list of Classifier objects by name, case insensitive """ return [self.classifiers[classi] for classi in self.classifiers.keys() if classi.lower() == name.lower()] class Contact(object): def __init__(self, element): # TODO: This only supports the sml:contact/sml:ResponsibleParty elements, but there are numerous ways to store # contact information here. self.role = testXMLAttribute(element, nsp("xlink:role")) self.href = testXMLAttribute(element, nsp("xlink:href")) self.organization = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:organizationName'))) self.phone = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:phone/sml:voice'))) self.address = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:deliveryPoint'))) self.city = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:city'))) self.region = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:administrativeArea'))) self.postcode = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:postalCode'))) self.country = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:country'))) self.email = testXMLValue(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:address/sml:electronicMailAddress'))) self.url = testXMLAttribute(element.find(nsp('sml:ResponsibleParty/sml:contactInfo/sml:onlineResource')), nsp("xlink:href")) class HistoryGroup(object): def __init__(self, element): self.history = {} for event_member in element.findall(nsp('sml:history/sml:EventList/sml:member')): name = testXMLAttribute(event_member, "name") if self.history.get(name) is None: self.history[name] = [] for e in event_member.findall(nsp("sml:Event")): self.history[name].append(Event(e)) def get_history_by_name(self, name): """ Return Events list by members name """ return self.history.get(name.lower(), []) class Event(ReferenceGroup, GeneralInfoGroup): def __init__(self, element): ReferenceGroup.__init__(self, element) GeneralInfoGroup.__init__(self, element) self.id = testXMLAttribute(element, nsp("gml:id")) self.date = testXMLValue(element.find(nsp('sml:date'))) self.description = testXMLValue(element.find(nsp('gml:description'))) class MetadataGroup(GeneralInfoGroup, PropertyGroup, ConstraintGroup, ReferenceGroup, HistoryGroup): def __init__(self, element): GeneralInfoGroup.__init__(self, element) PropertyGroup.__init__(self, element) ConstraintGroup.__init__(self, element) ReferenceGroup.__init__(self, element) HistoryGroup.__init__(self, element) class AbstractFeature(object): def __init__(self, element): self.name = testXMLValue(element.find(nsp("gml:name"))) self.description = testXMLValue(element.find(nsp("gml:description"))) self.gmlBoundedBy = testXMLValue(element.find(nsp("gml:boundedBy"))) class AbstractProcess(AbstractFeature, MetadataGroup): def __init__(self, element): AbstractFeature.__init__(self, element) MetadataGroup.__init__(self, element) # sml:IoComponentPropertyType self.inputs = element.findall(nsp("sml:input")) # sml:IoComponentPropertyType self.outputs = element.findall(nsp("sml:output")) # swe:DataComponentPropertyType self.parameters = element.findall(nsp("sml:parameter")) class AbstractRestrictedProcess(AbstractFeature): """ Removes ('restricts' in xml schema language) gml:name, gml:description, and sml:metadataGroup from an AbstractProcess """ def __init__(self, element): AbstractFeature.__init__(self, element) self.name = None self.description = None class AbstractPureProcess(AbstractRestrictedProcess): def __init__(self, element): AbstractRestrictedProcess.__init__(self, element) # sml:IoComponentPropertyType self.inputs = element.findall(nsp("sml:input")) # sml:IoComponentPropertyType self.outputs = element.findall(nsp("sml:output")) # swe:DataComponentPropertyType self.parameters = element.findall(nsp("sml:parameter")) class ProcessModel(AbstractPureProcess): def __init__(self, element): AbstractPureProcess.__init__(self, element) self.method = ProcessMethod(element.find("method")) class CompositePropertiesGroup(object): def __init__(self, element): # All components should be of instance AbstractProcess (sml:_Process) self.components = element.findall(nsp("sml:components/sml:ComponentList/sml:component")) # sml:Link or sml:ArrayLink element self.connections = element.findall(nsp("sml:connections/sml:ConnectionList/sml:connection")) class PhysicalPropertiesGroup(object): def __init__(self, element): # gml:EngieeringCRS element self.spatialReferenceFrame = element.find(nsp("sml:spatialReferenceFrame/gml:EngineeringCRS")) # gml:TemporalCRS element self.temporalReferenceFrame = element.find(nsp("sml:temporalReferenceFrame/gml:TemporalCRS")) # gml:Envelope element self.smlBoundedBy = element.find(nsp("sml:boundedBy")) # swe:Time or sml:_Process element self.timePosition = element.find(nsp("sml:timePosition")) # It is either a sml:position OR and sml:location element here. Process both. # swe:Position, swe:Vector, or sml:_Process element self.positions = element.findall(nsp("sml:position")) # gml:Point of gml:_Curve self.location = element.find(nsp("sml:location")) try: self.interface = Interface(element.find(nsp("sml:interface"))) except AttributeError: self.interface = None class ProcessChain(AbstractPureProcess, CompositePropertiesGroup): def __init__(self, element): AbstractPureProcess.__init__(self, element) CompositePropertiesGroup.__init__(self, element) class System(AbstractProcess, PhysicalPropertiesGroup, CompositePropertiesGroup): def __init__(self, element): AbstractProcess.__init__(self, element) PhysicalPropertiesGroup.__init__(self, element) CompositePropertiesGroup.__init__(self, element) class Component(AbstractProcess, PhysicalPropertiesGroup): def __init__(self, element): AbstractProcess.__init__(self, element) PhysicalPropertiesGroup.__init__(self, element) self.method = ProcessMethod(element.find("method")) class Term(object): def __init__(self, element): self.codeSpace = testXMLAttribute(element.find(nsp('sml:Term/sml:codeSpace')), nsp("xlink:href")) self.definition = testXMLAttribute(element.find(nsp('sml:Term')), "definition") self.value = testXMLValue(element.find(nsp('sml:Term/sml:value'))) class Classifier(Term): def __init__(self, element): Term.__init__(self, element) self.name = testXMLAttribute(element, "name") class Identifier(Term): def __init__(self, element): Term.__init__(self, element) self.name = testXMLAttribute(element, "name") class ProcessMethod(MetadataGroup): """ Inherits from gml:AbstractGMLType """ def __init__(self, element): MetadataGroup.__init__(self, element) self.rules = element.find(nsp("sml:rules")) self.ioStructure = element.find(nsp("sml:IOStructureDefinition")) self.algorithm = element.find(nsp("sml:algorithm")) self.implementations = element.findall(nsp("sml:implementation")) class Interface(object): def __init__(self, element): self.name = testXMLAttribute(element, "name") self.interface_definition = InterfaceDefinition(element.find(nsp("sml:InterfaceDefinition"))) class InterfaceDefinition(object): def __init__(self, element): raise NotImplementedError("InterfaceDefinition is not implemented in OWSLib (yet)") class Link(object): def __init__(self, element): raise NotImplementedError("Link is not implemented in OWSLib (yet)") class ArrayLink(object): def __init__(self, element): raise NotImplementedError("ArrayLink is not implemented in OWSLib (yet)") OWSLib-0.16.0/owslib/tms.py000066400000000000000000000271111321706412000153470ustar00rootroot00000000000000# -*- coding: UTF-8 -*- # ============================================================================= # Copyright (C) 2013 Christian Ledermann # # Based on wms.py, which has the following copyright statement: # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= # TMS as defined in: # http://wiki.osgeo.org/wiki/Tile_Map_Service_Specification from __future__ import (absolute_import, division, print_function) from .etree import etree from .util import openURL, testXMLValue, ServiceException FORCE900913 = False def force900913(epsg): # http://osgeo-org.1560.n6.nabble.com/OSGEO-code-td3852851.html # "EPSG:900913" = ["OSGEO:41001", "EPSG:3785", "EPSG:3857", "EPSG:54004"] if FORCE900913 and epsg.upper() in ["OSGEO:41001", "EPSG:3785", "EPSG:3857", "EPSG:54004"]: return "EPSG:900913" else: return epsg class TileMapService(object): """Abstraction for OGC Tile Map Service (TMS). Implements IWebMapService. """ def __init__(self, url, version='1.0.0', xml=None, username=None, password=None, parse_remote_metadata=False, timeout=30): """Initialize.""" self.url = url self.username = username self.password = password self.version = version self.timeout = timeout self.services = None self._capabilities = None self.contents={} # Authentication handled by Reader reader = TMSCapabilitiesReader( self.version, url=self.url, un=self.username, pw=self.password ) if xml: # read from stored xml self._capabilities = reader.readString(xml) else: # read from server self._capabilities = reader.read(self.url, timeout=self.timeout) # build metadata objects self._buildMetadata(parse_remote_metadata) def _getcapproperty(self): if not self._capabilities: reader = TMSCapabilitiesReader( self.version, url=self.url, un=self.username, pw=self.password ) self._capabilities = ServiceMetadata(reader.read(self.url)) return self._capabilities def _buildMetadata(self, parse_remote_metadata=False): ''' set up capabilities metadata objects ''' if self._capabilities.attrib.get('version'): self.version = self._capabilities.attrib.get('version') self.identification=ServiceIdentification(self._capabilities, self.version) self.contents={} tilemaps = self._capabilities.find('TileMaps') if tilemaps is not None: for tilemap in tilemaps.findall('TileMap'): cm = ContentMetadata(tilemap, un=self.username, pw=self.password) if cm.id: if cm.id in self.contents: raise KeyError('Content metadata for layer "%s" already exists' % cm.id) self.contents[cm.id] = cm def getServiceXML(self): xml = None if self._capabilities is not None: xml = etree.tostring(self._capabilities) return xml def items(self, srs=None, profile=None): '''supports dict-like items() access''' items=[] if not srs and not profile: for item in self.contents: items.append((item,self.contents[item])) elif srs and profile: for item in self.contents: if (self.contents[item].srs == srs and self.contents[item].profile == profile): items.append((item,self.contents[item])) elif srs: for item in self.contents: if self.contents[item].srs == srs: items.append((item,self.contents[item])) elif profile: for item in self.contents: if self.contents[item].profile == profile: items.append((item,self.contents[item])) return items def _gettilefromset(self, tilesets, x, y,z, ext, timeout=None): for tileset in tilesets: if tileset['order'] == z: url = tileset['href'] + '/' + str(x) +'/' + str(y) + '.' + ext u = openURL(url, '', username = self.username, password = self.password, timeout=timeout or self.timeout) return u else: raise ValueError('cannot find zoomlevel %i for TileMap' % z) def gettile(self, x,y,z, id=None, title=None, srs=None, mimetype=None, timeout=None): if not id and not title and not srs: raise ValueError('either id or title and srs must be specified') if id: return self._gettilefromset(self.contents[id].tilemap.tilesets, x, y, z, self.contents[id].tilemap.extension, timeout=timeout) elif title and srs: for tm in self.contents.values(): if tm.title == title and tm.srs == srs: if mimetype: if tm.tilemap.mimetype == mimetype: return self._gettilefromset(tm.tilemap.tilesets, x, y, z, tm.tilemap.extension, timeout=timeout) else: #if no format is given we return the tile from the # first tilemap that matches name and srs return self._gettilefromset(tm.tilemap.tilesets, x, y,z, tm.tilemap.extension, timeout=timeout) else: raise ValueError('cannot find %s with projection %s for zoomlevel %i' %(title, srs, z) ) elif title or srs: ValueError('both title and srs must be specified') raise ValueError('''Specified Tile with id %s, title %s projection %s format %s at zoomlevel %i cannot be found''' %(id, title, srs, format, z)) class ServiceIdentification(object): def __init__(self, infoset, version): self._root=infoset if self._root.tag != 'TileMapService': raise ServiceException("Expected TileMapService tag, got %s" % self._root.tag) self.version = version self.title = testXMLValue(self._root.find('Title')) self.abstract = testXMLValue(self._root.find('Abstract')) self.keywords = [] f = self._root.find('KeywordList') if f is not None: self.keywords = f.text.split() self.url = self._root.attrib.get('services') class ContentMetadata(object): """ Abstraction for TMS layer metadata. """ def __str__(self): return 'Layer Title: %s, URL: %s' % (self.title, self.id) def __init__(self, elem, un=None, pw=None): if elem.tag != 'TileMap': raise ValueError('%s should be a TileMap' % (elem,)) self.id = elem.attrib['href'] self.title = elem.attrib['title'] self.srs = force900913(elem.attrib['srs']) self.profile = elem.attrib['profile'] self.password = pw self.username = pw self._tile_map = None self.type = elem.attrib.get('type') def _get_tilemap(self): if self._tile_map is None: self._tile_map = TileMap(self.id, un=self.username, pw=self.password) assert(self._tile_map.srs == self.srs) return self._tile_map @property def tilemap(self): return self._get_tilemap() @property def abstract(self): return self._get_tilemap().abstract @property def width(self): return self._get_tilemap().width @property def height(self): return self._get_tilemap().height @property def mimetype(self): return self._get_tilemap().mimetype @property def extension(self): return self._get_tilemap().extension @property def boundingBox(self): return self._get_tilemap().boundingBox @property def origin(self): return self._get_tilemap().origin class TileMap(object): title = None abstract = None srs = None boundingBox = None origin = None width = None height = None mimetype = None extension = None _element = None version = None tilemapservice = None tilesets = None profile = None def __init__(self, url=None, xml=None, un=None, pw=None): self.url = url self.username = un self.password = pw self.tilesets = [] if xml and not url: self.readString(xml) elif url: self.read(url) def _parse(self, elem): if elem.tag != 'TileMap': raise ValueError('%s should be a TileMap' % (elem,)) self._element = elem self.version = elem.attrib.get('version') self.tilemapservice = elem.attrib.get('tilemapservice') self.title = testXMLValue(elem.find('Title')) self.abstract = testXMLValue(elem.find('Abstract')) self.srs = force900913(testXMLValue(elem.find('SRS'))) bbox = elem.find('BoundingBox') self.boundingBox = (float(bbox.attrib['minx']), float(bbox.attrib['miny']), float(bbox.attrib['maxx']), float(bbox.attrib['maxy'])) origin = elem.find('Origin') self.origin = (float(origin.attrib['x']), float(origin.attrib['y'])) tf = elem.find('TileFormat') self.width = int(tf.attrib['width']) self.height = int(tf.attrib['height']) self.mimetype = tf.attrib['mime-type'] self.extension = tf.attrib['extension'] ts = elem.find('TileSets') if ts is not None: self.profile = ts.attrib.get('profile') tilesets = ts.findall('TileSet') for tileset in tilesets: href = tileset.attrib['href'] upp = float(tileset.attrib['units-per-pixel']) order = int(tileset.attrib['order']) self.tilesets.append({ 'href': href, 'units-per-pixel': upp, 'order': order}) def read(self, url): u = openURL(url, '', method='Get', username = self.username, password = self.password) self._parse(etree.fromstring(u.read())) def readString(self, st): if not isinstance(st, str): raise ValueError("String must be of type string, not %s" % type(st)) self._parse(etree.fromstring(st)) class TMSCapabilitiesReader(object): """Read and parse capabilities document into a lxml.etree infoset """ def __init__(self, version='1.0.0', url=None, un=None, pw=None): """Initialize""" self.version = version self._infoset = None self.url = url self.username = un self.password = pw def read(self, service_url, timeout=30): """Get and parse a TMS capabilities document, returning an elementtree instance """ u = openURL(service_url, '', method='Get', username=self.username, password=self.password, timeout=timeout) return etree.fromstring(u.read()) def readString(self, st): """Parse a TMS capabilities document, returning an elementtree instance string should be an XML capabilities document """ if not isinstance(st, str): raise ValueError("String must be of type string, not %s" % type(st)) return etree.fromstring(st) OWSLib-0.16.0/owslib/util.py000066400000000000000000000462621321706412000155310ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2008 Tom Kralidis # # Authors : Tom Kralidis # # Contact email: tomkralidis@gmail.com # ============================================================================= from __future__ import (absolute_import, division, print_function) import sys from collections import OrderedDict from dateutil import parser from datetime import datetime import pytz from owslib.etree import etree, ParseError from owslib.namespaces import Namespaces from six.moves.urllib.parse import urlsplit, urlencode, urlparse, parse_qs, urlunparse try: from StringIO import StringIO # Python 2 BytesIO = StringIO except ImportError: from io import StringIO, BytesIO # Python 3 import cgi import re from copy import deepcopy import warnings import six import requests import codecs """ Utility functions and classes """ class ServiceException(Exception): #TODO: this should go in ows common module when refactored. pass # http://stackoverflow.com/questions/6256183/combine-two-dictionaries-of-dictionaries-python dict_union = lambda d1,d2: dict((x,(dict_union(d1.get(x,{}),d2[x]) if isinstance(d2.get(x),dict) else d2.get(x,d1.get(x)))) for x in set(list(d1.keys())+list(d2.keys()))) # Infinite DateTimes for Python. Used in SWE 2.0 and other OGC specs as "INF" and "-INF" class InfiniteDateTime(object): def __lt__(self, other): return False def __gt__(self, other): return True def timetuple(self): return tuple() class NegativeInfiniteDateTime(object): def __lt__(self, other): return True def __gt__(self, other): return False def timetuple(self): return tuple() first_cap_re = re.compile('(.)([A-Z][a-z]+)') all_cap_re = re.compile('([a-z0-9])([A-Z])') def format_string(prop_string): """ Formats a property string to remove spaces and go from CamelCase to pep8 from: http://stackoverflow.com/questions/1175208/elegant-python-function-to-convert-camelcase-to-camel-case """ if prop_string is None: return '' st_r = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', prop_string) st_r = st_r.replace(' ','') return re.sub('([a-z0-9])([A-Z])', r'\1_\2', st_r).lower() def xml_to_dict(root, prefix=None, depth=1, diction=None): """ Recursively iterates through an xml element to convert each element in the tree to a (key,val). Where key is the element tag and val is the inner-text of the element. Note that this recursively go through the tree until the depth specified. Parameters =========== :root - root xml element, starting point of iteration :prefix - a string to prepend to the resulting key (optional) :depth - the number of depths to process in the tree (optional) :diction - the dictionary to insert the (tag,text) pairs into (optional) Return ======= Dictionary of (key,value); where key is the element tag stripped of namespace and cleaned up to be pep8 and value is the inner-text of the element. Note that duplicate elements will be replaced by the last element of the same tag in the tree. """ ret = diction if diction is not None else dict() for child in root: val = testXMLValue(child) # skip values that are empty or None if val is None or val == '': if depth > 1: ret = xml_to_dict(child,prefix=prefix,depth=(depth-1),diction=ret) continue key = format_string(child.tag.split('}')[-1]) if prefix is not None: key = prefix + key ret[key] = val if depth > 1: ret = xml_to_dict(child,prefix=prefix,depth=(depth-1),diction=ret) return ret class ResponseWrapper(object): """ Return object type from openURL. Provides a thin shim around requests response object to maintain code compatibility. """ def __init__(self, response): self._response = response def info(self): return self._response.headers def read(self): return self._response.content def geturl(self): return self._response.url.replace('&&', '&') # @TODO: __getattribute__ for poking at response def openURL(url_base, data=None, method='Get', cookies=None, username=None, password=None, timeout=30, headers=None): """ Function to open URLs. Uses requests library but with additional checks for OGC service exceptions and url formatting. Also handles cookies and simple user password authentication. """ headers = headers if headers is not None else {} rkwargs = {} rkwargs['timeout'] = timeout auth = None if username and password: auth = (username, password) rkwargs['auth'] = auth # FIXUP for WFS in particular, remove xml style namespace # @TODO does this belong here? method = method.split("}")[-1] if method.lower() == 'post': try: xml = etree.fromstring(data) headers['Content-Type'] = 'text/xml' except (ParseError, UnicodeEncodeError): pass rkwargs['data'] = data elif method.lower() == 'get': rkwargs['params'] = data else: raise ValueError("Unknown method ('%s'), expected 'get' or 'post'" % method) if cookies is not None: rkwargs['cookies'] = cookies req = requests.request(method.upper(), url_base, headers=headers, **rkwargs) if req.status_code in [400, 401]: raise ServiceException(req.text) if req.status_code in [404, 500, 502, 503, 504]: # add more if needed req.raise_for_status() # check for service exceptions without the http header set if 'Content-Type' in req.headers and req.headers['Content-Type'] in ['text/xml', 'application/xml', 'application/vnd.ogc.se_xml']: #just in case 400 headers were not set, going to have to read the xml to see if it's an exception report. se_tree = etree.fromstring(req.content) # to handle the variety of namespaces and terms across services # and versions, especially for "legacy" responses like WMS 1.3.0 possible_errors = [ '{http://www.opengis.net/ows}Exception', '{http://www.opengis.net/ows/1.1}Exception', '{http://www.opengis.net/ogc}ServiceException', 'ServiceException' ] for possible_error in possible_errors: serviceException = se_tree.find(possible_error) if serviceException is not None: # and we need to deal with some message nesting raise ServiceException('\n'.join([str(t).strip() for t in serviceException.itertext() if str(t).strip()])) return ResponseWrapper(req) #default namespace for nspath is OWS common OWS_NAMESPACE = 'http://www.opengis.net/ows/1.1' def nspath(path, ns=OWS_NAMESPACE): """ Prefix the given path with the given namespace identifier. Parameters ---------- - path: ElementTree API Compatible path expression - ns: the XML namespace URI. """ if ns is None or path is None: return -1 components = [] for component in path.split('/'): if component != '*': component = '{%s}%s' % (ns, component) components.append(component) return '/'.join(components) def nspath_eval(xpath, namespaces): ''' Return an etree friendly xpath ''' out = [] for chunks in xpath.split('/'): namespace, element = chunks.split(':') out.append('{%s}%s' % (namespaces[namespace], element)) return '/'.join(out) def cleanup_namespaces(element): """ Remove unused namespaces from an element """ if etree.__name__ == 'lxml.etree': etree.cleanup_namespaces(element) return element else: return etree.fromstring(etree.tostring(element)) def add_namespaces(root, ns_keys): if isinstance(ns_keys, six.string_types): ns_keys = [ns_keys] namespaces = Namespaces() ns_keys = [(x, namespaces.get_namespace(x)) for x in ns_keys] if etree.__name__ != 'lxml.etree': # We can just add more namespaces when not using lxml. # We can't re-add an existing namespaces. Get a list of current # namespaces in use existing_namespaces = set() for elem in root.getiterator(): if elem.tag[0] == "{": uri, tag = elem.tag[1:].split("}") existing_namespaces.add(namespaces.get_namespace_from_url(uri)) for key, link in ns_keys: if link is not None and key not in existing_namespaces: root.set("xmlns:%s" % key, link) return root else: # lxml does not support setting xmlns attributes # Update the elements nsmap with new namespaces new_map = root.nsmap for key, link in ns_keys: if link is not None: new_map[key] = link # Recreate the root element with updated nsmap new_root = etree.Element(root.tag, nsmap=new_map) # Carry over attributes for a, v in list(root.items()): new_root.set(a, v) # Carry over children for child in root: new_root.append(deepcopy(child)) return new_root def getXMLInteger(elem, tag): """ Return the text within the named tag as an integer. Raises an exception if the tag cannot be found or if its textual value cannot be converted to an integer. Parameters ---------- - elem: the element to search within - tag: the name of the tag to look for """ e = elem.find(tag) if e is None: raise ValueError('Missing %s in %s' % (tag, elem)) return int(e.text.strip()) def testXMLValue(val, attrib=False): """ Test that the XML value exists, return val.text, else return None Parameters ---------- - val: the value to be tested """ if val is not None: if attrib: return val.strip() elif val.text: return val.text.strip() else: return None else: return None def testXMLAttribute(element, attribute): """ Test that the XML element and attribute exist, return attribute's value, else return None Parameters ---------- - element: the element containing the attribute - attribute: the attribute name """ if element is not None: return element.get(attribute) return None def http_post(url=None, request=None, lang='en-US', timeout=10, username=None, password=None): """ Invoke an HTTP POST request Parameters ---------- - url: the URL of the server - request: the request message - lang: the language - timeout: timeout in seconds """ if url is None: raise ValueError("URL required") u = urlsplit(url) headers = { 'User-Agent' : 'OWSLib (https://geopython.github.io/OWSLib)', 'Content-type' : 'text/xml', 'Accept' : 'text/xml', 'Accept-Language' : lang, 'Accept-Encoding' : 'gzip,deflate', 'Host' : u.netloc, } rkwargs = {} if username is not None and password is not None: rkwargs['auth'] = (username, password) up = requests.post(url, request, headers=headers, **rkwargs) return up.content def element_to_string(element, encoding=None, xml_declaration=False): """ Returns a string from a XML object Parameters ---------- - element: etree Element - encoding (optional): encoding in string form. 'utf-8', 'ISO-8859-1', etc. - xml_declaration (optional): whether to include xml declaration """ output = None if encoding is None: encoding = "ISO-8859-1" if etree.__name__ == 'lxml.etree': if xml_declaration: if encoding in ['unicode', 'utf-8']: output = '\n%s' % \ etree.tostring(element, encoding='unicode') else: output = etree.tostring(element, encoding=encoding, xml_declaration=True) else: output = etree.tostring(element) else: if xml_declaration: output = '\n%s' % (encoding, etree.tostring(element, encoding=encoding)) else: output = etree.tostring(element) return output def xml2string(xml): """ Return a string of XML object Parameters ---------- - xml: xml string """ warnings.warn("DEPRECIATION WARNING! You should now use the 'element_to_string' method \ The 'xml2string' method will be removed in a future version of OWSLib.") return '\n' + xml def xmlvalid(xml, xsd): """ Test whether an XML document is valid Parameters ---------- - xml: XML content - xsd: pointer to XML Schema (local file path or URL) """ xsd1 = etree.parse(xsd) xsd2 = etree.XMLSchema(xsd1) doc = etree.parse(StringIO(xml)) return xsd2.validate(doc) def xmltag_split(tag): ''' Return XML element bare tag name (without prefix) ''' try: return tag.split('}')[1] except: return tag def getNamespace(element): ''' Utility method to extract the namespace from an XML element tag encoded as {namespace}localname. ''' if element.tag[0]=='{': return element.tag[1:].split("}")[0] else: return "" def build_get_url(base_url, params): ''' Utility function to build a full HTTP GET URL from the service base URL and a dictionary of HTTP parameters. ''' qs = [] if base_url.find('?') != -1: qs = cgi.parse_qsl(base_url.split('?')[1]) pars = [x[0] for x in qs] for key,value in six.iteritems(params): if key not in pars: qs.append( (key,value) ) urlqs = urlencode(tuple(qs)) return base_url.split('?')[0] + '?' + urlqs def dump(obj, prefix=''): '''Utility function to print to standard output a generic object with all its attributes.''' print("%s %s.%s : %s" % (prefix, obj.__module__, obj.__class__.__name__, obj.__dict__)) def getTypedValue(data_type, value): '''Utility function to cast a string value to the appropriate XSD type. ''' if data_type == 'boolean': return bool(value) elif data_type == 'integer': return int(value) elif data_type == 'float': return float(value) elif data_type == 'string': return str(value) else: return value # no type casting def extract_time(element): ''' return a datetime object based on a gml text string ex: 2006-07-27T21:10:00Z If there happens to be a strange element with both attributes and text, use the text. ex: 2006-07-27T21:10:00Z Would be 2006-07-27T21:10:00Z, not 'now' ''' if element is None: return None try: dt = parser.parse(element.text) except Exception: att = testXMLValue(element.attrib.get('indeterminatePosition'), True) if att and att == 'now': dt = datetime.utcnow() dt.replace(tzinfo=pytz.utc) else: dt = None return dt def extract_xml_list(elements): """ Some people don't have seperate tags for their keywords and seperate them with a newline. This will extract out all of the keywords correctly. """ if elements: keywords = [re.split(r'[\n\r]+',f.text) for f in elements if f.text] flattened = [item.strip() for sublist in keywords for item in sublist] remove_blank = [_f for _f in flattened if _f] return remove_blank else: return [] def strip_bom(raw_text): """ return the raw (assumed) xml response without the BOM """ boms = [ codecs.BOM, codecs.BOM_BE, codecs.BOM_LE, codecs.BOM_UTF8, codecs.BOM_UTF16, codecs.BOM_UTF16_LE, codecs.BOM_UTF16_BE, codecs.BOM_UTF32, codecs.BOM_UTF32_LE, codecs.BOM_UTF32_BE ] if not isinstance(raw_text, str): for bom in boms: if raw_text.startswith(bom): return raw_text.replace(bom, '') return raw_text def clean_ows_url(url): """ clean an OWS URL of basic service elements source: https://stackoverflow.com/a/11640565 """ if url is None or not url.startswith('http'): return url filtered_kvp = {} basic_service_elements = ('service', 'version', 'request') parsed = urlparse(url) qd = parse_qs(parsed.query, keep_blank_values=True) for key, value in qd.items(): if key.lower() not in basic_service_elements: filtered_kvp[key] = value newurl = urlunparse([ parsed.scheme, parsed.netloc, parsed.path, parsed.params, urlencode(filtered_kvp, doseq=True), parsed.fragment ]) return newurl def bind_url(url): """binds an HTTP GET query string endpiont""" if url.find('?') == -1: # like http://host/wms binder = '?' # if like http://host/wms?foo=bar& or http://host/wms?foo=bar if url.find('=') != -1: if url.find('&', -1) != -1: # like http://host/wms?foo=bar& binder = '' else: # like http://host/wms?foo=bar binder = '&' # if like http://host/wms?foo if url.find('?') != -1: if url.find('?', -1) != -1: # like http://host/wms? binder = '' elif url.find('&', -1) == -1: # like http://host/wms?foo=bar binder = '&' return '%s%s' % (url, binder) import logging # Null logging handler try: # Python 2.7 NullHandler = logging.NullHandler except AttributeError: # Python < 2.7 class NullHandler(logging.Handler): def emit(self, record): pass log = logging.getLogger('owslib') log.addHandler(NullHandler()) def which_etree(): """decipher which etree library is being used by OWSLib""" which_etree = None if 'lxml' in etree.__file__: which_etree = 'lxml.etree' elif 'xml/etree' in etree.__file__: which_etree = 'xml.etree' elif 'elementree' in etree.__file__: which_etree = 'elementtree.ElementTree' return which_etree def findall(root, xpath, attribute_name=None, attribute_value=None): """Find elements recursively from given root element based on xpath and possibly given attribute :param root: Element root element where to start search :param xpath: xpath defintion, like {http://foo/bar/namespace}ElementName :param attribute_name: name of possible attribute of given element :param attribute_value: value of the attribute :return: list of elements or None """ found_elements = [] if attribute_name is not None and attribute_value is not None: xpath = '%s[@%s="%s"]' % (xpath, attribute_name, attribute_value) found_elements = root.findall('.//' + xpath) if found_elements == []: found_elements = None return found_elements OWSLib-0.16.0/owslib/waterml/000077500000000000000000000000001321706412000156435ustar00rootroot00000000000000OWSLib-0.16.0/owslib/waterml/__init__.py000066400000000000000000000001041321706412000177470ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/owslib/waterml/wml.py000066400000000000000000001003221321706412000170120ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib.util import nspath, testXMLValue, openURL from owslib.util import xml_to_dict as _xml_to_dict from datetime import datetime from dateutil import parser namespaces = { 'wml1.1':'{http://www.cuahsi.org/waterML/1.1/}', 'wml1.0':'{http://www.cuahsi.org/waterML/1.0/}', 'xsi':'{http://www.w3.org/2001/XMLSchema-instance', 'xsd':'{http://www.w3.org/2001/XMLSchema' } def ns(namespace): return namespaces.get(namespace) class XMLParser(object): """ Convienence class; provides some useful shortcut methods to make retrieving xml elements from etree a little easier. """ def __init__(self,xml_root,namespace): try: self._root = etree.parse(xml_root) except: self._root = xml_root if not namespace in namespaces: raise ValueError('Unsupported namespace passed in to parser!') self._ns = namespace def _find(self,tofind): try: return self._root.find(namespaces.get(self._ns) + tofind) except: return None def _findall(self,tofind): try: return self._root.findall(namespaces.get(self._ns) + tofind) except: return None class SitesResponse(XMLParser): """ Parses the response from a 'GetSites' request Parameters =========== :xmlio - A file-like object that holds the xml response from the request. Return ======= An object constructed from a dictionary parse of the response. The object has get access and can iterate over the sites returned. """ def __init__(self,xml,version='wml1.1'): super(SitesResponse,self).__init__(xml,version) self.parse_sites_response() def __iter__(self): for s in self.sites: yield s def __getitem__(self,key): if isinstance(key,int) and key < len(self.sites): return self.sites[key] if isinstance(key,str): site = [site for site in self.sites for code in site.site_info.site_codes if code == key] if len(site) > 0: return site[0] raise KeyError('Unknown key ' + str(key)) def parse_sites_response(self,xml=None): """ """ if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: self.query_info = QueryInfo(self._find('queryInfo'), self._ns) self.sites = [Site(site, self._ns) for site in self._findall('site')] # except: # raise ValueError('Cannot parse sitesResponse element correctly') """Accesability properties/methods""" @property def site_codes(self): return [site.site_info.site_codes for site in self.sites] @property def site_names(self): return [site.site_info.site_name for site in self.sites] class QueryInfo(XMLParser): """ """ def __init__(self,xml_root,version='wml1.1'): super(QueryInfo, self).__init__(xml_root,version) self.parse_query_info() def parse_query_info(self, xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: # create queryinfo object from dict xml_dict = _xml_to_dict(self._root) self.creation_time = parser.parse(xml_dict.get('creation_time')) if xml_dict.get('creation_time') is not None else None self.notes = [testXMLValue(note) for note in self._findall('note')] self.criteria = Criteria(self._find('criteria'), self._ns) # except: # raise ValueError('Unable to parse queryInfo element correctly') class Criteria(XMLParser): """ """ def __init__(self,xml_root,version='wml1.1'): super(Criteria, self).__init__(xml_root,version) self.parse_criteria() def parse_criteria(self, xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root,depth=4) self.method_called = self._root.attrib.get('MethodCalled') self.location_param = xml_dict.get('location_param') self.variable_param = xml_dict.get('variable_param') try: self.begin_date_time = parser.parse(xml_dict['begin_date_time']) except: self.begin_date_time = None try: self.end_date_time = parser.parse(xml_dict['end_date_time']) except: self.end_date_time = None self.parameters = [(param.attrib.get('name'),param.attrib.get('value')) for param in self._findall('parameter')] # except: # raise ValueError('Unable to parse xml for criteria element') class Site(XMLParser): def __init__(self, xml, version='wml1.1'): super(Site,self).__init__(xml,version) self.parse_site() def __iter__(self): for c in self.series_catalogs: yield c def __getitem__(self,key): if isinstance(key,int) and key < len(self.series_catalogs): return self.series_catalogs[key] if isinstance(key,str): var = [series.variable for catalog in self.series_catalogs for series in catalog if series.code == key] if len(var) > 0: return var[0] raise KeyError('Unknown key ' + str(key)) """Accessor propeties/methods""" @property def name(self): return self.site_info.site_name @property def codes(self): return self.site_info.site_codes @property def variable_names(self): return list(set([series.variable.variable_name for catalog in self.series_catalogs for series in catalog])) @property def variable_codes(self): return list(set([series.variable.variable_code for catalog in self.series_catalogs for series in catalog])) @property def geo_coords(self): return self.site_info.location.geo_coords @property def latitudes(self): return [g[1] for g in self.site_info.location.geo_coords] @property def longitudes(self): return [g[0] for g in self.site_info.location.geo_coords] def parse_site(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: self.site_info = SiteInfo(self._find('siteInfo'), self._ns) self.series_catalogs = [SeriesCatalog(elm, self._ns) for elm in self._findall('seriesCatalog')] # self.extension = Extension(self._find('extension'), self._ns) # except: # raise ValueError('Unable to parse site element correctly') class SiteInfo(XMLParser): def __init__(self,xml,version='wml1.1'): super(SiteInfo,self).__init__(xml,version) self.parse_siteinfo() def parse_siteinfo(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root) self.site_name = xml_dict.get('site_name') self.site_codes = [testXMLValue(code) for code in self._findall('siteCode')] self.elevation = xml_dict.get('elevation_m') self.vertical_datum = xml_dict.get('vertical_datum') self.site_types = [testXMLValue(typ) for typ in self._findall('siteType')] self.site_properties = dict([(prop.attrib.get('name'),testXMLValue(prop)) for prop in self._findall('siteProperty')]) self.altname = xml_dict.get('altname') self.notes = [testXMLValue(note) for note in self._findall('note')] # sub-objects tzi = self._find('timeZoneInfo') if tzi is not None: self.time_zone_info = TimeZoneInfo(tzi, self._ns) self.location = Location(self._find('geoLocation'), self._ns) # except: # raise ValueError('Unable to parse siteInfo element') class Location(XMLParser): def __init__(self,xml,version='wml1.1'): super(Location,self).__init__(xml,version) self.parse_location() def parse_location(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root) geogs = self._findall('geogLocation') self.geo_coords = list() self.srs = list() for g in geogs: self.geo_coords.append((testXMLValue(g.find(ns(self._ns) + 'longitude')),testXMLValue(g.find(ns(self._ns) + 'latitude')))) self.srs.append(g.attrib.get('srs')) locsite = self._findall('localSiteXY') self.local_sites = list() self.notes = list() self.projections = list() for ls in locsite: z = testXMLValue(ls.find(ns(self._ns) + 'Z')) if z is not None: self.local_sites.append((testXMLValue(ls.find(ns(self._ns) + 'X')),testXMLValue(ls.find(ns(self._ns) + 'Y')),z)) else: self.local_sites.append((testXMLValue(ls.find(ns(self._ns) + 'X')),testXMLValue(ls.find(ns(self._ns) + 'Y')),'0')) self.notes.append([testXMLValue(note) for note in ls.findall(ns(self._ns) + 'note')]) self.projections.append(ls.attrib.get('projectionInformation')) # except: # raise ValueError('Unable to parse geoLocation element') class TimeZoneInfo(XMLParser): def __init__(self,xml,version='wml1.1'): super(TimeZoneInfo,self).__init__(xml,version) self.parse_timezoneinfo() def parse_timezoneinfo(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root) default = self._find('defaultTimeZone') if default is not None: self.zone_offset = default.attrib.get('zoneOffset') self.zone_abbreviation = default.attrib.get('zoneAbbreviation') daylight = self._find('daylightSavingsTimeZone') if daylight is not None: self.daylight_zone_offset = daylight.attrib.get('zoneOffset') self.daylight_zone_abbreviation = daylight.attrib.get('zoneAbbreviation') # except: # raise ValueError('Unable to properly parset the timeZoneInfo element') class SeriesCatalog(XMLParser): def __init__(self,xml,version='wml1.1'): super(SeriesCatalog,self).__init__(xml,version) self.parse_seriescatalog() def __iter__(self): for s in self.series: yield s def __getitem__(self,key): if isinstance(key,int) and key < len(self.series): return self.series[key] if isinstance(key,str): srs = [series for series in self.series if series.code == key] if len(srs) > 0: return srs[0] raise KeyError('Unknown key ' + str(key)) def parse_seriescatalog(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: self.series = [Series(elm,self._ns) for elm in self._findall('series')] # except: # raise ValueError('Unable to properly parse the seriesCatalog element') class Series(XMLParser): def __init__(self,xml,version='wml1.1'): super(Series,self).__init__(xml,version) self.parse_series() """Accessor proeprties/methods""" @property def name(self): return self.variable.variable_name @property def code(self): return self.variable.variable_code def parse_series(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root,depth=3) self.value_count = xml_dict.get('value_count') self.value_type = xml_dict.get('value_type') self.general_category = xml_dict.get('general_category') self.sample_medium = xml_dict.get('sample_medium') self.data_type = xml_dict.get('data_type') # date-time self.begin_date_time = parser.parse(xml_dict.get('begin_date_time')) self.begin_date_time_utc = parser.parse(xml_dict.get('begin_date_time_utc')) if xml_dict.get('begin_date_time_utc') is not None else None self.end_date_time = parser.parse(xml_dict.get('end_date_time')) self.end_date_time_utc = parser.parse(xml_dict.get('end_date_time_utc')) if xml_dict.get('end_date_time_utc') is not None else None # method info self.method_description = xml_dict.get('method_description') self.method_code = xml_dict.get('method_code') self.method_link = xml_dict.get('method_link') method = self._find('method') if method is not None: self.method_id = method.attrib.get('methodID') else: self.method_id = None # source info self.organization = xml_dict.get('organization') self.source_description = xml_dict.get('source_description') self.citation = xml_dict.get('citation') source = self._find('source') if source is not None: self.source_id = source.attrib.get('sourceID') else: self.source_id = None # quality control info self.quality_control_level_code = xml_dict.get('quality_control_level_code') self.definition = xml_dict.get('definition') qa = self._find('qualityControlLevel') if qa is not None: self.quality_control_level_id = qa.attrib.get('qualityControlLevelID') else: self.quality_control_level_id = None # properties self.properties = dict([(prop.attrib.get('name'),testXMLValue(prop)) for prop in self._findall('seriesProperty')]) # sub-objects self.variable = Variable(self._find('variable'),self._ns) # except: # raise ValueError('Unable to correctly parse Series element') class Variable(XMLParser): def __init__(self,xml,version='wml1.1'): super(Variable,self).__init__(xml,version) self.parse_variable() def parse_variable(self,xml=None): if xml is not None: try: self._root = etree.parse(xml) except: self._root = xml # try: xml_dict = _xml_to_dict(self._root) self.value_type = xml_dict.get('value_type') self.data_type = xml_dict.get('data_type') self.general_category = xml_dict.get('general_category') self.sample_medium = xml_dict.get('sample_medium') self.no_data_value = xml_dict.get('no_data_value') self.variable_name = xml_dict.get('variable_name') self.variable_code = xml_dict.get('variable_code') self.variable_description = xml_dict.get('variable_description') self.speciation = xml_dict.get('speciation') # notes and properties notes = [(note.attrib.get('title'),testXMLValue(note)) for note in self._findall('note')] none_notes = [note[1] for note in notes if note[0] is None] self.notes = dict([note for note in notes if note[0] is not None]) if len(none_notes) > 0: self.notes['none'] = none_notes self.properties = dict([(prop.attrib.get('name'),testXMLValue(prop)) for prop in self._findall('variableProperty')]) # related related = self._find('related') if related is not None: self.parent_codes = [dict([('network',code.attrib.get('network')),('vocabulary',code.attrib.get('vocabulary')),('default',code.attrib.get('default'))]) for code in related.findall(ns(self._ns) + 'parentCode')] self.related_codes = [dict([('network',d.get('network')),('vocabulary',d.get('vocabulary')),('default',d.get('default'))]) for code in related.findall(ns(self._ns) + 'relatedCode')] else: self.parent_codes = None self.related_codes = None # sub-objects if self._ns == 'wml1.0': unit = self._find('units') self.unit = Unit1_0(unit, self._ns) if unit is not None else None timesupport = self._find('timeSupport') self.time_support = TimeScale(timesupport, self._ns) if timesupport is not None else None else: unit = self._find('unit') self.unit = Unit(unit, self._ns) if unit is not None else None timescale = self._find('timeScale') self.time_scale = TimeScale(timescale, self._ns) if timescale is not None else None categories = self._find('categories') if categories is not None: self.categories = [Category(cat,self._ns) for cat in categories.findall(ns(self._ns) + 'category')] else: self.categories = None # except: # raise ValueError('Unable to correctly parse variable element') class TimeScale(XMLParser): def __init__(self,xml,version='wml1.1'): super(TimeScale,self).__init__(xml,version) self.parse_timescale() def parse_timescale(self): try: xml_dict = _xml_to_dict(self._root) self.time_spacing = xml_dict.get('time_spacing') self.time_support = xml_dict.get('time_support') self.time_interval = xml_dict.get('time_interval') unit = self._find('unit') self.unit = Unit(unit, self._ns) if unit is not None else None except: raise class Unit(XMLParser): def __init__(self,xml,version='wml1.1'): super(Unit,self).__init__(xml,version) self.parse_unit() def parse_unit(self): try: xml_dict = _xml_to_dict(self._root) self.name = xml_dict.get('unit_name') self.unit_type = xml_dict.get('unit_type') self.description = xml_dict.get('unit_description') self.abbreviation = xml_dict.get('unit_abbreviation') self.code = xml_dict.get('unit_code') self.id = self._root.attrib.get('UnitID') except: raise class Unit1_0(XMLParser): def __init__(self,xml,version='wml1.0'): super(Unit1_0,self).__init__(xml,version) self.parse_unit() def parse_unit(self): try: self.name = testXMLValue(self._root) self.code = self._root.attrib.get('unitsCode') self.abbreviation = self._root.attrib.get('unitsAbbreviation') self.type = self._root.attrib.get('unitsType') self.id = self._root.attrib.get('unitID') except: raise class Category(XMLParser): def __init__(self,xml,version='wml1.1'): super(Category,self).__init__(xml,version) self.parse_category() def parse_category(self): try: xml_dict = _xml_to_dict(self._root) self.data_value = xml_dict.get('data_value') self.description = xml_dict.get('description') self.id = self._root.attrib.get('categoryID') except: raise class TimeSeriesResponse(XMLParser): """ Parses the response from a 'GetValues' request Parameters =========== :xmlio - A file-like object that holds the xml response from the request. Return ======= An object constructed from a dictionary parse of the response. The object has get access and can also iterate over each timeSeries element returned. """ def __init__(self,xml,version='wml1.1'): super(TimeSeriesResponse,self).__init__(xml,version) self.parse_timeseriesresponse() """Accessor properties/methods""" @property def series_names(self): return [series.name for series in self.time_series] @property def variable_names(self): return list(set([series.variable.variable_name for series in self.time_series])) @property def variable_codes(self): return list(set([s.variable.variable_code for s in self.time_series])) def get_series_by_variable(self,var_name=None,var_code=None): if var_code is not None: return [s for s in self.time_series if s.variable.variable_code == var_code] elif var_name is not None: return [series for series in self.time_series if series.variable.variable_name == var_name] return None def parse_timeseriesresponse(self): try: qi = self._find('queryInfo') self.query_info = QueryInfo(qi,self._ns) self.time_series = [TimeSeries(series,self._ns) for series in self._findall('timeSeries')] except: raise class TimeSeries(XMLParser): def __init__(self,xml,version='wml1.1'): super(TimeSeries,self).__init__(xml,version) self.parse_timeseries() def parse_timeseries(self): try: self.variable = Variable(self._find('variable'), self._ns) self.values = [Values(val,self._ns) for val in self._findall('values')] self.source_info = SiteInfo(self._find('sourceInfo'), self._ns) self.name = self._root.attrib.get('name') except: raise class Values(XMLParser): def __init__(self,xml,version='wml1.1'): super(Values,self).__init__(xml,version) self.parse_values() def __iter__(self): for v in self.values: yield v """Accessor properties/methods""" def get_date_values(self,method_id=None,source_id=None,sample_id=None,quality_level=None,utc=False): varl = [v for v in self.values] if method_id is not None: varl = [v for v in varl if v.method_id == method_id] if source_id is not None: varl = [v for v in varl if v.source_id == source_id] if sample_id is not None: varl = [v for v in varl if v.sample_id == sample_id] if quality_level is not None: varl = [v for v in varl if v.quality_control_level == quality_level] if not utc: return [(v.date_time,v.value) for v in varl] else: return [(v.date_time_utc,v.value) for v in varl] def parse_values(self): xml_dict = _xml_to_dict(self._root) # method info self.methods = [Method(method,self._ns) for method in self._findall('method')] # source info self.sources = [Source(source,self._ns) for source in self._findall('source')] # quality control info self.qualit_control_levels = [QualityControlLevel(qal, self._ns) for qal in self._findall('qualityControlLevel')] # offset info self.offsets = [Offset(os,self._ns) for os in self._findall('offset')] # sample info self.samples = [Sample(sample,self._ns) for sample in self._findall('sample')] # censor codes self.censor_codes = [CensorCode(code, self._ns) for code in self._findall('censorCode')] # unit if self._ns == 'wml1.0': self.unit_abbreviation = self._root.attrib.get('unitsAbbreviation') self.unit_code = self._root.attrib.get('unitsCode') self.count = self._root.attrib.get('count') else: unit = self._find('unit') self.unit = Unit(unit, self._ns) if unit is not None else None # values self.values = [Value(val, self._ns) for val in self._findall('value')] class Value(XMLParser): def __init__(self,xml,version='wml1.1'): super(Value,self).__init__(xml,version) self.parse_value() def parse_value(self): try: self.value = testXMLValue(self._root) d = self._root.attrib self.qualifiers = d.get('qualifiers') self.censor_code = d.get('censorCode') self.date_time = parser.parse(d.get('dateTime')) if d.get('dateTime') is not None else None self.time_offset = d.get('timeOffset') self.date_time_utc = parser.parse(d.get('dateTimeUTC')) if d.get('dateTimeUTC') is not None else None self.method_id = d.get('methodID') self.source_id = d.get('sourceID') self.accuracy_std_dev = d.get('accuracyStdDev') self.sample_id = d.get('sampleID') self.method_code = d.get('methodCode') self.source_code = d.get('sourceCode') self.lab_sample_code = d.get('lab_sample_code') self.offset_value = d.get('offsetValue') self.offset_type_id = d.get('offsetTypeID') self.offset_type_code = d.get('offsetTypeCode') self.coded_vocabulary = d.get('codedVocabulary') self.coded_vocabulary_term = d.get('codedVocabularyTerm') self.quality_control_level = d.get('qualityControlLevel') self.metadata_time = d.get('metadataTime') self.oid = d.get('oid') except: raise class Sample(XMLParser): def __init__(self,xml,version='wml1.1'): super(Sample,self).__init__(xml,version) self.parse_sample() def parse_sample(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('lab_sample_code') self.type = xml_dict.get('sample_type') lm = self._find('labMethod') self.method = LabMethod(lm, self._ns) if lm is not None else None except: raise class LabMethod(XMLParser): def __init__(self,xml,version='wml1.1'): super(LabMethod,self).__init__(xml,version) self.parse_labmethod() def parse_labmethod(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('lab_code') self.name = xml_dict.get('lab_name') self.organization = xml_dict.get('lab_organization') self.method_name = xml_dict.get('lab_method_name') self.method_description = xml_dict.get('lab_method_description') self.method_link = xml_dict.get('lab_method_link') # sub-objects source = self._find('labSourceDetails') self.source_details = Source(source,self._ns) if source is not None else None except: raise class Source(XMLParser): def __init__(self,xml,version='wml1.1'): super(Source,self).__init__(xml,version) self.parse_source() def __str__(self): return str(self.__dict__) def get_contact(self,name): ci = [ci for ci in self.contact_info if ci.name == name] if len(ci) < 0: return ci[0] return None def parse_source(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('source_code') self.organization = xml_dict.get('organization') self.description = xml_dict.get('source_description') self.links = [testXMLValue(link) for link in self._findall('sourceLink')] self.citation = xml_dict.get('citation') # metadata self.topic_category = xml_dict.get('topic_category') self.title = xml_dict.get('title') self.abstract = xml_dict.get('abstract') self.profile_version = xml_dict.get('profile_version') self.metadata_link = xml_dict.get('metadata_link') # contact info self.contact_info = [ContactInformation(ci,self._ns) for ci in self._findall('contactInformation')] except: raise class ContactInformation(XMLParser): def __init__(self,xml,version='wml1.1'): super(ContactInformation,self).__init__(xml,version) self.parse_contactinformation() def parse_contactinformation(self): try: xml_dict = _xml_to_dict(self._root) self.name = xml_dict.get('contact_name') self.type = xml_dict.get('type_of_contact') self.email = [testXMLValue(email) for email in self._findall('email')] self.phone = [testXMLValue(phone) for phone in self._findall('phone')] self.address = [testXMLValue(address) for address in self._findall('address')] except: raise class Offset(XMLParser): def __init__(self,xml,version='wml1.1'): super(Offset,self).__init__(xml,version) self.parse_offset() def parse_offset(self): try: xml_dict = _xml_to_dict(self._root) self.type_code = xml_dict.get('offset_type_code') self.value = xml_dict.get('offset_value') self.description = xml_dict.get('offset_description') self.is_vertical = xml_dict.get('offset_is_vertical') self.azimuth_degrees = xml_dict.get('offset_azimuth_degrees') unit = self._root.find('unit') if self._ns == 'wml1.0': self.unit = Unit1_0(unit, self._ns) if unit is not None else None else: self.unit = Unit(unit,self._ns) if unit is not None else None except: raise class Method(XMLParser): def __init__(self,xml,version='wml1.1'): super(Method,self).__init__(xml,version) self.parse_method() def parse_method(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('method_code') self.description = xml_dict.get('method_description') self.link = xml_dict.get('method_link') self.id = self._root.attrib.get('methodID') except: raise class QualityControlLevel(XMLParser): def __init__(self,xml,version='wml1.1'): super(QualityControlLevel,self).__init__(xml,version) self.parse_qcl() def parse_qcl(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('quality_control_level_code') self.definition = xml_dict.get('definition') self.explanation = xml_dict.get('explanation') self.id = self._root.attrib.get('qualityControlLevelID') except: raise class CensorCode(XMLParser): def __init__(self,xml,version='wml1.1'): super(CensorCode,self).__init__(xml,version) self.parse_censorcode() def parse_censorcode(self): try: xml_dict = _xml_to_dict(self._root) self.code = xml_dict.get('censor_code') self.description = xml_dict.get('censor_code_description') self.id = self._root.attrib.get('censorCodeID') except: raise class VariablesResponse(XMLParser): """ Parses the response from a 'GetVariableInfo' request Parameters =========== :xmlio - A file-like object that holds the xml response from the request. Return ======= An object constructed from a dictionary parse of the response. The object has get access to its variables and can also be used as an iterator. """ def __init__(self,xml,version='wml1.1'): super(VariablesResponse,self).__init__(xml,version) self.parse_variablesresponse() def __iter__(self): for v in self.variables: yield v def __getitem__(self,key): if isinstance(key,int) and key < len(self.variables): return self.variables[key] if isinstance(key,str): v = [var for var in self.variables if var.variable_code == key] if len(v) > 0: return v[0] v = [var for var in self.variables if var.variable_name == key] if len(v) > 0: return v[0] raise KeyError('Unknown key ' + str(key)) """Accessor properties/methods""" @property def variable_names(self): return list(set([var.variable_name for var in self.variables])) @property def variable_codes(self): return [var.variable_code for var in self.variables] def parse_variablesresponse(self): try: qi = self._find('queryInfo') self.query_info = QueryInfo(qi, self._ns) if qi is not None else None varis = self._find('variables') self.variables = [Variable(var,self._ns) for var in varis.findall(ns(self._ns) + 'variable')] except: raise OWSLib-0.16.0/owslib/waterml/wml10.py000066400000000000000000000022041321706412000171530ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) from owslib.waterml.wml import SitesResponse, TimeSeriesResponse, VariablesResponse, namespaces from owslib.etree import etree, ElementType def ns(namespace): return namespaces.get(namespace) class WaterML_1_0(object): def __init__(self, element): if isinstance(element, ElementType): self._root = element else: self._root = etree.fromstring(element) if hasattr(self._root, 'getroot'): self._root = self._root.getroot() self._ns = 'wml1.0' @property def response(self): try: if self._root.tag == str(ns(self._ns) + 'variablesResponse'): return VariablesResponse(self._root, self._ns) elif self._root.tag == str(ns(self._ns) + 'timeSeriesResponse'): return TimeSeriesResponse(self._root, self._ns) elif self._root.tag == str(ns(self._ns) + 'sitesResponse'): return SitesResponse(self._root, self._ns) except: raise raise ValueError('Unable to determine response type from xml') OWSLib-0.16.0/owslib/waterml/wml11.py000066400000000000000000000022041321706412000171540ustar00rootroot00000000000000from __future__ import (absolute_import, division, print_function) from owslib.waterml.wml import SitesResponse, TimeSeriesResponse, VariablesResponse, namespaces from owslib.etree import etree, ElementType def ns(namespace): return namespaces.get(namespace) class WaterML_1_1(object): def __init__(self, element): if isinstance(element, ElementType): self._root = element else: self._root = etree.fromstring(element) if hasattr(self._root, 'getroot'): self._root = self._root.getroot() self._ns = 'wml1.1' @property def response(self): try: if self._root.tag == str(ns(self._ns) + 'variablesResponse'): return VariablesResponse(self._root, self._ns) elif self._root.tag == str(ns(self._ns) + 'timeSeriesResponse'): return TimeSeriesResponse(self._root, self._ns) elif self._root.tag == str(ns(self._ns) + 'sitesResponse'): return SitesResponse(self._root, self._ns) except: raise raise ValueError('Unable to determine response type from xml') OWSLib-0.16.0/owslib/wcs.py000066400000000000000000000031251321706412000153370ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2007 STFC # # Authors : # Dominic Lowe # # Contact email: d.lowe@rl.ac.uk # ============================================================================= """ Web Coverage Server (WCS) methods and metadata. Factory function. """ from __future__ import (absolute_import, division, print_function) from . import etree from .coverage import wcs100, wcs110, wcs111, wcsBase from owslib.util import clean_ows_url, openURL def WebCoverageService(url, version=None, xml=None, cookies=None, timeout=30): ''' wcs factory function, returns a version specific WebCoverageService object ''' if version is None: if xml is None: reader = wcsBase.WCSCapabilitiesReader() request = reader.capabilities_url(url) xml = openURL(request, cookies=cookies, timeout=timeout).read() capabilities = etree.etree.fromstring(xml) version = capabilities.get('version') del capabilities clean_url = clean_ows_url(url) if version == '1.0.0': return wcs100.WebCoverageService_1_0_0.__new__(wcs100.WebCoverageService_1_0_0, clean_url, xml, cookies) elif version == '1.1.0': return wcs110.WebCoverageService_1_1_0.__new__(wcs110.WebCoverageService_1_1_0, clean_url, xml, cookies) elif version == '1.1.1': return wcs111.WebCoverageService_1_1_1.__new__(wcs111.WebCoverageService_1_1_1, clean_url, xml, cookies) OWSLib-0.16.0/owslib/wfs.py000066400000000000000000000044451321706412000153500ustar00rootroot00000000000000# -*- coding: utf-8 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2009 STFC # # Authors : # Dominic Lowe # # Contact email: dominic.lowe@stfc.ac.uk # ============================================================================= """ Web Feature Server (WFS) methods and metadata. Factory function. """ from __future__ import (absolute_import, division, print_function) from .feature import wfs100, wfs110, wfs200 from .util import clean_ows_url def WebFeatureService(url, version='1.0.0', xml=None, parse_remote_metadata=False, timeout=30, username=None, password=None): ''' wfs factory function, returns a version specific WebFeatureService object @type url: string @param url: url of WFS capabilities document @type xml: string @param xml: elementtree object @type parse_remote_metadata: boolean @param parse_remote_metadata: whether to fully process MetadataURL elements @param timeout: time (in seconds) after which requests should timeout @param username: service authentication username @param password: service authentication password @return: initialized WebFeatureService_2_0_0 object ''' clean_url = clean_ows_url(url) if version in ['1.0', '1.0.0']: return wfs100.WebFeatureService_1_0_0(clean_url, version, xml, parse_remote_metadata, timeout=timeout, username=username, password=password) elif version in ['1.1', '1.1.0']: return wfs110.WebFeatureService_1_1_0(clean_url, version, xml, parse_remote_metadata, timeout=timeout, username=username, password=password) elif version in ['2.0', '2.0.0']: return wfs200.WebFeatureService_2_0_0(clean_url, version, xml, parse_remote_metadata, timeout=timeout, username=username, password=password) OWSLib-0.16.0/owslib/wmc.py000066400000000000000000000151031321706412000153300ustar00rootroot00000000000000# -*- coding: ISO-8859-15 -*- # ============================================================================= # Copyright (c) 2004 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= """Web Map Context (WMC) Specification can be found over there : https://portal.opengeospatial.org/files/?artifact_id=8618 """ from __future__ import (absolute_import, division, print_function) from .etree import etree context_ns_uri = 'http://www.opengis.net/context' context_schemas_uri = 'http://schemas.opengis.net/context/1.0.0/context.xsd' def WMCElement(tag): """WMC based element """ return etree.Element("{%s}"%context_ns_uri + tag) class MapContext: """ Map Context abstraction It uses a Map representation as input and export it as as map context """ def __init__(self, map_): self._map = map_ def _getRootElement(self): root = WMCElement('ViewContext') attrs = { '{http://www.w3.org/2001/XMLSchema-instance}schemaLocation': context_ns_uri + ' ' + context_schemas_uri, 'id' : self._map.id, 'version' : '1.0.0', } for k, v in attrs.items(): root.attrib[k] = v return root def _getGeneralElement(self): general = WMCElement('General') general.append(self._getWindowElement()) general.append(self._getBoundingBoxElement()) return general def _getWindowElement(self): window = WMCElement('Window') window.attrib['width'] = str(self._map.size[0]) window.attrib['height'] = str(self._map.size[1]) return window def _getBoundingBoxElement(self): bbox = WMCElement('BoundingBox') bbox.attrib['SRS'] = str(self._map.srs.split()[0]) bbox.attrib['minx'] = str(self._map.bounds[0]) bbox.attrib['miny'] = str(self._map.bounds[1]) bbox.attrib['maxx'] = str(self._map.bounds[2]) bbox.attrib['maxy'] = str(self._map.bounds[3]) return bbox def _getLayerListElement(self): layerlist = WMCElement('LayerList') layering = zip(self._map.layernames, self._map.layertitles) layer_infos = self._map.getLayerInfos() # mapbuilder draws layers in bottom-top order for name, title in layering: # Layer layer = WMCElement('Layer') layer.attrib['queryable'] = '0' layer.attrib['hidden'] = str( int(name not in self._map.visible_layers)) # Layer styles if layer_infos and layer_infos.get(title): stylelist = WMCElement('StyleList') # Get wms `Style` nodes for a given layer for e_style in layer_infos.get(title): e_style.attrib['current'] = '1' # Change namespace to wmc for node in e_style.getiterator(): tag_name = node.tag[node.tag.rfind('}')+1:] node.tag = "{%s}"%context_ns_uri + tag_name stylelist.append(e_style) layer.append(stylelist) # Server server = WMCElement('Server') server.attrib['service'] = 'OGC:WMS' server.attrib['version'] = '1.1.1' server.attrib['title'] = 'OGC:WMS' # OnlineRessource oressource = WMCElement('OnlineResource') oressource.attrib[ '{http://www.w3.org/1999/xlink}type'] = 'simple' oressource.attrib[ '{http://www.w3.org/1999/xlink}href'] = self._map.url server.append(oressource) layer.append(server) # Name e_name = WMCElement('Name') e_name.text = name layer.append(e_name) # Title e_title = WMCElement('Title') e_title.text = title layer.append(e_title) # Format formatlist = WMCElement('FormatList') format = WMCElement('Format') format.attrib['current'] = '1' format.text = self._map.format formatlist.append(format) layer.append(formatlist) layerlist.append(layer) return layerlist def __call__(self): """Export self._map to WMC """ wmc_doc_tree = self._getRootElement() wmc_doc_tree.append(self._getGeneralElement()) wmc_doc_tree.append(self._getLayerListElement()) return etree.tostring(wmc_doc_tree) class AggregateMapContext(MapContext): """ Map Context abstraction It uses a Map representation as input and export it as as map context -- with aggregation of all layers accomplished through overload of the Layer/Name property """ def _getLayerListElement(self): layerlist = WMCElement('LayerList') #layering = zip(self._map.layernames, self._map.layertitles) layer_infos = self._map.getLayerInfos() # Layer layer = WMCElement('Layer') layer.attrib['queryable'] = '0' layer.attrib['hidden'] = '0' # Server server = WMCElement('Server') server.attrib['service'] = 'OGC:WMS' server.attrib['version'] = '1.1.1' server.attrib['title'] = 'OGC:WMS' # OnlineRessource oressource = WMCElement('OnlineResource') oressource.attrib['{http://www.w3.org/1999/xlink}type'] = 'simple' oressource.attrib['{http://www.w3.org/1999/xlink}href'] = self._map.url server.append(oressource) layer.append(server) # Name e_name = WMCElement('Name') e_name.text = ','.join(self._map.layernames) layer.append(e_name) # Title e_title = WMCElement('Title') e_title.text = 'Aggregate Layers' layer.append(e_title) # Format formatlist = WMCElement('FormatList') format = WMCElement('Format') format.attrib['current'] = '1' format.text = self._map.format formatlist.append(format) layer.append(formatlist) layerlist.append(layer) return layerlist def mapToWebMapContext(map, aggregate_layers=False): """Helper if the second argument evaluates to True, then all map layers are aggregated into a single map context layer. """ if aggregate_layers: return AggregateMapContext(map)() else: return MapContext(map)() OWSLib-0.16.0/owslib/wms.py000066400000000000000000000043251321706412000153540ustar00rootroot00000000000000# -*- coding: iso-8859-15 -*- # ============================================================================= # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= """ API for Web Map Service (WMS) methods and metadata. Currently supports only version 1.1.1 of the WMS protocol. """ from __future__ import (absolute_import, division, print_function) from .map import wms111, wms130 from .util import clean_ows_url def WebMapService(url, version='1.1.1', xml=None, username=None, password=None, parse_remote_metadata=False, timeout=30, headers=None): '''wms factory function, returns a version specific WebMapService object @type url: string @param url: url of WFS capabilities document @type xml: string @param xml: elementtree object @type parse_remote_metadata: boolean @param parse_remote_metadata: whether to fully process MetadataURL elements @param timeout: time (in seconds) after which requests should timeout @return: initialized WebFeatureService_2_0_0 object ''' clean_url = clean_ows_url(url) if version in ['1.1.1']: return wms111.WebMapService_1_1_1(clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, username=username, password=password, timeout=timeout, headers=headers) elif version in ['1.3.0']: return wms130.WebMapService_1_3_0(clean_url, version=version, xml=xml, parse_remote_metadata=parse_remote_metadata, username=username, password=password, timeout=timeout, headers=headers) raise NotImplementedError('The WMS version (%s) you requested is not implemented. Please use 1.1.1 or 1.3.0.' % version) OWSLib-0.16.0/owslib/wmts.py000066400000000000000000001001741321706412000155370ustar00rootroot00000000000000# -*- coding: UTF-8 -*- # ============================================================================= # Copyright (C) 2012 Brad Hards # # Based on wms.py, which has the following copyright statement: # Copyright (c) 2004, 2006 Sean C. Gillies # Copyright (c) 2005 Nuxeo SARL # # Authors : Sean Gillies # Julien Anguenot # # Contact email: sgillies@frii.com # ============================================================================= """ Abstract -------- The wmts module of the OWSlib package provides client-side functionality for fetching tiles from an OGC Web Map Tile Service (WMTS) Disclaimer ---------- PLEASE NOTE: the owslib wmts module should be considered in early-beta state: it has been tested against only one WMTS server (NASA EODSIS). More extensive testing is needed and feedback (to bradh@frogmouth.net) would be appreciated. """ from __future__ import (absolute_import, division, print_function) from random import randint import warnings import six from six.moves import filter try: # Python 3 from urllib.parse import (urlencode, urlparse, urlunparse, parse_qs, ParseResult) except ImportError: # Python 2 from urllib import urlencode from urlparse import urlparse, urlunparse, parse_qs, ParseResult from .etree import etree from .util import clean_ows_url, openURL, testXMLValue, getXMLInteger from .fgdc import Metadata from .iso import MD_Metadata from .ows import ServiceProvider, ServiceIdentification, OperationsMetadata _OWS_NS = '{http://www.opengis.net/ows/1.1}' _WMTS_NS = '{http://www.opengis.net/wmts/1.0}' _XLINK_NS = '{http://www.w3.org/1999/xlink}' # OpenGIS Web Map Tile Service (WMTS) Implementation Standard # Version 1.0.0, document 07-057r7 _ABSTRACT_TAG = _OWS_NS + 'Abstract' _IDENTIFIER_TAG = _OWS_NS + 'Identifier' _LOWER_CORNER_TAG = _OWS_NS + 'LowerCorner' _OPERATIONS_METADATA_TAG = _OWS_NS + 'OperationsMetadata' _SERVICE_IDENTIFICATION_TAG = _OWS_NS + 'ServiceIdentification' _SERVICE_PROVIDER_TAG = _OWS_NS + 'ServiceProvider' _SUPPORTED_CRS_TAG = _OWS_NS + 'SupportedCRS' _TITLE_TAG = _OWS_NS + 'Title' _UPPER_CORNER_TAG = _OWS_NS + 'UpperCorner' _WGS84_BOUNDING_BOX_TAG = _OWS_NS + 'WGS84BoundingBox' _CONTENTS_TAG = _WMTS_NS + 'Contents' _FORMAT_TAG = _WMTS_NS + 'Format' _INFO_FORMAT_TAG = _WMTS_NS + 'InfoFormat' _LAYER_TAG = _WMTS_NS + 'Layer' _LAYER_REF_TAG = _WMTS_NS + 'LayerRef' _MATRIX_HEIGHT_TAG = _WMTS_NS + 'MatrixHeight' _MATRIX_WIDTH_TAG = _WMTS_NS + 'MatrixWidth' _MAX_TILE_COL_TAG = _WMTS_NS + 'MaxTileCol' _MAX_TILE_ROW_TAG = _WMTS_NS + 'MaxTileRow' _MIN_TILE_COL_TAG = _WMTS_NS + 'MinTileCol' _MIN_TILE_ROW_TAG = _WMTS_NS + 'MinTileRow' _RESOURCE_URL_TAG = _WMTS_NS + 'ResourceURL' _SCALE_DENOMINATOR_TAG = _WMTS_NS + 'ScaleDenominator' _SERVICE_METADATA_URL_TAG = _WMTS_NS + 'ServiceMetadataURL' # Table 7, page 20-21, Parts of Style data structure _STYLE_TAG = _WMTS_NS + 'Style' _STYLE_LEGEND_URL = _WMTS_NS + 'LegendURL' _THEME_TAG = _WMTS_NS + 'Theme' _THEMES_TAG = _WMTS_NS + 'Themes' _TILE_HEIGHT_TAG = _WMTS_NS + 'TileHeight' _TILE_MATRIX_SET_LINK_TAG = _WMTS_NS + 'TileMatrixSetLink' _TILE_MATRIX_SET_TAG = _WMTS_NS + 'TileMatrixSet' _TILE_MATRIX_SET_LIMITS_TAG = _WMTS_NS + 'TileMatrixSetLimits' _TILE_MATRIX_LIMITS_TAG = _WMTS_NS + 'TileMatrixLimits' _TILE_MATRIX_TAG = _WMTS_NS + 'TileMatrix' _TILE_WIDTH_TAG = _WMTS_NS + 'TileWidth' _TOP_LEFT_CORNER_TAG = _WMTS_NS + 'TopLeftCorner' _KEYWORDS_TAG = _OWS_NS + 'Keywords' _KEYWORD_TAG = _OWS_NS + 'Keyword' _HREF_TAG = _XLINK_NS + 'href' class ServiceException(Exception): """WMTS ServiceException Attributes: message -- short error message xml -- full xml error message from server """ def __init__(self, message, xml): self.message = message self.xml = xml def __str__(self): return repr(self.message) class CapabilitiesError(Exception): pass class WebMapTileService(object): """Abstraction for OGC Web Map Tile Service (WMTS). Implements IWebMapService. """ def __getitem__(self, name): '''Check contents dictionary to allow dict like access to service layers''' if name in self.__getattribute__('contents'): return self.__getattribute__('contents')[name] else: raise KeyError("No content named %s" % name) def __init__(self, url, version='1.0.0', xml=None, username=None, password=None, parse_remote_metadata=False, vendor_kwargs=None): """Initialize. Parameters ---------- url : string Base URL for the WMTS service. version : string Optional WMTS version. Defaults to '1.0.0'. xml : string Optional XML content to use as the content for the initial GetCapabilities request. Typically only used for testing. username : string Optional user name for authentication. password : string Optional password for authentication. parse_remote_metadata: string Currently unused. vendor_kwargs : dict Optional vendor-specific parameters to be included in all requests. """ self.url = clean_ows_url(url) self.username = username self.password = password self.version = version self.vendor_kwargs = vendor_kwargs self._capabilities = None # Authentication handled by Reader reader = WMTSCapabilitiesReader(self.version, url=self.url, un=self.username, pw=self.password) if xml: # read from stored xml self._capabilities = reader.readString(xml) else: # read from server self._capabilities = reader.read(self.url, self.vendor_kwargs) # Avoid building capabilities metadata if the response is a # ServiceExceptionReport. # TODO: check if this needs a namespace se = self._capabilities.find('ServiceException') if se is not None: err_message = str(se.text).strip() raise ServiceException(err_message, xml) # build metadata objects self._buildMetadata(parse_remote_metadata) def _getcapproperty(self): if not self._capabilities: reader = WMTSCapabilitiesReader( self.version, url=self.url, un=self.username, pw=self.password ) xml = reader.read(self.url, self.vendor_kwargs) self._capabilities = ServiceMetadata(xml) return self._capabilities def _buildMetadata(self, parse_remote_metadata=False): ''' set up capabilities metadata objects ''' self.updateSequence = self._capabilities.attrib.get('updateSequence') # serviceIdentification metadata serviceident = self._capabilities.find(_SERVICE_IDENTIFICATION_TAG) self.identification = ServiceIdentification(serviceident) # serviceProvider metadata serviceprov = self._capabilities.find(_SERVICE_PROVIDER_TAG) if serviceprov is not None: self.provider = ServiceProvider(serviceprov) # serviceOperations metadata self.operations = [] serviceop = self._capabilities.find(_OPERATIONS_METADATA_TAG) # REST only WMTS does not have any Operations if serviceop is not None: for elem in serviceop[:]: self.operations.append(OperationsMetadata(elem)) # serviceContents metadata: our assumption is that services use # a top-level layer as a metadata organizer, nothing more. self.contents = {} caps = self._capabilities.find(_CONTENTS_TAG) def gather_layers(parent_elem, parent_metadata): for index, elem in enumerate(parent_elem.findall(_LAYER_TAG)): cm = ContentMetadata( elem, parent=parent_metadata, index=index+1, parse_remote_metadata=parse_remote_metadata) if cm.id: if cm.id in self.contents: raise KeyError('Content metadata for layer "%s" ' 'already exists' % cm.id) self.contents[cm.id] = cm gather_layers(elem, cm) gather_layers(caps, None) self.tilematrixsets = {} for elem in caps.findall(_TILE_MATRIX_SET_TAG): tms = TileMatrixSet(elem) if tms.identifier: if tms.identifier in self.tilematrixsets: raise KeyError('TileMatrixSet with identifier "%s" ' 'already exists' % tms.identifier) self.tilematrixsets[tms.identifier] = tms self.themes = {} for elem in self._capabilities.findall(_THEMES_TAG + '/' + _THEME_TAG): theme = Theme(elem) if theme.identifier: if theme.identifier in self.themes: raise KeyError('Theme with identifier "%s" already exists' % theme.identifier) self.themes[theme.identifier] = theme serviceMetadataURL = self._capabilities.find(_SERVICE_METADATA_URL_TAG) if serviceMetadataURL is not None: self.serviceMetadataURL = serviceMetadataURL.attrib[_HREF_TAG] else: self.serviceMetadataURL = None def items(self): '''supports dict-like items() access''' items = [] for item in self.contents: items.append((item, self.contents[item])) return items def buildTileRequest(self, layer=None, style=None, format=None, tilematrixset=None, tilematrix=None, row=None, column=None, **kwargs): """Return the URL-encoded parameters for a GetTile request. Parameters ---------- layer : string Content layer name. style : string Optional style name. Defaults to the first style defined for the relevant layer in the GetCapabilities response. format : string Optional output image format, such as 'image/jpeg'. Defaults to the first format defined for the relevant layer in the GetCapabilities response. tilematrixset : string Optional name of tile matrix set to use. Defaults to the first tile matrix set defined for the relevant layer in the GetCapabilities response. tilematrix : string Name of the tile matrix to use. row : integer Row index of tile to request. column : integer Column index of tile to request. **kwargs : extra arguments anything else e.g. vendor specific parameters Example ------- >>> url = 'http://map1c.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi' >>> wmts = WebMapTileService(url) >>> wmts.buildTileRequest(layer='VIIRS_CityLights_2012', ... tilematrixset='EPSG4326_500m', ... tilematrix='6', ... row=4, column=4) 'SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&\ LAYER=VIIRS_CityLights_2012&STYLE=default&TILEMATRIXSET=EPSG4326_500m&\ TILEMATRIX=6&TILEROW=4&TILECOL=4&FORMAT=image%2Fjpeg' """ if (layer is None): raise ValueError("layer is mandatory (cannot be None)") if style is None: style = list(self[layer].styles.keys())[0] if format is None: format = self[layer].formats[0] if tilematrixset is None: tilematrixset = sorted(self[layer].tilematrixsetlinks.keys())[0] if tilematrix is None: msg = 'tilematrix (zoom level) is mandatory (cannot be None)' raise ValueError(msg) if row is None: raise ValueError("row is mandatory (cannot be None)") if column is None: raise ValueError("column is mandatory (cannot be None)") request = list() request.append(('SERVICE', 'WMTS')) request.append(('REQUEST', 'GetTile')) request.append(('VERSION', '1.0.0')) request.append(('LAYER', layer)) request.append(('STYLE', style)) request.append(('TILEMATRIXSET', tilematrixset)) request.append(('TILEMATRIX', tilematrix)) request.append(('TILEROW', str(row))) request.append(('TILECOL', str(column))) request.append(('FORMAT', format)) for key, value in six.iteritems(kwargs): request.append((key, value)) data = urlencode(request, True) return data def buildTileResource(self, layer=None, style=None, format=None, tilematrixset=None, tilematrix=None, row=None, column=None, **kwargs): tileresourceurls = [] for resourceURL in self[layer].resourceURLs: if resourceURL['resourceType'] == 'tile': tileresourceurls.append(resourceURL) numres = len(tileresourceurls) if numres > 0: # choose random ResourceURL if more than one available resindex = randint(0, numres - 1) resurl = tileresourceurls[resindex]['template'] if tilematrixset: resurl = resurl.replace('{TileMatrixSet}', tilematrixset) resurl = resurl.replace('{TileMatrix}', tilematrix) resurl = resurl.replace('{TileRow}', row) resurl = resurl.replace('{TileCol}', column) if style: resurl = resurl.replace('{Style}', style) return resurl return None @property def restonly(self): # if OperationsMetadata is missing completely --> use REST if len(self.operations) == 0: return True # check if KVP or RESTful are available restenc = False kvpenc = False for operation in self.operations: if operation.name == 'GetTile': for method in operation.methods: if 'kvp' in str(method['constraints']).lower(): kvpenc = True if 'rest' in str(method['constraints']).lower(): restenc = True # if KVP is available --> use KVP if kvpenc: return False # if the operation has no constraint --> use KVP if not kvpenc and not restenc: return False return restenc def gettile(self, base_url=None, layer=None, style=None, format=None, tilematrixset=None, tilematrix=None, row=None, column=None, **kwargs): """Return a tile from the WMTS. Returns the tile image as a file-like object. Parameters ---------- base_url : string Optional URL for request submission. Defaults to the URL of the GetTile operation as declared in the GetCapabilities response. layer : string Content layer name. style : string Optional style name. Defaults to the first style defined for the relevant layer in the GetCapabilities response. format : string Optional output image format, such as 'image/jpeg'. Defaults to the first format defined for the relevant layer in the GetCapabilities response. tilematrixset : string Optional name of tile matrix set to use. Defaults to the first tile matrix set defined for the relevant layer in the GetCapabilities response. tilematrix : string Name of the tile matrix to use. row : integer Row index of tile to request. column : integer Column index of tile to request. **kwargs : extra arguments anything else e.g. vendor specific parameters Example ------- >>> url = 'http://map1c.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi' >>> wmts = WebMapTileService(url) >>> img = wmts.gettile(layer='VIIRS_CityLights_2012',\ tilematrixset='EPSG4326_500m',\ tilematrix='6',\ row=4, column=4) >>> out = open('tile.jpg', 'wb') >>> bytes_written = out.write(img.read()) >>> out.close() """ vendor_kwargs = self.vendor_kwargs or {} vendor_kwargs.update(kwargs) # REST only WMTS if self.restonly: resurl = self.buildTileResource( layer, style, format, tilematrixset, tilematrix, row, column, **vendor_kwargs) u = openURL(resurl, username=self.username, password=self.password) return u # KVP implemetation data = self.buildTileRequest(layer, style, format, tilematrixset, tilematrix, row, column, **vendor_kwargs) if base_url is None: base_url = self.url try: methods = self.getOperationByName('GetTile').methods get_verbs = [x for x in methods if x.get('type').lower() == 'get'] if len(get_verbs) > 1: # Filter by constraints base_url = next( x for x in filter( list, ([pv.get('url') for const in pv.get('constraints') if 'kvp' in [x.lower() for x in const.values]] for pv in get_verbs if pv.get('constraints'))))[0] elif len(get_verbs) == 1: base_url = get_verbs[0].get('url') except StopIteration: pass u = openURL(base_url, data, username=self.username, password=self.password) # check for service exceptions, and return if u.info()['Content-Type'] == 'application/vnd.ogc.se_xml': se_xml = u.read() se_tree = etree.fromstring(se_xml) err_message = six.text_type(se_tree.find('ServiceException').text) raise ServiceException(err_message.strip(), se_xml) return u def getServiceXML(self): xml = None if self._capabilities is not None: xml = etree.tostring(self._capabilities) return xml def getfeatureinfo(self): raise NotImplementedError def getOperationByName(self, name): """Return a named content item.""" for item in self.operations: if item.name == name: return item raise KeyError("No operation named %s" % name) class TileMatrixSet(object): '''Holds one TileMatrixSet''' def __init__(self, elem): if elem.tag != _TILE_MATRIX_SET_TAG: raise ValueError('%s should be a TileMatrixSet' % (elem,)) self.identifier = testXMLValue(elem.find(_IDENTIFIER_TAG)).strip() self.crs = testXMLValue(elem.find(_SUPPORTED_CRS_TAG)).strip() if self.crs is None or self.identifier is None: raise ValueError('%s incomplete TileMatrixSet' % (elem,)) self.tilematrix = {} for tilematrix in elem.findall(_TILE_MATRIX_TAG): tm = TileMatrix(tilematrix) if tm.identifier: if tm.identifier in self.tilematrix: raise KeyError('TileMatrix with identifier "%s" ' 'already exists' % tm.identifier) self.tilematrix[tm.identifier] = tm class TileMatrix(object): '''Holds one TileMatrix''' def __init__(self, elem): if elem.tag != _TILE_MATRIX_TAG: raise ValueError('%s should be a TileMatrix' % (elem,)) self.identifier = testXMLValue(elem.find(_IDENTIFIER_TAG)).strip() sd = testXMLValue(elem.find(_SCALE_DENOMINATOR_TAG)) if sd is None: raise ValueError('%s is missing ScaleDenominator' % (elem,)) self.scaledenominator = float(sd) tl = testXMLValue(elem.find(_TOP_LEFT_CORNER_TAG)) if tl is None: raise ValueError('%s is missing TopLeftCorner' % (elem,)) (lon, lat) = tl.split(" ") self.topleftcorner = (float(lon), float(lat)) width = testXMLValue(elem.find(_TILE_WIDTH_TAG)) height = testXMLValue(elem.find(_TILE_HEIGHT_TAG)) if (width is None) or (height is None): msg = '%s is missing TileWidth and/or TileHeight' % (elem,) raise ValueError(msg) self.tilewidth = int(width) self.tileheight = int(height) mw = testXMLValue(elem.find(_MATRIX_WIDTH_TAG)) mh = testXMLValue(elem.find(_MATRIX_HEIGHT_TAG)) if (mw is None) or (mh is None): msg = '%s is missing MatrixWidth and/or MatrixHeight' % (elem,) raise ValueError(msg) self.matrixwidth = int(mw) self.matrixheight = int(mh) class Theme: """ Abstraction for a WMTS theme """ def __init__(self, elem): if elem.tag != _THEME_TAG: raise ValueError('%s should be a Theme' % (elem,)) self.identifier = testXMLValue(elem.find(_IDENTIFIER_TAG)).strip() title = testXMLValue(elem.find(_TITLE_TAG)) if title is not None: self.title = title.strip() else: self.title = None abstract = testXMLValue(elem.find(_ABSTRACT_TAG)) if abstract is not None: self.abstract = abstract.strip() else: self.abstract = None self.layerRefs = [] layerRefs = elem.findall(_LAYER_REF_TAG) for layerRef in layerRefs: if layerRef.text is not None: self.layerRefs.append(layerRef.text) class TileMatrixLimits(object): """ Represents a WMTS TileMatrixLimits element. """ def __init__(self, elem): if elem.tag != _TILE_MATRIX_LIMITS_TAG: raise ValueError('%s should be a TileMatrixLimits' % elem) tm = elem.find(_TILE_MATRIX_TAG) if tm is None: raise ValueError('Missing TileMatrix in %s' % elem) self.tilematrix = tm.text.strip() self.mintilerow = getXMLInteger(elem, _MIN_TILE_ROW_TAG) self.maxtilerow = getXMLInteger(elem, _MAX_TILE_ROW_TAG) self.mintilecol = getXMLInteger(elem, _MIN_TILE_COL_TAG) self.maxtilecol = getXMLInteger(elem, _MAX_TILE_COL_TAG) def __repr__(self): fmt = ('') return fmt.format(self=self) class TileMatrixSetLink(object): """ Represents a WMTS TileMatrixSetLink element. """ @staticmethod def from_elements(link_elements): """ Return a list of TileMatrixSetLink instances derived from the given list of XML elements. """ # NB. The WMTS spec is contradictory re. the multiplicity # relationships between Layer and TileMatrixSetLink, and # TileMatrixSetLink and tileMatrixSet (URI). # Try to figure out which model has been used by the server. links = [] for link_element in link_elements: matrix_set_elements = link_element.findall(_TILE_MATRIX_SET_TAG) if len(matrix_set_elements) == 0: raise ValueError('Missing TileMatrixSet in %s' % link_element) elif len(matrix_set_elements) > 1: set_limits_elements = link_element.findall( _TILE_MATRIX_SET_LIMITS_TAG) if set_limits_elements: raise ValueError('Multiple instances of TileMatrixSet' ' plus TileMatrixSetLimits in %s' % link_element) for matrix_set_element in matrix_set_elements: uri = matrix_set_element.text.strip() links.append(TileMatrixSetLink(uri)) else: uri = matrix_set_elements[0].text.strip() tilematrixlimits = {} path = '%s/%s' % (_TILE_MATRIX_SET_LIMITS_TAG, _TILE_MATRIX_LIMITS_TAG) for limits_element in link_element.findall(path): tml = TileMatrixLimits(limits_element) if tml.tilematrix: if tml.tilematrix in tilematrixlimits: msg = ('TileMatrixLimits with tileMatrix "%s" ' 'already exists' % tml.tilematrix) raise KeyError(msg) tilematrixlimits[tml.tilematrix] = tml links.append(TileMatrixSetLink(uri, tilematrixlimits)) return links def __init__(self, tilematrixset, tilematrixlimits=None): self.tilematrixset = tilematrixset if tilematrixlimits is None: self.tilematrixlimits = {} else: self.tilematrixlimits = tilematrixlimits def __repr__(self): fmt = ('') return fmt.format(self=self) class ContentMetadata: """ Abstraction for WMTS layer metadata. Implements IContentMetadata. """ def __init__(self, elem, parent=None, index=0, parse_remote_metadata=False): if elem.tag != _LAYER_TAG: raise ValueError('%s should be a Layer' % (elem,)) self.parent = parent if parent: self.index = "%s.%d" % (parent.index, index) else: self.index = str(index) self.id = self.name = testXMLValue(elem.find(_IDENTIFIER_TAG)) # title is mandatory property self.title = None title = testXMLValue(elem.find(_TITLE_TAG)) if title is not None: self.title = title.strip() self.abstract = testXMLValue(elem.find(_ABSTRACT_TAG)) # bboxes b = elem.find(_WGS84_BOUNDING_BOX_TAG) self.boundingBox = None if b is not None: lc = b.find(_LOWER_CORNER_TAG) uc = b.find(_UPPER_CORNER_TAG) ll = [float(s) for s in lc.text.split()] ur = [float(s) for s in uc.text.split()] self.boundingBoxWGS84 = (ll[0], ll[1], ur[0], ur[1]) # TODO: there is probably some more logic here, and it should # probably be shared code self._tilematrixsets = [f.text.strip() for f in elem.findall(_TILE_MATRIX_SET_LINK_TAG + '/' + _TILE_MATRIX_SET_TAG)] link_elements = elem.findall(_TILE_MATRIX_SET_LINK_TAG) tile_matrix_set_links = TileMatrixSetLink.from_elements(link_elements) self.tilematrixsetlinks = {} for tmsl in tile_matrix_set_links: if tmsl.tilematrixset: if tmsl.tilematrixset in self.tilematrixsetlinks: raise KeyError('TileMatrixSetLink with tilematrixset "%s"' ' already exists' % tmsl.tilematrixset) self.tilematrixsetlinks[tmsl.tilematrixset] = tmsl self.resourceURLs = [] for resourceURL in elem.findall(_RESOURCE_URL_TAG): resource = {} for attrib in ['format', 'resourceType', 'template']: resource[attrib] = resourceURL.attrib[attrib] self.resourceURLs.append(resource) # Styles self.styles = {} for s in elem.findall(_STYLE_TAG): style = {} isdefaulttext = s.attrib.get('isDefault') style['isDefault'] = (isdefaulttext == "true") identifier = s.find(_IDENTIFIER_TAG) # one and mandatory if identifier is None: raise ValueError('%s missing identifier' % (s,)) title = s.find(_TITLE_TAG) if title is not None: style['title'] = testXMLValue(title) abstract = s.find(_ABSTRACT_TAG) if abstract is not None: style['abstract'] = testXMLValue(abstract) legendURL = s.find(_STYLE_LEGEND_URL) if legendURL is not None: style['legend'] = legendURL.attrib[_HREF_TAG] if 'width' in legendURL.attrib.keys(): style['width'] = legendURL.attrib.get('width') if 'height' in legendURL.attrib.keys(): style['height'] = legendURL.attrib.get('height') if 'format' in legendURL.attrib.keys(): style['format'] = legendURL.attrib.get('format') keywords = [f.text for f in s.findall( _KEYWORDS_TAG+'/'+_KEYWORD_TAG)] if keywords: # keywords is a list [] style['keywords'] = keywords self.styles[identifier.text] = style self.formats = [f.text for f in elem.findall(_FORMAT_TAG)] self.keywords = [f.text for f in elem.findall( _KEYWORDS_TAG+'/'+_KEYWORD_TAG)] self.infoformats = [f.text for f in elem.findall(_INFO_FORMAT_TAG)] self.layers = [] for child in elem.findall(_LAYER_TAG): self.layers.append(ContentMetadata(child, self)) @property def tilematrixsets(self): # NB. This attribute has been superseeded by the # `tilematrixsetlinks` attribute defined below, but is included # for now to provide continuity. warnings.warn("The 'tilematrixsets' attribute has been deprecated" " and will be removed in a future version of OWSLib." " Please use 'tilematrixsetlinks' instead.") return self._tilematrixsets def __str__(self): return 'Layer Name: %s Title: %s' % (self.name, self.title) class WMTSCapabilitiesReader: """Read and parse capabilities document into a lxml.etree infoset """ def __init__(self, version='1.0.0', url=None, un=None, pw=None): """Initialize""" self.version = version self._infoset = None self.url = url self.username = un self.password = pw def capabilities_url(self, service_url, vendor_kwargs=None): """Return a capabilities url """ # Ensure the 'service', 'request', and 'version' parameters, # and any vendor-specific parameters are included in the URL. pieces = urlparse(service_url) args = parse_qs(pieces.query) if 'service' not in args: args['service'] = 'WMTS' if 'request' not in args: args['request'] = 'GetCapabilities' if 'version' not in args: args['version'] = self.version if vendor_kwargs: args.update(vendor_kwargs) query = urlencode(args, doseq=True) pieces = ParseResult(pieces.scheme, pieces.netloc, pieces.path, pieces.params, query, pieces.fragment) return urlunparse(pieces) def read(self, service_url, vendor_kwargs=None): """Get and parse a WMTS capabilities document, returning an elementtree instance service_url is the base url, to which is appended the service, version, and request parameters. Optional vendor-specific parameters can also be supplied as a dict. """ getcaprequest = self.capabilities_url(service_url, vendor_kwargs) # now split it up again to use the generic openURL function... spliturl = getcaprequest.split('?') u = openURL(spliturl[0], spliturl[1], method='Get', username=self.username, password=self.password) return etree.fromstring(u.read()) def readString(self, st): """Parse a WMTS capabilities document, returning an elementtree instance string should be an XML capabilities document """ if not isinstance(st, str) and not isinstance(st, bytes): msg = 'String must be of type string or bytes, not %s' % type(st) raise ValueError(msg) return etree.fromstring(st) OWSLib-0.16.0/owslib/wps.py000066400000000000000000002116001321706412000153530ustar00rootroot00000000000000# # # Author: Luca Cinquini # # """ Abstract -------- The wps module of the OWSlib package provides client-side functionality for executing invocations to a remote Web Processing Server. Disclaimer ---------- PLEASE NOTE: the owslib wps module should be considered in beta state: it has been tested versus only a handful of WPS services (deployed by the USGS, BADC and PML). More extensive testing is needed and feedback is appreciated. Usage ----- The module can be used to execute three types of requests versus a remote WPS endpoint: a) "GetCapabilities" - use the method wps.getcapabilities(xml=None) - the optional keyword argument "xml" may be used to avoid a real live request, and instead read the WPS capabilities document from a cached XML file b) "DescribeProcess" - use the method wps.describeprocess(identifier, xml=None) - identifier is the process identifier, retrieved from the list obtained from a previous "GetCapabilities" invocation - the optional keyword argument "xml" may be used to avoid a real live request, and instead read the WPS process description document from a cached XML file c) "Execute" - use the method wps.execute(identifier, inputs, output=None, request=None, response=None), which submits the job to the remote WPS server and returns a WPSExecution object that can be used to periodically check the job status until completion (or error) - the optional keyword argument "request" may be used to avoid re-building the request XML from input arguments, and instead submit a request from a pre-made XML file - alternatively, an "Execute" request can be built from input arguments by supplying the "identifier", "inputs" and "output" arguments to the execute() method. - "identifier" is the mandatory process identifier - "inputs" is a dictionary of (key,value) pairs where: - key is a named input parameter - value is either a string, or any python object that supports a getXml() method In particular, a few classes are included in the package to support a FeatuteCollection input: - "WFSFeatureCollection" can be used in conjunction with "WFSQuery" to define a FEATURE_COLLECTION retrieved from a live WFS server. - "GMLMultiPolygonFeatureCollection" can be used to define one or more polygons of (latitude, longitude) points. - "output" is an optional output identifier to be included in the ResponseForm section of the request. - the optional keyword argument "response" mey be used to avoid submitting a real live request, and instead reading the WPS execution response document from a cached XML file (for debugging or testing purposes) - the convenience module function monitorExecution() can be used to periodically check the status of a remote running job, and eventually download the output either to a named file, or to a file specified by the server. Examples -------- The files examples/wps-usgs-script.py, examples/wps-pml-script-1.py and examples/wps-pml-script-2.py contain real-world usage examples that submits a "GetCapabilities", "DescribeProcess" and "Execute" requests to the live USGS and PML servers. To run: cd examples python wps-usgs-script.py python wps-pml-script-1.py python wps-pml-script-2.py The file wps-client.py contains a command-line client that can be used to submit a "GetCapabilities", "DescribeProcess" or "Execute" request to an arbitratry WPS server. For example, you can run it as follows: cd examples To prints out usage and example invocations: wps-client -help To execute a (fake) WPS invocation: wps-client.py -v -u http://cida.usgs.gov/climate/gdp/process/WebProcessingService -r GetCapabilities -x ../tests/USGSCapabilities.xml The directory tests/ includes several doctest-style files wps_*.txt that show how to interactively submit a "GetCapabilities", "DescribeProcess" or "Execute" request, without making a live request but rather parsing the response of cached XML response documents. To run: cd tests python -m doctest wps_*.txt (or python -m doctest -v wps_*.txt for verbose output) Also, the directory tests/ contains several examples of well-formed "Execute" requests: - The files wps_USGSExecuteRequest*.xml contain requests that can be submitted to the live USGS WPS service. - The files PMLExecuteRequest*.xml contain requests that can be submitted to the live PML WPS service. """ from __future__ import (absolute_import, division, print_function) from owslib.etree import etree from owslib.ows import DEFAULT_OWS_NAMESPACE, ServiceIdentification, ServiceProvider, OperationsMetadata, BoundingBox from time import sleep from owslib.util import (testXMLValue, build_get_url, clean_ows_url, dump, getTypedValue, getNamespace, element_to_string, nspath, openURL, nspath_eval, log) from xml.dom.minidom import parseString from owslib.namespaces import Namespaces try: # Python 3 from urllib.parse import urlparse except ImportError: # Python 2 from urlparse import urlparse # namespace definition n = Namespaces() # These static namespaces are DEPRECIATED. Please don't use them. # No great way of printing a message since there are at the file level WPS_DEFAULT_NAMESPACE = n.get_namespace("wps") WFS_NAMESPACE = n.get_namespace("wfs") OGC_NAMESPACE = n.get_namespace("ogc") GML_NAMESPACE = n.get_namespace("gml") DRAW_NAMESPACE = n.get_namespace("draw") GML_SCHEMA_LOCATION = "http://schemas.opengis.net/gml/3.1.1/base/feature.xsd" DRAW_SCHEMA_LOCATION = 'http://cida.usgs.gov/climate/derivative/xsd/draw.xsd' WFS_SCHEMA_LOCATION = 'http://schemas.opengis.net/wfs/1.1.0/wfs.xsd' WPS_DEFAULT_SCHEMA_LOCATION = 'http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd' WPS_DEFAULT_VERSION = '1.0.0' def get_namespaces(): ns = n.get_namespaces(["ogc", "wfs", "wps", "gml", "xsi", "xlink"]) ns[None] = n.get_namespace("wps") ns["ows"] = DEFAULT_OWS_NAMESPACE return ns namespaces = get_namespaces() def is_reference(val): """ Checks if the provided value is a reference (URL). """ try: parsed = urlparse(val) is_ref = parsed.scheme != '' except: is_ref = False return is_ref def is_literaldata(val): """ Checks if the provided value is a string (includes unicode). """ is_str = isinstance(val, str) if not is_str: # on python 2.x we need to check unicode try: is_str = isinstance(val, unicode) except: # unicode is not available on python 3.x is_str = False return is_str def is_boundingboxdata(val): """ Checks if the provided value is an implementation of ``BoundingBoxDataInput``. """ return isinstance(val, BoundingBoxDataInput) def is_complexdata(val): """ Checks if the provided value is an implementation of ``IComplexDataInput``. """ return isinstance(val, IComplexDataInput) class IComplexDataInput(object): """ Abstract interface representing complex input object for a WPS request. """ def getXml(self): """ Method that returns the object data as an XML snippet, to be inserted into the WPS request document sent to the server. """ raise NotImplementedError class WebProcessingService(object): """ Class that contains client-side functionality for invoking an OGC Web Processing Service (WPS). Implements IWebProcessingService. """ def __init__(self, url, version=WPS_DEFAULT_VERSION, username=None, password=None, verbose=False, skip_caps=False): """ Initialization method resets the object status. By default it will execute a GetCapabilities invocation to the remote service, which can be skipped by using skip_caps=True. """ # fields passed in from object initializer self.url = clean_ows_url(url) self.username = username self.password = password self.version = version self.verbose = verbose # fields populated by method invocations self._capabilities = None self.identification = None self.provider = None self.operations = [] self.processes = [] if not skip_caps: self.getcapabilities() def getcapabilities(self, xml=None): """ Method that requests a capabilities document from the remote WPS server and populates this object's metadata. keyword argument xml: local XML GetCapabilities document, prevents actual HTTP invocation. """ # read capabilities document reader = WPSCapabilitiesReader( version=self.version, verbose=self.verbose) if xml: # read from stored XML file self._capabilities = reader.readFromString(xml) else: self._capabilities = reader.readFromUrl( self.url, username=self.username, password=self.password) log.debug(element_to_string(self._capabilities)) # populate the capabilities metadata obects from the XML tree self._parseCapabilitiesMetadata(self._capabilities) def describeprocess(self, identifier, xml=None): """ Requests a process document from a WPS service and populates the process metadata. Returns the process object. """ # read capabilities document reader = WPSDescribeProcessReader( version=self.version, verbose=self.verbose) if xml: # read from stored XML file rootElement = reader.readFromString(xml) else: # read from server rootElement = reader.readFromUrl(self.url, identifier) log.info(element_to_string(rootElement)) # build metadata objects return self._parseProcessMetadata(rootElement) def execute(self, identifier, inputs, output=None, request=None, response=None): """ Submits a WPS process execution request. Returns a WPSExecution object, which can be used to monitor the status of the job, and ultimately retrieve the result. identifier: the requested process identifier inputs: list of process inputs as (key, value) tuples (where value is either a string for LiteralData, or an object for ComplexData) output: optional identifier for process output reference (if not provided, output will be embedded in the response) request: optional pre-built XML request document, prevents building of request from other arguments response: optional pre-built XML response document, prevents submission of request to live WPS server """ # instantiate a WPSExecution object log.info('Executing WPS request...') execution = WPSExecution(version=self.version, url=self.url, username=self.username, password=self.password, verbose=self.verbose) # build XML request from parameters if request is None: requestElement = execution.buildRequest(identifier, inputs, output) request = etree.tostring(requestElement) execution.request = request log.debug(request) # submit the request to the live server if response is None: response = execution.submitRequest(request) else: response = etree.fromstring(response) log.debug(etree.tostring(response)) # parse response execution.parseResponse(response) return execution def _parseProcessMetadata(self, rootElement): """ Method to parse a XML element and returned the constructed Process object """ processDescriptionElement = rootElement.find('ProcessDescription') process = Process(processDescriptionElement, verbose=self.verbose) # override existing processes in object metadata, if existing already found = False for n, p in enumerate(self.processes): if p.identifier == process.identifier: self.processes[n] = process found = True # otherwise add it if not found: self.processes.append(process) return process def _parseCapabilitiesMetadata(self, root): ''' Sets up capabilities metadata objects ''' # use the WPS namespace defined in the document root wpsns = getNamespace(root) self.updateSequence = root.attrib.get('updateSequence') # loop over children WITHOUT requiring a specific namespace for element in root: # thie element's namespace ns = getNamespace(element) # metadata if element.tag.endswith('ServiceIdentification'): self.identification = ServiceIdentification( element, namespace=ns) if self.verbose == True: dump(self.identification) # metadata elif element.tag.endswith('ServiceProvider'): self.provider = ServiceProvider(element, namespace=ns) if self.verbose == True: dump(self.provider) # # # # # # # # # ........ # elif element.tag.endswith('OperationsMetadata'): for child in element.findall(nspath('Operation', ns=ns)): self.operations.append( OperationsMetadata(child, namespace=ns)) if self.verbose == True: dump(self.operations[-1]) # # # gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles # gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles # # ...... # elif element.tag.endswith('ProcessOfferings'): for child in element.findall(nspath('Process', ns=ns)): p = Process(child, verbose=self.verbose) self.processes.append(p) if self.verbose == True: dump(self.processes[-1]) class WPSReader(object): """ Superclass for reading a WPS document into a lxml.etree infoset. """ def __init__(self, version=WPS_DEFAULT_VERSION, verbose=False): self.version = version self.verbose = verbose def _readFromUrl(self, url, data, method='Get', username=None, password=None): """ Method to get and parse a WPS document, returning an elementtree instance. url: WPS service base url. data: GET: dictionary of HTTP (key, value) parameter pairs, POST: XML document to post username, password: optional user credentials """ if method == 'Get': # full HTTP request url request_url = build_get_url(url, data) log.debug(request_url) # split URL into base url and query string to use utility function spliturl = request_url.split('?') u = openURL(spliturl[0], spliturl[ 1], method='Get', username=username, password=password) return etree.fromstring(u.read()) elif method == 'Post': u = openURL(url, data, method='Post', username=username, password=password) return etree.fromstring(u.read()) else: raise Exception("Unrecognized HTTP method: %s" % method) def readFromString(self, string): """ Method to read a WPS GetCapabilities document from an XML string. """ if not isinstance(string, str) and not isinstance(string, bytes): raise ValueError( "Input must be of type string, not %s" % type(string)) return etree.fromstring(string) class WPSCapabilitiesReader(WPSReader): """ Utility class that reads and parses a WPS GetCapabilities document into a lxml.etree infoset. """ def __init__(self, version=WPS_DEFAULT_VERSION, verbose=False): # superclass initializer super(WPSCapabilitiesReader, self).__init__( version=version, verbose=verbose) def readFromUrl(self, url, username=None, password=None): """ Method to get and parse a WPS capabilities document, returning an elementtree instance. url: WPS service base url, to which is appended the HTTP parameters: service, version, and request. username, password: optional user credentials """ return self._readFromUrl(url, {'service': 'WPS', 'request': 'GetCapabilities', 'version': self.version}, username=username, password=password) class WPSDescribeProcessReader(WPSReader): """ Class that reads and parses a WPS DescribeProcess document into a etree infoset """ def __init__(self, version=WPS_DEFAULT_VERSION, verbose=False): # superclass initializer super(WPSDescribeProcessReader, self).__init__( version=version, verbose=verbose) def readFromUrl(self, url, identifier, username=None, password=None): """ Reads a WPS DescribeProcess document from a remote service and returns the XML etree object url: WPS service base url, to which is appended the HTTP parameters: 'service', 'version', and 'request', and 'identifier'. """ return self._readFromUrl(url, {'service': 'WPS', 'request': 'DescribeProcess', 'version': self.version, 'identifier': identifier}, username=username, password=password) class WPSExecuteReader(WPSReader): """ Class that reads and parses a WPS Execute response document into a etree infoset """ def __init__(self, verbose=False): # superclass initializer super(WPSExecuteReader, self).__init__(verbose=verbose) def readFromUrl(self, url, data={}, method='Get', username=None, password=None): """ Reads a WPS status document from a remote service and returns the XML etree object. url: the URL to submit the GET/POST request to. """ return self._readFromUrl(url, data, method, username=username, password=password) class WPSExecution(): """ Class that represents a single WPS process executed on a remote WPS service. """ def __init__(self, version=WPS_DEFAULT_VERSION, url=None, username=None, password=None, verbose=False): # initialize fields self.url = url self.version = version self.username = username self.password = password self.verbose = verbose # request document self.request = None # last response document self.response = None # status fields retrieved from the response documents self.process = None self.serviceInstance = None self.status = None self.percentCompleted = 0 self.statusMessage = None self.errors = [] self.statusLocation = None self.dataInputs = [] self.processOutputs = [] def buildRequest(self, identifier, inputs=[], output=None): """ Method to build a WPS process request. identifier: the requested process identifier inputs: array of input arguments for the process. - LiteralData inputs are expressed as simple (key,value) tuples where key is the input identifier, value is the value - ComplexData inputs are expressed as (key, object) tuples, where key is the input identifier, and the object must contain a 'getXml()' method that returns an XML infoset to be included in the WPS request output: optional identifier if process output is to be returned as a hyperlink reference """ # root = etree.Element(nspath_eval('wps:Execute', namespaces)) root.set('service', 'WPS') root.set('version', WPS_DEFAULT_VERSION) root.set(nspath_eval('xsi:schemaLocation', namespaces), '%s %s' % (namespaces['wps'], WPS_DEFAULT_SCHEMA_LOCATION)) # gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm identifierElement = etree.SubElement( root, nspath_eval('ows:Identifier', namespaces)) identifierElement.text = identifier # dataInputsElement = etree.SubElement( root, nspath_eval('wps:DataInputs', namespaces)) for (key, val) in inputs: inputElement = etree.SubElement( dataInputsElement, nspath_eval('wps:Input', namespaces)) identifierElement = etree.SubElement( inputElement, nspath_eval('ows:Identifier', namespaces)) identifierElement.text = key # Literal data # # DATASET_URI # # dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml # # if is_literaldata(val): log.debug("literaldata %s", key) dataElement = etree.SubElement( inputElement, nspath_eval('wps:Data', namespaces)) literalDataElement = etree.SubElement( dataElement, nspath_eval('wps:LiteralData', namespaces)) literalDataElement.text = val # Complex data # # FEATURE_COLLECTION # # # # # the_geom # STATE # # # # # # # # elif is_complexdata(val): log.debug("complexdata %s", key) inputElement.append(val.getXml()) elif is_boundingboxdata(val): inputElement.append(val.get_xml()) else: raise Exception( 'input type of "%s" parameter is unknown' % key) # # # # OUTPUT # # # if output is not None: responseFormElement = etree.SubElement( root, nspath_eval('wps:ResponseForm', namespaces)) responseDocumentElement = etree.SubElement( responseFormElement, nspath_eval( 'wps:ResponseDocument', namespaces), attrib={'storeExecuteResponse': 'true', 'status': 'true'}) if isinstance(output, str): self._add_output( responseDocumentElement, output, asReference=True) elif isinstance(output, list): for (identifier, as_reference) in output: self._add_output( responseDocumentElement, identifier, asReference=as_reference) else: raise Exception( 'output parameter is neither string nor list. output=%s' % output) return root def _add_output(self, element, identifier, asReference=False): outputElement = etree.SubElement( element, nspath_eval('wps:Output', namespaces), attrib={'asReference': str(asReference).lower()}) outputIdentifierElement = etree.SubElement( outputElement, nspath_eval('ows:Identifier', namespaces)).text = identifier # wait for 60 seconds by default def checkStatus(self, url=None, response=None, sleepSecs=60): """ Method to check the status of a job execution. In the process, this method will upadte the object 'response' attribute. url: optional 'statusLocation' URL retrieved from a previous WPS Execute response document. If not provided, the current 'statusLocation' URL will be used. sleepSecs: number of seconds to sleep before returning control to the caller. """ reader = WPSExecuteReader(verbose=self.verbose) if response is None: # override status location if url is not None: self.statusLocation = url log.info('\nChecking execution status... (location=%s)' % self.statusLocation) response = reader.readFromUrl( self.statusLocation, username=self.username, password=self.password) else: response = reader.readFromString(response) # store latest response self.response = etree.tostring(response) log.debug(self.response) self.parseResponse(response) # sleep given number of seconds if self.isComplete() == False: log.info('Sleeping %d seconds...' % sleepSecs) sleep(sleepSecs) def getStatus(self): return self.status def isComplete(self): if (self.status == 'ProcessSucceeded' or self.status == 'ProcessFailed' or self.status == 'Exception'): return True elif (self.status == 'ProcessStarted'): return False elif (self.status == 'ProcessAccepted' or self.status == 'ProcessPaused'): return False else: raise Exception( 'Unknown process execution status: %s' % self.status) def isSucceded(self): if self.status == 'ProcessSucceeded': return True else: return False def isNotComplete(self): return not self.isComplete() def getOutput(self, filepath=None): """ Method to write the outputs of a WPS process to a file: either retrieves the referenced files from the server, or writes out the content of response embedded output. filepath: optional path to the output file, otherwise a file will be created in the local directory with the name assigned by the server, or default name 'wps.out' for embedded output. """ if self.isSucceded(): content = b'' for output in self.processOutputs: output_content = output.retrieveData( self.username, self.password) # ExecuteResponse contains reference to server-side output if output_content is not b'': content = content + output_content if filepath is None: filepath = output.fileName # ExecuteResponse contain embedded output if len(output.data) > 0: if filepath is None: filepath = 'wps.out' for data in output.data: content = content + data # write out content if content is not '': out = open(filepath, 'wb') out.write(content) out.close() log.info('Output written to file: %s' % filepath) else: raise Exception( "Execution not successfully completed: status=%s" % self.status) def submitRequest(self, request): """ Submits a WPS Execute document to a remote service, returns the XML response document from the server. This method will save the request document and the first returned response document. request: the XML request document to be submitted as POST to the server. """ self.request = request reader = WPSExecuteReader(verbose=self.verbose) response = reader.readFromUrl( self.url, request, method='Post', username=self.username, password=self.password) self.response = response return response ''' if response is None: # override status location if url is not None: self.statusLocation = url else: response = reader.readFromString(response) ''' def parseResponse(self, response): """ Method to parse a WPS response document """ rootTag = response.tag.split('}')[1] # if rootTag == 'ExecuteResponse': self._parseExecuteResponse(response) # elif rootTag == 'ExceptionReport': self._parseExceptionReport(response) else: log.debug('Unknown Response') # log status, errors log.info('Execution status=%s' % self.status) log.info('Percent completed=%s' % self.percentCompleted) log.info('Status message=%s' % self.statusMessage) for error in self.errors: dump(error) def _parseExceptionReport(self, root): """ Method to parse a WPS ExceptionReport document and populate this object's metadata. """ # set exception status, unless set already if self.status is None: self.status = "Exception" for exceptionEl in root.findall(nspath('Exception', ns=namespaces['ows'])): self.errors.append(WPSException(exceptionEl)) def _parseExecuteResponse(self, root): """ Method to parse a WPS ExecuteResponse response document and populate this object's metadata. """ # retrieve WPS namespace directly from root element wpsns = getNamespace(root) self.serviceInstance = root.get('serviceInstance') if self.statusLocation is None: self.statusLocation = root.get('statusLocation') # # PyWPS Process v.net.path successfully calculated # # OR # # # # # Attribute null not found in feature collection # # # # statusEl = root.find(nspath('Status/*', ns=wpsns)) self.status = statusEl.tag.split('}')[1] # get progress info try: percentCompleted = int(statusEl.get('percentCompleted')) self.percentCompleted = percentCompleted except: pass # get status message self.statusMessage = statusEl.text # exceptions ? for element in statusEl: if element.tag.endswith('ExceptionReport'): self._parseExceptionReport(element) self.process = Process( root.find(nspath('Process', ns=wpsns)), verbose=self.verbose) # for inputElement in root.findall(nspath('DataInputs/Input', ns=wpsns)): self.dataInputs.append(Input(inputElement)) if self.verbose == True: dump(self.dataInputs[-1]) # # xmlns:ns="http://www.opengis.net/wps/1.0.0" for outputElement in root.findall(nspath('ProcessOutputs/Output', ns=wpsns)): self.processOutputs.append(Output(outputElement)) if self.verbose == True: dump(self.processOutputs[-1]) class ComplexData(object): """ Class that represents a ComplexData element in a WPS document """ def __init__(self, mimeType=None, encoding=None, schema=None): self.mimeType = mimeType self.encoding = encoding self.schema = schema class InputOutput(object): """ Superclass of a WPS input or output data object. """ def __init__(self, element): self.abstract = None # loop over sub-elements without requiring a specific namespace for subElement in element: # SUMMARIZE_TIMESTEP if subElement.tag.endswith('Identifier'): self.identifier = testXMLValue(subElement) # Summarize Timestep elif subElement.tag.endswith('Title'): self.title = testXMLValue(subElement) # If selected, processing output will include columns with summarized statistics for all feature attribute values for each timestep elif subElement.tag.endswith('Abstract'): self.abstract = testXMLValue(subElement) self.allowedValues = [] self.supportedValues = [] self.defaultValue = None self.dataType = None self.anyValue = False def _parseData(self, element): """ Method to parse a "Data" element """ # # # 7504912.93758151 -764109.175074507,7750849.82379226 -22141.8611641468,8561828.42371234 -897195.923493867,7724946.16844165 -602984.014261927 # # # nspath('Data', ns=WPS_NAMESPACE) complex_data_element = element.find( nspath('ComplexData', ns=getNamespace(element))) if complex_data_element is not None: self.dataType = "ComplexData" def _parseLiteralData(self, element, literalElementName): """ Method to parse the LiteralData element. """ # # # # COMMA # TAB # SPACE # # COMMA # # # # # literal_data_element = element.find(literalElementName) if literal_data_element is not None: self.dataType = 'LiteralData' for sub_element in literal_data_element: subns = getNamespace(sub_element) if sub_element.tag.endswith('DataType'): reference = sub_element.get(nspath("reference", ns=subns)) or sub_element.text if reference and ':' in reference: self.dataType = reference.split(':')[-1] for sub_element in literal_data_element: subns = getNamespace(sub_element) if sub_element.tag.endswith('DefaultValue'): self.defaultValue = getTypedValue( self.dataType, sub_element.text) if sub_element.tag.endswith('AllowedValues'): for value in sub_element.findall(nspath('Value', ns=subns)): self.allowedValues.append( getTypedValue(self.dataType, value.text)) elif sub_element.tag.endswith('AnyValue'): self.anyValue = True def _parseComplexData(self, element, complexDataElementName): """ Method to parse a ComplexData or ComplexOutput element. """ # # # # text/xml # UTF-8 # http://schemas.opengis.net/gml/2.0.0/feature.xsd # # # # # text/xml # UTF-8 # http://schemas.opengis.net/gml/2.0.0/feature.xsd # # # text/xml # UTF-8 # http://schemas.opengis.net/gml/2.1.1/feature.xsd # # # # OR # # # text/XML # UTF-8 # NONE # # complex_data_element = element.find(complexDataElementName) if complex_data_element is not None: self.dataType = "ComplexData" for supported_comlexdata_element in\ complex_data_element.findall('SupportedComplexData'): self.supportedValues.append( ComplexData( mimeType=testXMLValue( supported_comlexdata_element.find('Format')), encoding=testXMLValue( supported_comlexdata_element.find('Encoding')), schema=testXMLValue( supported_comlexdata_element.find('Schema')) ) ) for format_element in\ complex_data_element.findall('Supported/Format'): self.supportedValues.append( ComplexData( mimeType=testXMLValue(format_element.find('MimeType')), encoding=testXMLValue(format_element.find('Encoding')), schema=testXMLValue(format_element.find('Schema')) ) ) default_format_element = complex_data_element.find('Default/Format') if default_format_element is not None: self.defaultValue = ComplexData( mimeType=testXMLValue( default_format_element.find('MimeType')), encoding=testXMLValue( default_format_element.find('Encoding')), schema=testXMLValue(default_format_element.find('Schema')) ) def _parseBoundingBoxData(self, element, bboxElementName): """ Method to parse the BoundingBoxData element. """ # # # epsg:4326 # # # epsg:4326 # # # # OR # # # # epsg:4326 # # # epsg:4326 # # bbox_data_element = element.find(bboxElementName) if bbox_data_element is not None: self.dataType = 'BoundingBoxData' for bbox_element in bbox_data_element.findall('Supported/CRS'): self.supportedValues.append(bbox_element.text) default_bbox_element = bbox_data_element.find('Default/CRS') if default_bbox_element is not None: self.defaultValue = default_bbox_element.text class Input(InputOutput): """ Class that represents a WPS process input. """ def __init__(self, inputElement): # superclass initializer super(Input, self).__init__(inputElement) # # OR # 1 self.minOccurs = -1 if inputElement.get("minOccurs") is not None: self.minOccurs = int(inputElement.get("minOccurs")) if inputElement.find('MinimumOccurs') is not None: self.minOccurs = int( testXMLValue(inputElement.find('MinimumOccurs'))) self.maxOccurs = -1 if inputElement.get("maxOccurs") is not None: self.maxOccurs = int(inputElement.get("maxOccurs")) if inputElement.find('MaximumOccurs') is not None: self.maxOccurs = int( testXMLValue(inputElement.find('MaximumOccurs'))) # self._parseLiteralData(inputElement, 'LiteralData') # self._parseComplexData(inputElement, 'ComplexData') # self._parseBoundingBoxData(inputElement, 'BoundingBoxData') class Output(InputOutput): """ Class that represents a WPS process output. """ def __init__(self, outputElement): # superclass initializer super(Output, self).__init__(outputElement) self.reference = None self.mimeType = None self.data = [] self.fileName = None self.filePath = None # extract wps namespace from outputElement itself wpsns = getNamespace(outputElement) # referenceElement = outputElement.find(nspath('Reference', ns=wpsns)) if referenceElement is not None: self.reference = referenceElement.get('href') self.mimeType = referenceElement.get('mimeType') # self._parseLiteralData(outputElement, 'LiteralOutput') # or self._parseComplexData(outputElement, 'ComplexOutput') # self._parseBoundingBoxData(outputElement, 'BoundingBoxOutput') # # # # 7504912.93758151 -764109.175074507,7750849.82379226 -22141.8611641468,8561828.42371234 -897195.923493867,7724946.16844165 -602984.014261927 # # # OR: # # # # # # -960123.14218016264665723.56559387 # -101288.65106088225108200.011823481 # # # # # -960123.142180162365548,4665723.565593870356679,0 -960123.142180162365548,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -711230.141176006174646,4710278.48552671354264,0 -711230.141176006174646,4710278.48552671354264,0 -623656.677859728806652,4848552.374973464757204,0 -623656.677859728806652,4848552.374973464757204,0 -410100.337491964863148,4923834.82589447684586,0 -410100.337491964863148,4923834.82589447684586,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0 # 1 # 1 # 0 # 0 # 0 # 1002619.181 # 0 # 0 # # # # # # # # OWS BoundingBox: # # # # 0.0 -90.0 # 180.0 90.0 # # # dataElement = outputElement.find(nspath('Data', ns=wpsns)) if dataElement is not None: complexDataElement = dataElement.find( nspath('ComplexData', ns=wpsns)) if complexDataElement is not None: self.dataType = "ComplexData" self.mimeType = complexDataElement.get('mimeType') if complexDataElement.text is not None and complexDataElement.text.strip() is not '': self.data.append(complexDataElement.text.strip()) for child in complexDataElement: self.data.append(etree.tostring(child)) literalDataElement = dataElement.find( nspath('LiteralData', ns=wpsns)) if literalDataElement is not None: self.dataType = literalDataElement.get('dataType') if literalDataElement.text is not None and literalDataElement.text.strip() is not '': self.data.append(literalDataElement.text.strip()) bboxDataElement = dataElement.find(nspath('BoundingBox', ns=namespaces['ows'])) if not bboxDataElement: # TODO: just a workaround for data-inputs in lineage bboxDataElement = dataElement.find(nspath('BoundingBoxData', ns=namespaces['wps'])) if bboxDataElement is not None: self.dataType = "BoundingBoxData" bbox = BoundingBox(bboxDataElement) if bbox: self.data.append(bbox) def retrieveData(self, username=None, password=None): """ Method to retrieve data from server-side reference: returns "" if the reference is not known. username, password: credentials to access the remote WPS server """ url = self.reference if url is None: return "" # a) 'http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1318528582026OUTPUT.601bb3d0-547f-4eab-8642-7c7d2834459e' # b) 'http://rsg.pml.ac.uk/wps/wpsoutputs/outputImage-11294Bd6l2a.tif' log.info('Output URL=%s' % url) if '?' in url: spliturl = url.split('?') u = openURL(spliturl[0], spliturl[ 1], method='Get', username=username, password=password) # extract output filepath from URL query string self.fileName = spliturl[1].split('=')[1] else: u = openURL( url, '', method='Get', username=username, password=password) # extract output filepath from base URL self.fileName = url.split('/')[-1] return u.read() def writeToDisk(self, path=None, username=None, password=None): """ Method to write an output of a WPS process to disk: it either retrieves the referenced file from the server, or write out the content of response embedded output. filepath: optional path to the output file, otherwise a file will be created in the local directory with the name assigned by the server, username, password: credentials to access the remote WPS server """ # Check if ExecuteResponse contains reference to server-side output content = self.retrieveData(username, password) # ExecuteResponse contain embedded output if content is "" and len(self.data) > 0: self.fileName = self.identifier for data in self.data: content = content + data # write out content if content is not "": if self.fileName == "": self.fileName = self.identifier self.filePath = path + self.fileName out = open(self.filePath, 'wb') out.write(content) out.close() log.info('Output written to file: %s' % self.filePath) class WPSException: """ Class representing an exception raised by a WPS. """ def __init__(self, root): self.code = root.attrib.get("exceptionCode", None) self.locator = root.attrib.get("locator", None) textEl = root.find(nspath('ExceptionText', ns=getNamespace(root))) if textEl is not None: self.text = textEl.text else: self.text = "" class Process(object): """ Class that represents a WPS process. """ def __init__(self, elem, verbose=False): """ Initialization method extracts all available metadata from an XML document (passed in as etree object) """ # # OR: # self._root = elem self.verbose = verbose wpsns = getNamespace(elem) # self.processVersion = elem.get(nspath('processVersion', ns=wpsns)) self.statusSupported = bool(elem.get("statusSupported")) self.storeSupported = bool(elem.get("storeSupported")) self.abstract = None for child in elem: # this element's namespace ns = getNamespace(child) # gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm if child.tag.endswith('Identifier'): self.identifier = testXMLValue(child) # Feature Weighted Grid Statistics elif child.tag.endswith('Title'): self.title = testXMLValue(child) # This algorithm generates area weighted statistics of a gridded dataset for a set of vector polygon features. Using the bounding-box that encloses the feature data and the time range, if provided, a subset of the gridded dataset is requested from the remote gridded data server. Polygon representations are generated for cells in the retrieved grid. The polygon grid-cell representations are then projected to the feature data coordinate reference system. The grid-cells are used to calculate per grid-cell feature coverage fractions. Area-weighted statistics are then calculated for each feature using the grid values and fractions as weights. If the gridded dataset has a time range the last step is repeated for each time step within the time range or all time steps if a time range was not supplied. elif child.tag.endswith('Abstract'): self.abstract = testXMLValue(child) if self.verbose == True: dump(self) # self.dataInputs = [] for inputElement in elem.findall('DataInputs/Input'): self.dataInputs.append(Input(inputElement)) if self.verbose == True: dump(self.dataInputs[-1], prefix='\tInput: ') # self.processOutputs = [] for outputElement in elem.findall('ProcessOutputs/Output'): self.processOutputs.append(Output(outputElement)) if self.verbose == True: dump(self.processOutputs[-1], prefix='\tOutput: ') class BoundingBoxDataInput(object): """ Data input class for ``wps:BoundingBoxData``. :param list data: Coordinates of lower and upper corner. Example [10, 50, 20, 60] with lower corner=[10, 50] and upper corner=[20, 60]. :param string crs: Name of coordinate reference system. Default: "epsg:4326". """ def __init__(self, data, crs=None, dimensions=2): if isinstance(data, list): self.data = data else: # convenience method for string input self.data = [float(number) for number in data.split(',')] self.lower_corner = (self.data[0], self.data[1]) self.upper_corner = (self.data[2], self.data[3]) self.dimensions = dimensions self.crs = crs or 'epsg:4326' def get_xml(self): """ Method that returns the object data as an XML snippet, to be inserted into the WPS request document sent to the server. """ ''' 51.9 7.0 53.0 8.0 ''' data_el = etree.Element(nspath_eval('wps:Data', namespaces)) attrib = dict() if self.crs: attrib['crs'] = self.crs if self.dimensions: attrib['dimensions'] = str(self.dimensions) bbox_el = etree.SubElement( data_el, nspath_eval('wps:BoundingBoxData', namespaces), attrib=attrib) lc_el = etree.SubElement( bbox_el, nspath_eval('ows:LowerCorner', namespaces)) lc_el.text = "{0[0]} {0[1]}".format(self.lower_corner) uc_el = etree.SubElement( bbox_el, nspath_eval('ows:UpperCorner', namespaces)) uc_el.text = "{0[0]} {0[1]}".format(self.upper_corner) return data_el class ComplexDataInput(IComplexDataInput, ComplexData): def __init__(self, value, mimeType=None, encoding=None, schema=None): super(ComplexDataInput, self).__init__( mimeType=mimeType, encoding=encoding, schema=schema) self.value = value def getXml(self): if is_reference(self.value): return self.complexDataAsReference() else: return self.complexDataRaw() def complexDataAsReference(self): """ """ refElement = etree.Element(nspath_eval('wps:Reference', namespaces), attrib={nspath_eval("xlink:href", namespaces): self.value}) return refElement def complexDataRaw(self): ''' ''' dataElement = etree.Element(nspath_eval('wps:Data', namespaces)) attrib = dict() if self.encoding: attrib['encoding'] = self.encoding if self.schema: attrib['schema'] = self.schema if self.mimeType: attrib['mimeType'] = self.mimeType complexDataElement = etree.SubElement( dataElement, nspath_eval('wps:ComplexData', namespaces), attrib=attrib) complexDataElement.text = self.value return dataElement class FeatureCollection(IComplexDataInput): ''' Base class to represent a Feature Collection used as input to a WPS request. The method getXml() is invoked by the WPS execute() method to build the WPS request. All subclasses must implement the getXml() method to provide their specific XML. Implements IComplexDataInput. ''' def __init__(self): pass def getXml(self): raise NotImplementedError class WFSFeatureCollection(FeatureCollection): ''' FeatureCollection specified by a WFS query. All subclasses must implement the getQuery() method to provide the specific query portion of the XML. ''' def __init__(self, wfsUrl, wfsQuery, wfsMethod=None): ''' wfsUrl: the WFS service URL example: wfsUrl = "http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" wfsQuery : a WFS query instance ''' self.url = wfsUrl self.query = wfsQuery self.method = wfsMethod # # # # ....... # # # def getXml(self): root = etree.Element(nspath_eval('wps:Reference', namespaces), attrib={nspath_eval("xlink:href", namespaces): self.url}) if self.method: root.attrib['method'] = self.method bodyElement = etree.SubElement( root, nspath_eval('wps:Body', namespaces)) getFeatureElement = etree.SubElement( bodyElement, nspath_eval('wfs:GetFeature', namespaces), attrib={"service": "WFS", "version": "1.1.0", "outputFormat": "text/xml; subtype=gml/3.1.1", nspath_eval("xsi:schemaLocation", namespaces): "%s %s" % (namespaces['wfs'], WFS_SCHEMA_LOCATION)}) # # the_geom # STATE # # # # getFeatureElement.append(self.query.getXml()) return root class WFSQuery(IComplexDataInput): ''' Class representing a WFS query, for insertion into a WFSFeatureCollection instance. Implements IComplexDataInput. ''' def __init__(self, typeName, propertyNames=[], filters=[]): self.typeName = typeName self.propertyNames = propertyNames self.filters = filters def getXml(self): # # the_geom # STATE # # # # queryElement = etree.Element( nspath_eval('wfs:Query', namespaces), attrib={"typeName": self.typeName}) for propertyName in self.propertyNames: propertyNameElement = etree.SubElement( queryElement, nspath_eval('wfs:PropertyName', namespaces)) propertyNameElement.text = propertyName if len(self.filters) > 0: filterElement = etree.SubElement( queryElement, nspath_eval('ogc:Filter', namespaces)) for filter in self.filters: gmlObjectIdElement = etree.SubElement( filterElement, nspath_eval('ogc:GmlObjectId', namespaces), attrib={nspath_eval('gml:id', namespaces): filter}) return queryElement class GMLMultiPolygonFeatureCollection(FeatureCollection): ''' Class that represents a FeatureCollection defined as a GML multi-polygon. ''' def __init__(self, polygons): ''' Initializer accepts an array of polygons, where each polygon is an array of (lat,lon) tuples. Example: polygons = [ [(-102.8184, 39.5273), (-102.8184, 37.418), (-101.2363, 37.418), (-101.2363, 39.5273), (-102.8184, 39.5273)], [(-92.8184, 39.5273), (-92.8184, 37.418), (-91.2363, 37.418), (-91.2363, 39.5273), (-92.8184, 39.5273)] ] ''' self.polygons = polygons def getXml(self): ''' -102.8184 39.5273 -102.8184 37.418 -101.2363 37.418 -101.2363 39.5273 -102.8184 39.5273 0 ''' dataElement = etree.Element(nspath_eval('wps:Data', namespaces)) complexDataElement = etree.SubElement( dataElement, nspath_eval('wps:ComplexData', namespaces), attrib={"mimeType": "text/xml", "encoding": "UTF-8", "schema": GML_SCHEMA_LOCATION}) featureMembersElement = etree.SubElement( complexDataElement, nspath_eval('gml:featureMembers', namespaces), attrib={nspath_eval("xsi:schemaLocation", namespaces): "%s %s" % (DRAW_NAMESPACE, DRAW_SCHEMA_LOCATION)}) boxElement = etree.SubElement(featureMembersElement, nspath_eval( 'gml:box', namespaces), attrib={nspath_eval("gml:id", namespaces): "box.1"}) geomElement = etree.SubElement( boxElement, nspath_eval('gml:the_geom', namespaces)) multiPolygonElement = etree.SubElement( geomElement, nspath_eval('gml:MultiPolygon', namespaces), attrib={"srsDimension": "2", "srsName": "http://www.opengis.net/gml/srs/epsg.xml#4326"}) for polygon in self.polygons: polygonMemberElement = etree.SubElement( multiPolygonElement, nspath_eval('gml:polygonMember', namespaces)) polygonElement = etree.SubElement( polygonMemberElement, nspath_eval('gml:Polygon', namespaces)) exteriorElement = etree.SubElement( polygonElement, nspath_eval('gml:exterior', namespaces)) linearRingElement = etree.SubElement( exteriorElement, nspath_eval('gml:LinearRing', namespaces)) posListElement = etree.SubElement( linearRingElement, nspath_eval('gml:posList', namespaces)) posListElement.text = ' '.join( ["%s %s" % (x, y) for x, y in polygon[:]]) idElement = etree.SubElement( boxElement, nspath_eval('gml:ID', namespaces)) idElement.text = "0" return dataElement def monitorExecution(execution, sleepSecs=3, download=False, filepath=None): ''' Convenience method to monitor the status of a WPS execution till it completes (succesfully or not), and write the output to file after a succesfull job completion. execution: WPSExecution instance sleepSecs: number of seconds to sleep in between check status invocations download: True to download the output when the process terminates, False otherwise filepath: optional path to output file (if downloaded=True), otherwise filepath will be inferred from response document ''' while execution.isComplete() == False: execution.checkStatus(sleepSecs=sleepSecs) log.info('Execution status: %s' % execution.status) if execution.isSucceded(): if download: execution.getOutput(filepath=filepath) else: for output in execution.processOutputs: if output.reference is not None: log.info('Output URL=%s' % output.reference) else: for ex in execution.errors: log.error('Error: code=%s, locator=%s, text=%s' % (ex.code, ex.locator, ex.text)) def printValue(value): ''' Utility method to format a value for printing. ''' # ComplexData type if isinstance(value, ComplexData): return "mimeType=%s, encoding=%s, schema=%s" % (value.mimeType, value.encoding, value.schema) # other type else: return value def printInputOutput(value, indent=''): ''' Utility method to inspect an input/output element. ''' # InputOutput fields print('%s identifier=%s, title=%s, abstract=%s, data type=%s' % (indent, value.identifier, value.title, value.abstract, value.dataType)) for val in value.allowedValues: print('%s Allowed Value: %s' % (indent, printValue(val))) if value.anyValue: print(' Any value allowed') for val in value.supportedValues: print('%s Supported Value: %s' % (indent, printValue(val))) print('%s Default Value: %s ' % (indent, printValue(value.defaultValue))) # Input fields if isinstance(value, Input): print('%s minOccurs=%d, maxOccurs=%d' % (indent, value.minOccurs, value.maxOccurs)) # Output fields if isinstance(value, Output): print('%s reference=%s, mimeType=%s' % (indent, value.reference, value.mimeType)) for datum in value.data: print('%s Data Value: %s' % (indent, printValue(datum))) OWSLib-0.16.0/requirements-dev.txt000066400000000000000000000003721321706412000167330ustar00rootroot00000000000000-r requirements.txt pep8 pytest pytest-cov Pillow tox # install libraries to stop SSL related InsecurePlatformWarning pyopenssl ; python_version < '2.7.9' ndg-httpsclient ; python_version < '2.7.9' pyasn1 ; python_version < '2.7.9' OWSLib-0.16.0/requirements.txt000066400000000000000000000000571321706412000161570ustar00rootroot00000000000000python-dateutil>=1.5 pytz requests>=1.0 pyproj OWSLib-0.16.0/setup.py000066400000000000000000000031431321706412000144040ustar00rootroot00000000000000from __future__ import absolute_import from setuptools import setup, find_packages import owslib from setuptools.command.test import test as TestCommand import sys class PyTest(TestCommand): def finalize_options(self): TestCommand.finalize_options(self) self.test_args = [] self.test_suite = True def run_tests(self): import pytest errno = pytest.main(self.test_args) sys.exit(errno) readme = open('README.txt').read() reqs = [line.strip() for line in open('requirements.txt')] setup(name = 'OWSLib', version = owslib.__version__, description = 'OGC Web Service utility library', long_description = readme, license = 'BSD', keywords = 'gis ogc iso 19115 fgdc dif ows wfs wms sos csw wps wcs capabilities metadata wmts', author = 'Sean Gillies', author_email = 'sean.gillies@gmail.com', maintainer = 'Tom Kralidis', maintainer_email = 'tomkralidis@gmail.com', url = 'http://geopython.github.io/OWSLib', install_requires = reqs, cmdclass = {'test': PyTest}, packages = find_packages(exclude=["docs", "etc", "examples", "tests"]), classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: GIS', ], ) OWSLib-0.16.0/tests/000077500000000000000000000000001321706412000140335ustar00rootroot00000000000000OWSLib-0.16.0/tests/__init__.py000066400000000000000000000001041321706412000161370ustar00rootroot00000000000000 from __future__ import (absolute_import, division, print_function) OWSLib-0.16.0/tests/doctests/000077500000000000000000000000001321706412000156635ustar00rootroot00000000000000OWSLib-0.16.0/tests/doctests/crs.txt000066400000000000000000000021371321706412000172160ustar00rootroot00000000000000 >>> from __future__ import (absolute_import, division, print_function) >>> from owslib import crs >>> c=crs.Crs('EPSG:4326') >>> c.code 4326 >>> c.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> c.getcodeuri1() 'http://www.opengis.net/def/crs/EPSG/0/4326' >>> c.getcodeuri2() 'http://www.opengis.net/gml/srs/epsg.xml#4326' >>> c=crs.Crs('urn:ogc:def:crs:EPSG::4326') >>> c.authority 'EPSG' >>> c.axisorder 'yx' >>> c=crs.Crs('http://www.opengis.net/gml/epsg.xml#4326') >>> c.code 4326 >>> c.axisorder 'yx' >>> c=crs.Crs('urn:x-ogc:def:crs:EPSG:6.11:2192') >>> c.axisorder 'xy' >>> c.code 2192 >>> c.version '6.11' >>> c=crs.Crs('http://www.opengis.net/def/crs/EPSG/0/4326') >>> c.authority 'EPSG' >>> c.code 4326 >>> c.axisorder 'yx' >>> c=crs.Crs('PROJ4:+proj=lcc +lat_1=46.8 +lat_0=46.8 +lon_0=0 +k_0=0.99987742 +x_0=600000 +y_0=2200000') >>> c.authority 'PROJ4' >>> c.code '+proj=lcc +lat_1=46.8 +lat_0=46.8 +lon_0=0 +k_0=0.99987742 +x_0=600000 +y_0=2200000'OWSLib-0.16.0/tests/doctests/csw_geonetwork.txt000066400000000000000000000005441321706412000214670ustar00rootroot00000000000000>>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb >>> c=CatalogueServiceWeb('http://metadata.bgs.ac.uk/geonetwork/srv/en/csw') >>> c.getrecords2(typenames='csw:Record') >>> c.results.get('returned') > 0 True >>> c.results.get('nextrecord') > 0 True >>> c.results.get('matches') > 0 True OWSLib-0.16.0/tests/doctests/csw_geoserver.txt000066400000000000000000000005311321706412000213000ustar00rootroot00000000000000>>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb >>> c=CatalogueServiceWeb('http://gis.armf.bg:8080/geoserver/csw') >>> c.getrecords2(typenames='csw:Record') >>> c.results.get('returned') > 0 True >>> c.results.get('nextrecord') > 0 True >>> c.results.get('matches') > 0 True OWSLib-0.16.0/tests/doctests/csw_linz.txt000066400000000000000000000125771321706412000202700ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib import fes >>> from owslib.dif import namespaces >>> from owslib.csw import CatalogueServiceWeb as cs >>> from owslib.etree import etree >>> c=cs('http://data.linz.govt.nz/services/csw/',timeout=30) >>> c.identification.title 'LINZ Data Service' >>> c.identification.version '2.0.2' >>> c.provider.name 'Land Information New Zealand' >>> prop = fes.PropertyIsLike('csw:AnyText', 'parcel boundaries') >>> c.getrecords2([prop], maxrecords=20) >>> c.results['matches'] 23 >>> c.results['returned'] 20 >>> c.records['4d8c2d95-4ac2-1aa3-5b81-3cd4eff1ad0f'].title 'NZ Strata Parcels' >>> c.records['4d8c2d95-4ac2-1aa3-5b81-3cd4eff1ad0f'].abstract 'This layer provides the **current** strata parcel polygons and their associated descriptive data as a single layer to facilitate their use independently of other primary parcels or non primary parcels.\n\nStrata parcels are portions of land where the vertical extent is limited. \n\nThe combination of this layer with the primary parcels layer provides all current parcels for New Zealand (i.e. excludes Historic and Pending parcels)\n\nIf you require approved or historic parcels see the [All Parcels Layer](http://data.linz.govt.nz/layer/1571-nz-all-parcels)\n\nThis layer has a nominal accuracy of 0.1-1m in urban areas and 1-100m in rural areas. For more detailed information about parcel accuracies please refer to the [Survey Boundary Marks](http://data.linz.govt.nz/layer/774-nz-survey-boundary-marks) layer which contains accuracies for each parcel node.\n\nThe originating data for parcel/title associations includes some non-official sources where the official data does not support a link. For more information [see](http://www.linz.govt.nz/about-linz/linz-data-service/dataset-information/cadastral-titles-data)' >>> c.getrecordbyid(['4d8c2d95-4ac2-1aa3-5b81-3cd4eff1ad0f']) >>> prop = fes.PropertyIsLike("csw:AnyText", "hydro") >>> c.getrecords2([prop], outputschema='http://www.isotc211.org/2005/gmd-bad') #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in ExceptionReport: 'Invalid outputSchema parameter value: http://www.isotc211.org/2005/gmd-bad' >>> c.response #doctest: +SKIP >>> prop = fes.PropertyIsLike("csw:AnyText", "hydro") >>> c.getrecords2([prop], outputschema='http://www.isotc211.org/2005/gmd', maxrecords=2) >>> c.results['returned'] 2 >>> c.records['e4625e24-899e-4aed-c9d0-e4e341bf9d4b'].identification.title 'Unsurveyed area polygon (Hydro, 1:1.5mil and smaller)' >>> c.records['e4625e24-899e-4aed-c9d0-e4e341bf9d4b'].identifier 'e4625e24-899e-4aed-c9d0-e4e341bf9d4b' >>> c.records['e4625e24-899e-4aed-c9d0-e4e341bf9d4b'].stdname 'ISO19115' >>> c.records['e4625e24-899e-4aed-c9d0-e4e341bf9d4b'].stdver '2003/Cor.1:2006' >>> c.harvest('somefile','someuri') #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in ExceptionReport: 'Harvest operations are not supported' >>> c.response #doctest: +SKIP '\n\nHarvest operations are not supported' >>> prop = fes.PropertyIsLike("csw:AnyText", "glacial") >>> c.getrecords2([prop], outputschema='http://www.opengis.net/cat/csw/csdgm') >>> c.results['matches'] > 0 True >>> c.results['nextrecord'] 0 >>> c.getrecords2([prop], outputschema='http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/', maxrecords=2) >>> c.results['returned'] 2 >>> c.results['nextrecord'] 0 >>> sort_by=fes.SortBy([fes.SortProperty("dc:title", "ASC")]) >>> c.getrecords2([prop], outputschema='http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/', maxrecords=2, sortby=sort_by) >>> c.records['3cb46f76-e8d7-65ac-8b41-055675021f7b'].title 'NZ Ross Dependency Glacial Lake Polygons (ANT, 1:50k)' OWSLib-0.16.0/tests/doctests/csw_ngdc.txt000066400000000000000000000030311321706412000202100ustar00rootroot00000000000000Import, setup >>> from __future__ import (absolute_import, division, print_function) >>> from owslib import fes, csw >>> from owslib.dif import namespaces >>> c = csw.CatalogueServiceWeb('http://www.ngdc.noaa.gov/geoportal/csw', timeout=120) >>> c.identification.title 'ArcGIS Server Geoportal Extension 10 - OGC CSW 2.0.2 ISO AP' >>> c.identification.version '2.0.2' >>> sorted(c.identification.keywords) ['Geophysical Metadata', 'NGDC', 'Ocean Metadata', 'Space Weather Metadata'] >>> c.provider.name 'NOAA NGDC' Get some records >>> sos_urn = 'urn:x-esri:specification:ServiceType:sos:url' >>> aoos_uuid = '1706F520-2647-4A33-B7BF-592FAFDE4B45' >>> uuid_filter = fes.PropertyIsEqualTo(propertyname='sys.siteuuid', literal="{%s}" % aoos_uuid) >>> c.getrecords2([uuid_filter], esn='full', maxrecords=999999) >>> len(c.records) > 40 True >>> 'AOOS SOS' in c.records True >>> aoos_sos = c.records['AOOS SOS'] >>> aoos_sos.abstract 'Alaska Ocean Observing System SOS' >>> sorted([x['url'] for x in aoos_sos.references if x['scheme'] == sos_urn]) ['http://sos.aoos.org/sos/sos/kvp?service=SOS&request=GetCapabilities&acceptVersions=1.0.0', 'http://sos.aoos.org/sos/sos/kvp?service=SOS&request=GetCapabilities&acceptVersions=1.0.0', 'http://sos.aoos.org/sos/sos/kvp?service=SOS&request=GetCapabilities&acceptVersions=1.0.0'] >>> c.getService_urls(sos_urn) ['http://sos.aoos.org/sos/sos/kvp?service=SOS&request=GetCapabilities&acceptVersions=1.0.0'] OWSLib-0.16.0/tests/doctests/csw_nlr.txt000066400000000000000000000040071321706412000200740ustar00rootroot00000000000000 >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb >>> from owslib import fes >>> c = CatalogueServiceWeb('http://geomatics.nlr.nl/excat/csw') >>> c.identification.title 'NLR CSW' >>> c.identification.abstract 'NLR CSW: XQuery based catalog service conform to the HTTP protocol binding \n of the OpenGIS Catalogue Service specification version 2.0.2/2.0.1' >>> c.identification.keywords ['CSW', 'geospatial', 'catalogue'] >>> c.identification.fees 'NONE' >>> c.identification.accessconstraints 'NONE' >>> c.identification.type 'CSW' >>> c.identification.version '2.0.2' >>> c.provider.name 'National Aerospace Laboratory NLR' >>> c.provider.site #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in AttributeError: 'ServiceProvider' object has no attribute 'site' >>> c.provider.url 'http://geomatics.nlr.nl/excat' >>> c.provider.uri #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in AttributeError: 'ServiceProvider' object has no attribute 'uri' >>> c.provider.contact.name 'Rob van Swol' >>> c.provider.contact.position 'Senior Scientist NLR-ASSP' >>> [op.name for op in c.operations] ['GetCapabilities', 'DescribeRecord', 'GetRecords', 'GetRecordById'] >>> grop = c.get_operation_by_name('GetRecords') >>> grop.name 'GetRecords' >>> c.get_operation_by_name('GetRecords-bad') #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in KeyError: 'No operation named GetRecords-bad' >>> c.describerecord() >>> c.getdomain('GetRecords.outputSchema') #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in ExceptionReport: 'Operation not supported: GetDomain' >>> c.getrecordbyid(['DGFKRYMCWUZSCDRBWRXMIETZE']) #>>> c.records['DGFKRYMCWUZSCDRBWRXMIETZE'].title #'CERISE: Computationally Efficient Radar Image Simulation Environment' OWSLib-0.16.0/tests/doctests/csw_pycsw.txt000066400000000000000000000011441321706412000204450ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb as cs Properties >>> c = cs('http://demo.pycsw.org/cite/csw') >>> c.updateSequence is not None True >>> c.version '2.0.2' >>> c.identification.title 'pycsw OGC CITE demo and Reference Implementation' >>> c.constraints['MaxRecordDefault'].values[0] '10' GetRecords >>> c.getrecords2() >>> c.results.get('returned') > 0 True >>> c.results.get('nextrecord') > 0 True >>> c.results.get('matches') > 0 True OWSLib-0.16.0/tests/doctests/csw_pycsw_skip_caps.txt000066400000000000000000000011011321706412000224720ustar00rootroot00000000000000 Ensure CSW interaction works when skip_caps=True by defaulting to default URL (i.e. Capabilities OperationsMetadata is not scanned for the appropriate URL since skip_caps=True. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb as cs Properties >>> c = cs('http://demo.pycsw.org/cite/csw', skip_caps=True) GetRecords >>> c.getrecords2() >>> c.results.get('returned') > 0 True >>> c.results.get('nextrecord') > 0 True >>> c.results.get('matches') > 0 True OWSLib-0.16.0/tests/doctests/csw_skgeodsy.txt000066400000000000000000000011361321706412000211310ustar00rootroot00000000000000>>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb >>> from owslib import fes >>> c = CatalogueServiceWeb('https://zbgisws.skgeodesy.sk/zbgiscsw/service.svc/get') >>> sorted([op.name for op in c.operations]) ['DescribeRecord', 'GetCapabilities', 'GetRecordById', 'GetRecords', ...] >>> grop = c.get_operation_by_name('GetRecords') >>> grop.name 'GetRecords' >>> c.getrecords2(typenames='csw:Record gmd:MD_Metadata') >>> c.results.get('returned') > 0 True >>> c.results.get('nextrecord') > 0 True >>> c.results.get('matches') > 0 True OWSLib-0.16.0/tests/doctests/csw_uuid_constrain.txt000066400000000000000000000132701321706412000223310ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.csw import CatalogueServiceWeb as cs >>> from xml.dom import minidom as md >>> from owslib import fes, csw >>> from tests.utils import compare_xml Initialize CSW client # connect to CSW, explore it's properties #endpoint = 'http://data.nodc.noaa.gov/geoportal/csw' # NODC Geoportal: collection level #endpoint = 'http://geodiscover.cgdi.ca/wes/serviceManagerCSW/csw' # NRCAN #endpoint = 'http://geoport.whoi.edu/gi-cat/services/cswiso' # USGS Woods Hole GI_CAT #endpoint = 'http://cida.usgs.gov/gdp/geonetwork/srv/en/csw' # USGS CIDA Geonetwork #endpoint = 'http://www.nodc.noaa.gov/geoportal/csw' # NODC Geoportal: granule level #endpoint = 'http://cmgds.marine.usgs.gov/geonetwork/srv/en/csw' # USGS Coastal & Marine Program Geonetwork >>> endpoint = 'http://www.ngdc.noaa.gov/geoportal/csw' # NGDC Geoportal >>> c = cs(endpoint, timeout=30) # define some var >>> AOOS = '1706F520-2647-4A33-B7BF-592FAFDE4B45' >>> bbox = [-141,42,-52,84] # Test new function getrecords2() >>> uuid = fes.PropertyIsEqualTo(propertyname='sys.siteuuid', literal='{%s}' % AOOS) >>> timeRange = fes.PropertyIsBetween(propertyname='apiso:modified', lower='2009-02-01', upper='2015-02-01') >>> word = fes.PropertyIsLike(propertyname='csw:AnyText', literal='*salinity*', escapeChar='\\', singleChar='?', wildCard='*') >>> box = fes.BBox(bbox) ########################################################## # Test 1 # Passing a list of list [[a,c,d],[b,c,d]] # Translates to (a && c && d) || (b && c && d) ########################################################## >>> filter_list = [[uuid, word, timeRange], [bbox, word, timeRange]] >>> c.getrecords2(filter_list) >>> c.results == {'matches': 75, 'nextrecord': 11, 'returned': 10} True ########################################################## # Test 2 # Passing a list of list [a, b] # it means a || b ########################################################## # The response of this query is chaning to often to be a reliable test. # >>> filter_list = [uuid, box] # >>> c.getrecords2(filter_list) # >>> c.results # {'matches': 4895, 'nextrecord': 11, 'returned': 10} ########################################################## # Test 3 # Passing a list of list [[a,b]] # it means a && b ########################################################## >>> filter_list = [[uuid, box]] >>> c.getrecords2(filter_list) >>> c.results['matches'] > 0 True >>> c.results['returned'] < 11 True ########################################################## # Test 4 # Null Check: sys.siteuuid is null # Passing a list [c] ########################################################## >>> filter = fes.PropertyIsNull(propertyname='sys.siteuuid') >>> c.getrecords2([filter]) >>> c.results['matches'] < 1 True >>> c.results['nextrecord'] == 0 True ########################################################## # Test 5 # construct a request by send the xml string ########################################################## >>> sos_search=b''' ... ... ... full ... ... ... ... ... apiso:ServiceType ... *opendap* ... ... ... ... ... ... ... ''' >>> c.getrecords2(xml=sos_search) # in about XML it has constraint: maxrecords=10 >>> c.results['matches'] > 0 True >>> c.results['returned'] < 11 True >>> c.results['nextrecord'] == 11 True ########################################################## # Test 6 # construct a request by setting SAME constraint with Test 1 # Passing a list of list [[a,b]] # it means a && b ########################################################## >>> dap_filter = fes.PropertyIsLike(propertyname='apiso:ServiceType', literal='*opendap*', escapeChar='\\', singleChar='?', wildCard='*') >>> filter_list = [[uuid,dap_filter]] >>> c.getrecords2(filter_list) >>> c.results['matches'] > 0 True >>> c.results['returned'] < 11 True >>> c.results['nextrecord'] == 11 True OWSLib-0.16.0/tests/doctests/fes_ogc_filters.txt000066400000000000000000000217561321706412000215740ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib import fes >>> from owslib.etree import etree >>> from tests.utils import compare_xml SortProperty >>> sort = fes.SortProperty("property", "ASC") >>> should_return = 'propertyASC' >>> compare_xml(should_return, sort.toXML()) True SortBy >>> sort2 = fes.SortProperty("another_property", "DESC") >>> sortby = fes.SortBy([sort,sort2]) >>> should_return = 'propertyASCanother_propertyDESC' >>> compare_xml(should_return, sortby.toXML()) True BBox >>> filter = fes.BBox([-170, -80, 170, 80]) >>> should_return = 'ows:BoundingBox-170 -80170 80' >>> compare_xml(should_return, filter.toXML()) True BBox with CRS >>> filter = fes.BBox([-170, -80, 170, 80], 'urn:ogc:def:crs:OGC:1.3:CRS84') >>> should_return = 'ows:BoundingBox-170 -80170 80' >>> compare_xml(should_return, filter.toXML()) True PropertyIsEqualTo >>> filter = fes.PropertyIsEqualTo("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsNotEqualTo >>> filter = fes.PropertyIsNotEqualTo("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsLessThan >>> filter = fes.PropertyIsLessThan("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsGreaterThan >>> filter = fes.PropertyIsGreaterThan("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsLessThanOrEqualTo >>> filter = fes.PropertyIsLessThanOrEqualTo("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsGreaterThanOrEqualTo >>> filter = fes.PropertyIsGreaterThanOrEqualTo("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True PropertyIsLike # Defaults >>> filter = fes.PropertyIsLike("property", "value") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True # Setting characters >>> filter = fes.PropertyIsLike("property", "value", wildCard="*", singleChar="#", escapeChar="!") >>> should_return = 'propertyvalue' >>> compare_xml(should_return, filter.toXML()) True Or >>> filter1 = fes.PropertyIsLike("property", "like") >>> filter2 = fes.PropertyIsEqualTo("property", "equal") >>> filter3 = fes.PropertyIsLessThan("property", "less") >>> filter = fes.Or([filter1, filter2, filter3]) >>> should_return = 'propertylikepropertyequalpropertyless' >>> compare_xml(should_return, filter.toXML()) True >>> fes.Or([filter1]) Traceback (most recent call last): ... ValueError: Binary operations (And / Or) require a minimum of two operations to operate against And >>> filter = fes.And([filter1, filter2, filter3]) >>> should_return = 'propertylikepropertyequalpropertyless' >>> compare_xml(should_return, filter.toXML()) True >>> fes.And([filter1]) Traceback (most recent call last): ... ValueError: Binary operations (And / Or) require a minimum of two operations to operate against Not >>> filter = fes.Not([filter1]) >>> should_return = 'propertylike' >>> compare_xml(should_return, filter.toXML()) True setConstraintList >>> fr = fes.FilterRequest() >>> filter = fr.setConstraintList([filter1, filter2, filter3]) >>> should_return = 'propertylikepropertyequalpropertyless' >>> compare_xml(should_return, filter) True setConstraint >>> fr = fes.FilterRequest() >>> filter = fr.setConstraint(filter1) >>> should_return = 'propertylike' >>> compare_xml(should_return, filter) True setConstraint filter as string >>> fr = fes.FilterRequest() >>> filter = fr.setConstraint(filter1, tostring=True) >>> should_return = 'propertylike' >>> compare_xml(should_return, filter) True setConstraintList filter as string >>> fr = fes.FilterRequest() >>> filter = fr.setConstraintList([filter1, filter2, filter3], tostring=True) >>> should_return = 'propertylikepropertyequalpropertyless' >>> compare_xml(should_return, filter) True OWSLib-0.16.0/tests/doctests/gm03_parse.txt000077500000000000000000000044501321706412000203720ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.etree import etree >>> from owslib.gm03 import GM03 Print testing some metadata elements >>> e = etree.parse(resource_file('gm03_example1.xml')) >>> gm03 = GM03(e) >>> gm03.header.version '2.3' >>> gm03.header.sender 'geocat.ch' >>> hasattr(gm03.data, 'core') False >>> hasattr(gm03.data, 'comprehensive') True >>> len(gm03.data.comprehensive.elements) 13 >>> sorted(list(gm03.data.comprehensive.elements.keys())) ['address', 'citation', 'contact', 'data_identification', 'date', 'extent', 'extent_geographic_element', 'geographic_bounding_box', 'identification_point_of_contact', 'keywords', 'metadata', 'metadata_point_of_contact', 'responsible_party'] >>> isinstance(gm03.data.comprehensive.date, list) True >>> len(gm03.data.comprehensive.date) 1 >>> gm03.data.comprehensive.metadata.file_identifier '41ac321f632e55cebf0508a2cea5d9023fd12d9ad46edd679f2c275127c88623fb9c9d29726bef7c' >>> gm03.data.comprehensive.metadata.date_stamp '1999-12-31T12:00:00' >>> gm03.data.comprehensive.metadata.language 'de' Test TID searching >>> gm03.data.comprehensive.metadata.tid 'xN6509077498146737843' >>> search_tid = gm03.data.comprehensive.metadata.tid >>> gm03.data.comprehensive.get_element_by_tid('404') is None True >>> gm03.data.comprehensive.get_element_by_tid(search_tid) is None False >>> search_tid2 = gm03.data.comprehensive.extent.data_identification.ref >>> search_tid2 'xN8036063300808707346' >>> gm03.data.comprehensive.get_element_by_tid(search_tid2) is None False >>> e = etree.parse(resource_file('gm03_example2.xml')) >>> gm03 = GM03(e) >>> gm03.data.comprehensive.geographic_bounding_box.extent_type_code 'false' >>> gm03.data.comprehensive.geographic_bounding_box.north_bound_latitude '47.1865387201702' >>> gm03.data.comprehensive.geographic_bounding_box.south_bound_latitude '47.1234508676764' >>> gm03.data.comprehensive.geographic_bounding_box.east_bound_longitude '9.10597474389878' >>> gm03.data.comprehensive.geographic_bounding_box.west_bound_longitude '9.23798212070671' OWSLib-0.16.0/tests/doctests/iso_che.txt000066400000000000000000000015161321706412000200400ustar00rootroot00000000000000 >>> from owslib.etree import etree >>> from owslib.iso_che import CHE_MD_Metadata >>> from tests.utils import resource_file >>> m = CHE_MD_Metadata(etree.parse(resource_file('iso_che.xml'))) >>> m.language 'ger' >>> [loc.id for loc in m.locales] ['DE', 'FR', 'IT', 'EN'] >>> m.get_default_locale().id 'DE' >>> m.identification.title u'Gew\xe4sserschutzkarte' >>> m.identification.contact[0].organization u'Amt f\xfcr Umweltschutz' >>> m.identification.bbox.minx 8.396 >>> m.contact[0].organization 'Grundbuch- und Vermessungsamt' >>> m.contact[0].streetname 'Aabachstrasse' >>> m.contact[0].streetnumber '5' >>> m.contact[0].postbox '857' >>> [link.url for link in m.distribution.online] ['http://www.zugmap.ch/?link=gewaesserschutzkarte'] OWSLib-0.16.0/tests/doctests/iso_codelist.txt000077500000000000000000000024101321706412000211040ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.etree import etree >>> from owslib.iso import CodelistCatalogue Print testing the code lists >>> e=etree.parse(resource_file('gmxCodelists.xml')) >>> c=CodelistCatalogue(e) >>> sorted(c.getcodelistdictionaries()) ['CI_DateTypeCode', 'CI_OnLineFunctionCode', 'CI_PresentationFormCode', 'CI_RoleCode', 'DQ_EvaluationMethodTypeCode', 'DS_AssociationTypeCode', 'DS_InitiativeTypeCode', 'MD_CellGeometryCode', 'MD_CharacterSetCode', 'MD_ClassificationCode', 'MD_CoverageContentTypeCode', 'MD_DatatypeCode', 'MD_DimensionNameTypeCode', 'MD_GeometricObjectTypeCode', 'MD_ImagingConditionCode', 'MD_KeywordTypeCode', 'MD_MaintenanceFrequencyCode', 'MD_MediumFormatCode', 'MD_MediumNameCode', 'MD_ObligationCode', 'MD_PixelOrientationCode', 'MD_ProgressCode', 'MD_RestrictionCode', 'MD_ScopeCode', 'MD_SpatialRepresentationTypeCode', 'MD_TopicCategoryCode', 'MD_TopologyLevelCode', 'MX_ScopeCode'] >>> sorted(c.getcodedefinitionidentifiers('CI_RoleCode')) ['author', 'custodian', 'distributor', 'originator', 'owner', 'pointOfContact', 'principalInvestigator', 'processor', 'publisher', 'resourceProvider', 'user'] OWSLib-0.16.0/tests/doctests/iso_creation.txt000066400000000000000000000033631321706412000211070ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.etree import etree >>> from owslib.iso import MD_Metadata, MD_DataIdentification, CI_ResponsibleParty, MD_ReferenceSystem Print testing of various ISO fields >>> md = MD_Metadata() >>> md.identification = MD_DataIdentification() >>> val = CI_ResponsibleParty() >>> val.organization = 'NTUA' >>> val.email = 'gcpp.kalxas@gmail.com' >>> val.role = 'pointOfContact' >>> md.contact.append(val) >>> md.datestamp = '2014-05-20' >>> md.identification.title = 'Title' >>> md.identification.abstract = 'Abstract' >>> md.identification.identtype = 'dataset' >>> md.identifier = '286c0725-146e-4533-b1bf-d6e367f6c342' >>> md.identification.topiccategory.append('biota') >>> md.identification.topiccategory.append('environment') >>> md.referencesystem = MD_ReferenceSystem() >>> md.referencesystem.code = '4326' >>> md.referencesystem.codeSpace = 'urn:ogc:def:crs:EPSG' >>> md.referencesystem.version = '6.11.2' >>> kw = {} >>> kw['keywords'] = [] >>> kw['keywords'].append('Agricultural and aquaculture facilities') >>> kw['keywords'].append('Bio-geographical regions') >>> kw['type'] = None >>> kw['thesaurus'] = {} >>> kw['thesaurus']['date'] = '2008-06-01' >>> kw['thesaurus']['datetype'] = 'publication' >>> kw['thesaurus']['title'] = 'GEMET - INSPIRE themes, version 1.0' >>> md.identification.keywords.append(kw) >>> md.identifier '286c0725-146e-4533-b1bf-d6e367f6c342' >>> kw == {'keywords': ['Agricultural and aquaculture facilities', 'Bio-geographical regions'], 'type': None, 'thesaurus': {'date': '2008-06-01', 'datetype': 'publication', 'title': 'GEMET - INSPIRE themes, version 1.0'}} True >>> md.languagecode is None True OWSLib-0.16.0/tests/doctests/iso_keywords.txt000077500000000000000000000014011321706412000211440ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.etree import etree >>> from owslib.iso import MD_Metadata Print testing some metadata elements >>> e = etree.parse(resource_file('17bd184a-7e7d-4f81-95a5-041449a7212b_iso.xml')) >>> md = MD_Metadata(e) >>> md.identificationinfo[0].title 'Air temperature' >>> len(md.identificationinfo[0].keywords2) == len(md.identificationinfo[0].keywords) True >>> len(md.identificationinfo[0].keywords2) > 0 True >>> len(md.identificationinfo[0].keywords2[0].keywords) > 0 True >>> md.identificationinfo[0].keywords2[0].thesaurus['title'] 'GEMET - INSPIRE themes, version 1.0' OWSLib-0.16.0/tests/doctests/iso_parse.txt000077500000000000000000000017531321706412000204210ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.etree import etree >>> from owslib.iso import MD_Metadata Print testing some metadata elements >>> e=etree.parse(resource_file('iso_xml_srv.xml')) >>> x=MD_Metadata(e) >>> x.identificationinfo[0].title 'Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States.' >>> x.identificationinfo[1].title 'Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States. February 2013 Snapshot' >>> x.identificationinfo[1].abstract[0:40] 'This dataset was created using the PRISM' >>> x.identificationinfo[1].contact.name 'Christopher Daley' >>> x.identificationinfo[1].contact.email 'daley@nacse.org' >>> x.identificationinfo[1].operations[0]['connectpoint'][0].url 'http://cida.usgs.gov/thredds/dodsC/prism' OWSLib-0.16.0/tests/doctests/namespaces.txt000066400000000000000000000030331321706412000205420ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.namespaces import Namespaces Correct Usage Tests >>> ns = Namespaces() >>> ns.get_namespace('csw') 'http://www.opengis.net/cat/csw/2.0.2' >>> x = ns.get_namespaces(['csw','gmd','fes']) >>> x == {'csw': 'http://www.opengis.net/cat/csw/2.0.2', 'fes': 'http://www.opengis.net/fes/2.0', 'gmd': 'http://www.isotc211.org/2005/gmd'} True >>> ns.get_namespaces() {...} >>> ns.get_versioned_namespace('ows') 'http://www.opengis.net/ows' >>> ns.get_versioned_namespace('ows','1.0.0') 'http://www.opengis.net/ows' >>> ns.get_versioned_namespace('ows','1.1.0') 'http://www.opengis.net/ows/1.1' >>> ns.get_versioned_namespace('ows','2.0.0') 'http://www.opengis.net/ows/2.0' >>> ns.get_namespaces('csw') {'csw': 'http://www.opengis.net/cat/csw/2.0.2'} >>> ns.get_namespace('csw') 'http://www.opengis.net/cat/csw/2.0.2' >>> ns.get_namespace('sa') 'http://www.opengis.net/sampling/1.0' # 'om300' does not exist as a namespace, so the below will return nothing >>> ns.get_namespace('om300') # CSW 3.1.1 doesn't exist, so the below will return nothing >>> ns.get_versioned_namespace('csw','3.1.1') Invalid Usage Tests >>> ns.get_namespace() Traceback (most recent call last): ... TypeError: get_namespace() ... >>> ns.get_versioned_namespace() Traceback (most recent call last): ... TypeError: get_versioned_namespace() ... OWSLib-0.16.0/tests/doctests/ows_interfaces.txt000066400000000000000000000145001321706412000214370ustar00rootroot00000000000000#This test checks that the OWSLib service interfaces are the same across all service type: #Author: Dominic Lowe, 17th September 2009 #Part of OWSLib package. >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.csw import CatalogueServiceWeb >>> from owslib.wms import WebMapService >>> from owslib.wcs import WebCoverageService >>> from owslib.wfs import WebFeatureService >>> from owslib.util import OrderedDict #TODO, we should run all these from local XML documents (as per the WMS and WFS services) >>> wmsxml = open(resource_file('wms_JPLCapabilities.xml'), 'rb').read() >>> wfsxml = open(resource_file('mapserver-wfs-cap.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=wmsxml) >>> wfs = WebFeatureService('url', version='1.0', xml=wfsxml) >>> wcs=WebCoverageService('http://thredds.ucar.edu/thredds/wcs/grib/NCEP/NAM/CONUS_80km/best', version='1.0.0') >>> csw= CatalogueServiceWeb('http://data.nodc.noaa.gov/geoportal/csw') #Check each service instance conforms to OWSLib interface >>> csw.alias, wms.alias, wcs.alias, wfs.alias='CSW', 'WMS', 'WCS', 'WFS' >>> services=[csw, wms, wcs, wfs] >>> for service in services: ... type(service) #URL attribute >>> for service in services: ... service.url 'http://data.nodc.noaa.gov/geoportal/csw' 'url' 'http://thredds.ucar.edu/thredds/wcs/grib/NCEP/NAM/CONUS_80km/best' 'url' #version attribute >>> for service in services: ... service.version '2.0.2' '1.1.1' '1.0.0' '1.0' #Identification object: >>> for service in services: ... hasattr(service, 'identification') True True True True #Check all ServiceIdentification attributes >>> for service in services: ... service.identification.type ... [[attribute, hasattr(service.identification, attribute)] for attribute in ['type', 'version', 'title', 'abstract', 'keywords', 'accessconstraints', 'fees']] 'CSW' [['type', True], ['version', True], ['title', True], ['abstract', True], ['keywords', True], ['accessconstraints', True], ['fees', True]] 'OGC:WMS' [['type', True], ['version', True], ['title', True], ['abstract', True], ['keywords', True], ['accessconstraints', True], ['fees', True]] 'OGC:WCS' [['type', True], ['version', True], ['title', True], ['abstract', True], ['keywords', True], ['accessconstraints', False], ['fees', True]] 'MapServer WFS' [['type', True], ['version', True], ['title', True], ['abstract', True], ['keywords', True], ['accessconstraints', True], ['fees', True]] #Check all ServiceProvider attributes >>> for service in services: ... service.identification.type ... [[attribute, hasattr(service.provider, attribute)] for attribute in ['name','url','contact']] 'CSW' [['name', True], ['url', True], ['contact', True]] 'OGC:WMS' [['name', True], ['url', True], ['contact', True]] 'OGC:WCS' [['name', True], ['url', True], ['contact', True]] 'MapServer WFS' [['name', True], ['url', True], ['contact', False]] #Check all operations implement IOperationMetadata >>> for service in services: ... service.identification.type ... for op in service.operations: ... [[attribute, hasattr(op, attribute)] for attribute in ['name','formatOptions','methods']] 'CSW' [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] 'OGC:WMS' [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] 'OGC:WCS' [['name', True], ['formatOptions', False], ['methods', True]] [['name', True], ['formatOptions', False], ['methods', True]] [['name', True], ['formatOptions', False], ['methods', True]] 'MapServer WFS' [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] [['name', True], ['formatOptions', True], ['methods', True]] #Check all contents implement IContentMetadata as a dictionary #CSW does not work in this way so use dummy >>> csw.contents={'dummy':'1'} >>> for service in services: ... service.identification.type ... type(service.contents) 'CSW' <... 'dict'> 'OGC:WMS' <...OrderedDict'> 'OGC:WCS' <... 'dict'> 'MapServer WFS' <... 'dict'> #Check any item (WCS coverage, WMS layer etc) from the contents of each service #Check it conforms to IContentMetadata interface #CSW does not conform to this #WCS boundingbox handling is also different (has multiple boundingboxes). TODO: needs harmonising. >>> for service in services: ... if type(service.contents) in [dict, OrderedDict]: ... service.identification.type ... content=service.contents[list(service.contents.keys())[0]] #get random item from contents dictionary -has to be a nicer way to do this! ... [[attribute, hasattr(content, attribute)] for attribute in ['id','title','boundingBox', 'boundingBoxWGS84', 'crsOptions', 'styles', 'timepositions']] 'CSW' [['id', False], ['title', True], ['boundingBox', False], ['boundingBoxWGS84', False], ['crsOptions', False], ['styles', False], ['timepositions', False]] 'OGC:WMS' [['id', True], ['title', True], ['boundingBox', True], ['boundingBoxWGS84', True], ['crsOptions', True], ['styles', True], ['timepositions', True]] 'OGC:WCS' [['id', True], ['title', True], ['boundingBox', True], ['boundingBoxWGS84', True], ['crsOptions', True], ['styles', True], ['timepositions', True]] 'MapServer WFS' [['id', True], ['title', True], ['boundingBox', True], ['boundingBoxWGS84', True], ['crsOptions', True], ['styles', True], ['timepositions', True]] OWSLib-0.16.0/tests/doctests/sml_52n_network.txt000066400000000000000000000034331321706412000214570ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.swe.sensor.sml import SensorML >>> from dateutil import parser >>> import pytz Initialize >>> xml = open(resource_file('sml_52N_network.xml'), 'rb').read() >>> root = SensorML(xml) >>> system = root.members[0] >>> system.description 'Contains all procedures in the SOS Server' Contacts >>> list(system.contacts.keys()) ['http://mmisw.org/ont/ioos/definition/publisher'] >>> publishers = system.get_contacts_by_role('http://mmisw.org/ont/ioos/definition/publisher') >>> publishers[0].role 'http://mmisw.org/ont/ioos/definition/publisher' >>> publishers[0].organization 'GLOS' >>> publishers[0].country 'USA' >>> publishers[0].url 'http://glos.us' Identification >>> sorted(list(system.identifiers.keys())) ['longName', 'networkID', 'shortName'] >>> sid = system.get_identifiers_by_name('networkID') >>> sid[0].name 'networkID' >>> sid[0].definition 'http://mmisw.org/ont/ioos/definition/networkID' >>> sid[0].value 'urn:ioos:network:glos:all' Classifiers >>> sorted(list(system.classifiers.keys())) ['parentNetwork', 'publisher'] >>> classi = system.get_classifiers_by_name('publisher') >>> classi[0].definition 'http://mmisw.org/ont/ioos/definition/publisher' >>> classi[0].value 'GLOS' Capabilities >>> sorted(list(system.capabilities.keys())) ['featuresOfInterest', 'observationTimeRange', 'observedBBOX', 'offerings'] Characteristics >>> list(system.characteristics.keys()) [] Components >>> comps = system.components >>> len(comps) 14 Connections >>> comps = system.connections OWSLib-0.16.0/tests/doctests/sml_ndbc_station.txt000066400000000000000000000063541321706412000217560ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.swe.sensor.sml import SensorML >>> from dateutil import parser >>> import pytz Initialize >>> xml = open(resource_file('sml_ndbc_station.xml'), 'rb').read() >>> root = SensorML(xml) >>> system = root.members[0] >>> system.description 'Station metadata for 41012 - 40NM ENE of St Augustine, FL' Contacts >>> sorted(system.contacts.keys()) ['urn:ogc:def:classifiers:OGC:contactType:operator', 'urn:ogc:def:classifiers:OGC:contactType:publisher'] >>> operators = system.get_contacts_by_role('urn:ogc:def:classifiers:OGC:contactType:operator') >>> operators[0].role 'urn:ogc:def:classifiers:OGC:contactType:operator' >>> operators[0].organization 'National Data Buoy Center' >>> operators[0].country 'US' >>> publishers = system.get_contacts_by_role('urn:ogc:def:classifiers:OGC:contactType:publisher') >>> publishers[0].role 'urn:ogc:def:classifiers:OGC:contactType:publisher' >>> publishers[0].organization 'National Data Buoy Center' >>> publishers[0].country 'USA' >>> publishers[0].phone '228-688-2805' >>> publishers[0].address 'Bldg. 3205' >>> publishers[0].city 'Stennis Space Center' >>> publishers[0].postcode '39529' >>> publishers[0].email 'webmaster.ndbc@noaa.gov' >>> publishers[0].region 'MS' Identification >>> sorted(system.identifiers.keys()) ['Long Name', 'Short Name', 'StationId'] >>> sid = system.get_identifiers_by_name('StationId') >>> sid[0].name 'StationId' >>> sid[0].definition 'urn:ioos:def:identifier:NOAA:stationID' >>> sid[0].codeSpace 'http://sdf.ndbc.noaa.gov' >>> sid[0].value 'urn:ioos:station:wmo:41012' Classifiers >>> sorted(system.classifiers.keys()) ['Platform Type'] >>> classi = system.get_classifiers_by_name('Platform type') >>> classi[0].name 'Platform Type' >>> classi[0].definition 'urn:ioos:def:classifier:NOAA:platformType' >>> classi[0].codeSpace 'http://sdf.ndbc.noaa.gov' >>> classi[0].value 'MOORED BUOY' Documents >>> system.documentation # doctest: +ELLIPSIS [] >>> doc = system.documentation[0].documents[0] >>> doc.description 'Handbook of Automated Data Quality Control Checks and Procedures, National Data Buoy Center, August 2009' >>> doc.format 'pdf' >>> doc.url 'http://www.ndbc.noaa.gov/NDBCHandbookofAutomatedDataQualityControl2009.pdf' History >>> sorted(system.history.keys()) ['deployment_start', 'deployment_stop'] >>> his = system.get_history_by_name('deployment_start') >>> his [] >>> len(his) 2 >>> event = his[0] >>> parser.parse(event.date).replace(tzinfo=pytz.utc).isoformat() '2010-01-12T00:00:00+00:00' >>> event.description 'Deployment start event' >>> event.documentation[0].url 'http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&request=DescribeSensor&version=1.0.0&outputformat=text/xml;subtype="sensorML/1.0.1"&procedure=urn:ioos:station:wmo:41012:20100112' OWSLib-0.16.0/tests/doctests/sos_10_getcapabilities.txt000066400000000000000000000167041321706412000227510ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, resource_file >>> from owslib.sos import SensorObservationService >>> from owslib.fes import FilterCapabilities >>> from owslib.ows import OperationsMetadata >>> from owslib.crs import Crs >>> from datetime import datetime >>> from operator import itemgetter Initialize ncSOS >>> xml = open(resource_file('sos_ncSOS_getcapabilities.xml'), 'rb').read() >>> ncsos = SensorObservationService(None, xml=xml) Initialize 52N >>> xml = open(resource_file('sos_52n_getcapabilities.xml'), 'rb').read() >>> f2n = SensorObservationService(None, xml=xml) Initialize NDBC >>> xml = open(resource_file('sos_ndbc_getcapabilities.xml'), 'rb').read() >>> ndbc = SensorObservationService(None, xml=xml) ServiceIdentification >>> id = ndbc.identification >>> id.service 'OGC:SOS' >>> id.version '1.0.0' >>> id.title 'National Data Buoy Center SOS' >>> id.abstract 'National Data Buoy Center SOS' >>> id.keywords ['Weather', 'Ocean Currents', 'Air Temperature', 'Water Temperature', 'Conductivity', 'Salinity', 'Barometric Pressure', 'Water Level', 'Waves', 'Winds', 'NDBC'] >>> id.fees 'NONE' >>> id.accessconstraints 'NONE' ServiceProvider >>> p = ndbc.provider >>> p.name 'National Data Buoy Center' >>> p.url 'http://sdf.ndbc.noaa.gov/' ServiceContact >>> sc = p.contact Unused fields should return nothing >>> sc.role >>> sc.position >>> sc.instructions >>> sc.organization >>> sc.fax >>> sc.hours >>> sc.name 'Webmaster' >>> sc.phone '228-688-2805' >>> sc.address 'Bldg. 3205' >>> sc.city 'Stennis Space Center' >>> sc.region 'MS' >>> sc.postcode '39529' >>> sc.country 'USA' >>> sc.email 'webmaster.ndbc@noaa.gov' OperationsMetadata >>> o = ndbc.operations >>> len(o) 3 Name >>> len(o) 3 Get by name >>> getcap = ndbc.get_operation_by_name('GetCapabilities') >>> isinstance(getcap, OperationsMetadata) True Get by name (case insensitive) >>> getcap = ndbc.get_operation_by_name('getcapabilities') >>> isinstance(getcap, OperationsMetadata) True # GetCapabilities >>> getcap.constraints [] >>> x = getcap.parameters >>> x == {'Sections': {'values': ['ServiceIdentification', 'ServiceProvider', 'OperationsMetadata', 'Contents', 'All']}} True >>> x = sorted(getcap.methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}, {'type' : 'Post', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}] True # DescribeSensor >>> descsen = ndbc.get_operation_by_name('describesensor') >>> descsen.constraints [] >>> x = descsen.parameters >>> x == {'outputFormat': {'values': ['text/xml;subtype="sensorML/1.0.1"']}} True >>> x = sorted(descsen.methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}, {'type' : 'Post', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}] True # GetObservation >>> getob = ndbc.get_operation_by_name('getobservation') >>> getob.constraints [] >>> x = getob.parameters >>> x == {'observedProperty': {'values': ['air_temperature', 'air_pressure_at_sea_level', 'sea_water_electrical_conductivity', 'currents', 'sea_water_salinity', 'sea_floor_depth_below_sea_surface', 'sea_water_temperature', 'waves', 'winds']}} True >>> x = sorted(getob.methods, key=itemgetter('type')) >>> x == [{'type' : 'Get', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}, {'type' : 'Post', 'url': 'http://sdf.ndbc.noaa.gov/sos/server.php', 'constraints': []}] True Filter_Capabilities >>> filter = ndbc.filters >>> isinstance(filter, FilterCapabilities) False Contents >>> contents = ndbc.contents >>> len(contents) 848 Dict access __getitem__ >>> ndbc['station-46084'].name 'urn:ioos:station:wmo:46084' >>> ndbc['rubbishrubbish'].name Traceback (most recent call last): ... KeyError: 'No Observational Offering with id: rubbishrubbish' Network >>> network = contents['network-all'] >>> network.id 'network-all' >>> network.name 'urn:ioos:network:noaa.nws.ndbc:all' >>> network.description 'All stations on the NDBC SOS server' >>> srs = network.srs >>> isinstance(srs, Crs) True >>> srs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> srs.getcode() 'EPSG:4326' # (left, bottom, right, top) >>> cast_tuple_int_list(network.bbox) [-179, -77, 180, 80] >>> bbsrs = network.bbox_srs >>> isinstance(bbsrs, Crs) True >>> bbsrs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> bbsrs.getcode() 'EPSG:4326' >>> bp = network.begin_position >>> isinstance(bp, datetime) True >>> ep = network.end_position >>> isinstance(ep, datetime) True >>> network.result_model 'om:Observation' >>> procs = network.procedures >>> len(procs) 847 >>> network.observed_properties ['http://mmisw.org/ont/cf/parameter/air_temperature', 'http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level', 'http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity', 'http://mmisw.org/ont/cf/parameter/currents', 'http://mmisw.org/ont/cf/parameter/sea_water_salinity', 'http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface', 'http://mmisw.org/ont/cf/parameter/sea_water_temperature', 'http://mmisw.org/ont/cf/parameter/waves', 'http://mmisw.org/ont/cf/parameter/winds'] >>> foi = network.features_of_interest >>> len(foi) 1082 >>> rfs = network.response_formats >>> len(rfs) 5 >>> rfs[-1] 'application/vnd.google-earth.kml+xml' >>> rms = network.response_modes >>> len(rms) 1 >>> rms[0] 'inline' Station >>> station = contents['station-zbqn7'] >>> station.id 'station-zbqn7' >>> station.name 'urn:ioos:station:wmo:zbqn7' >>> station.description "Zeke's Basin, North Carolina" >>> srs = station.srs >>> isinstance(srs, Crs) True >>> srs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> srs.getcode() 'EPSG:4326' >>> cast_tuple_int_list(station.bbox) [-77, 33, -77, 33] >>> bbsrs = station.bbox_srs >>> isinstance(bbsrs, Crs) True >>> bbsrs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> bbsrs.getcode() 'EPSG:4326' >>> bp = station.begin_position >>> isinstance(bp, datetime) True >>> ep = station.end_position >>> isinstance(ep, datetime) True >>> station.result_model 'om:Observation' >>> procs = station.procedures >>> len(procs) 1 >>> procs[0] 'urn:ioos:station:wmo:zbqn7' >>> ops = station.observed_properties >>> len(ops) 3 >>> ops[0] 'http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity' >>> foi = station.features_of_interest >>> len(foi) 1 >>> foi[0] 'urn:cgi:Feature:CGI:EarthOcean' >>> rfs = station.response_formats >>> len(rfs) 5 >>> rfs[0] 'text/xml;schema="ioos/0.6.1"' >>> rm = station.response_modes >>> len(rm) 1 >>> rm[0] 'inline' OWSLib-0.16.0/tests/doctests/sos_10_ndbc_getobservation.txt000066400000000000000000000046431321706412000236400ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.sos import SensorObservationService >>> from owslib.ows import OperationsMetadata >>> from owslib.fes import FilterCapabilities >>> from owslib.crs import Crs >>> from datetime import datetime Initialize >>> xml = open(resource_file('sos_ndbc_getcapabilities.xml'),'rb').read() >>> ndbc = SensorObservationService(None, xml=xml) GetObservation # Send a funky eventTime >>> off = ndbc.offerings[1] >>> offerings = [off.name] >>> responseFormat = off.response_formats[0] >>> observedProperties = [off.observed_properties[0]] >>> #observedProperties = [ndbc.get_operation_by_name('GetObservation').parameters['observedProperty']['values'][0]] >>> eventTime = "This is not a valid eventTime!" >>> response = ndbc.get_observation(offerings=offerings, responseFormat=responseFormat, observedProperties=observedProperties, eventTime=eventTime) #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in ServiceException: 'This is not a valid eventTime!' # NDBC only supports one offering and one observedProperty at a time >>> off = ndbc.offerings[1] >>> offerings = [off.name] >>> responseFormat = off.response_formats[0] >>> observedProperties = [off.observed_properties[0]] >>> #observedProperties = [ndbc.get_operation_by_name('GetObservation').parameters['observedProperty']['values'][0]] >>> eventTime = None >>> response = ndbc.get_observation(offerings=offerings, responseFormat=responseFormat, observedProperties=observedProperties, eventTime=eventTime) DescribeSensor # Send a funky procedure >>> procedure = "foobar" >>> outputFormat = ndbc.get_operation_by_name('DescribeSensor').parameters['outputFormat']['values'][0] >>> response = ndbc.describe_sensor(procedure=procedure, outputFormat=outputFormat) #doctest: +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): File "", line 1, in ServiceException: 'foobar' # Valid request >>> procedure = ndbc.offerings[1].procedures[0] >>> outputFormat = ndbc.get_operation_by_name('DescribeSensor').parameters['outputFormat']['values'][0] >>> response = ndbc.describe_sensor(procedure=procedure, outputFormat=outputFormat) OWSLib-0.16.0/tests/doctests/sos_20_52N_demo.txt000066400000000000000000000074631321706412000211730ustar00rootroot00000000000000# Tests using the 52North demo service >>> from owslib.sos import SensorObservationService >>> service = SensorObservationService('http://sensorweb.demo.52north.org/52n-sos-webapp/sos/kvp',version='2.0.0') >>> for content in sorted(service.contents): ... print(content) ... http://www.52north.org/test/offering/1 http://www.52north.org/test/offering/2 http://www.52north.org/test/offering/3 http://www.52north.org/test/offering/4 http://www.52north.org/test/offering/5 http://www.52north.org/test/offering/6 http://www.52north.org/test/offering/7 http://www.52north.org/test/offering/8 http://www.52north.org/test/offering/developer >>> id = service.identification # Check basic service metadata >>> id.service 'OGC:SOS' >>> id.title '52N SOS' >>> provider=service.provider >>> provider.name '52North' >>> len(service.operations) 16 # Check allowed params for get FOI >>> get_foi=service.get_operation_by_name('GetFeatureOfInterest') >>> try: ... x = unicode('test') ... for x in sorted(get_foi.parameters['featureOfInterest']['values']): ... print(x.encode('utf8')) ... except: ... for x in sorted(get_foi.parameters['featureOfInterest']['values']): ... print(x) http://www.52north.org/test/featureOfInterest/1 http://www.52north.org/test/featureOfInterest/2 http://www.52north.org/test/featureOfInterest/3 http://www.52north.org/test/featureOfInterest/4 http://www.52north.org/test/featureOfInterest/5 http://www.52north.org/test/featureOfInterest/6 http://www.52north.org/test/featureOfInterest/7 http://www.52north.org/test/featureOfInterest/8 http://www.52north.org/test/featureOfInterest/Heiden http://www.52north.org/test/featureOfInterest/Münster/FE101 http://www.52north.org/test/featureOfInterest/Portland http://www.52north.org/test/featureOfInterest/TODO http://www.52north.org/test/featureOfInterest/world # Check allowed params for get observation >>> get_obs=service.get_operation_by_name('GetObservation') get_obs.parameters['responseFormat']['values'] ['http://www.opengis.net/om/2.0'] # Get observation call # Get latest value using O&M reponse format #'\n\n \n \n \n \n \n 2014-07-10T04:31:58.000Z\n \n \n \n \n \n \n 17.2\n \n \n' >>> latest_response = service.get_observation('http://www.opengis.net/om/2.0', ['http://www.52north.org/test/offering/1'], ['http://www.52north.org/test/observableProperty/1'], eventTime='om:phenomenonTime,latest', timeout=120) OWSLib-0.16.0/tests/doctests/sos_20_bom_gov_au.txt000066400000000000000000000030561321706412000217320ustar00rootroot00000000000000# SOS version 2.0 tests on http://www.bom.gov.au/waterdata/services # Imports >>> from owslib.sos import SensorObservationService # Setup >>> service = SensorObservationService('http://www.bom.gov.au/waterdata/services', version='2.0.0') >>> id = service.identification # Check basic service metadata >>> id.service 'SOS' >>> id.title 'KISTERS KiWIS SOS2' >>> id.keywords [] >>> service.provider.name 'Provider Name' >>> service.provider.contact.name 'Name' >>> service.provider.contact.position >>> len(service.operations) 5 >>> service.get_operation_by_name('GetObservation').methods[0]['url'] = 'http://www.bom.gov.au/waterdata/services' >>> response = service.get_observation(featureOfInterest='http://bom.gov.au/waterdata/services/stations/181.1', ... offerings=['http://bom.gov.au/waterdata/services/tstypes/Pat4_PC_1'], ... observedProperties=['http://bom.gov.au/waterdata/services/parameters/Water Course Discharge'], ... eventTime='om:phenomenonTime,2016-01-01T00:00:00+10/2016-03-05T00:00:00+10') # Process WaterML Response >>> from owslib.etree import etree >>> from owslib.swe.observation.sos200 import SOSGetObservationResponse >>> from owslib.swe.observation.waterml2 import MeasurementTimeseriesObservation >>> et = etree.fromstring(response) >>> parsed_response = SOSGetObservationResponse(et) >>> assert len(parsed_response.observations) > 0 >>> for o in parsed_response.observations: ... assert isinstance(o, MeasurementTimeseriesObservation) OWSLib-0.16.0/tests/doctests/sos_20_timeseries_decoder_ioos.txt000066400000000000000000000050241321706412000245010ustar00rootroot00000000000000# SOS version 2.0 tests using the 52North installation for IOOS: http://ioossos.axiomalaska.com/ # Imports >>> from owslib.sos import SensorObservationService >>> from owslib.swe.observation.sos200 import SOSGetObservationResponse >>> from owslib.etree import etree # Setup #>>> service = SensorObservationService('http://geoviqua.dev.52north.org/SOS-Q/sos/kvp',version='2.0.0') >>> service = SensorObservationService('http://ioossos.axiomalaska.com/52n-sos-ioos-stable/sos/kvp',version='2.0.0') # http://ioossos.axiomalaska.com/52n-sos-ioos-stable/sos/kvp?service=SOS&request=GetObservation&namespaces=xmlns(om%2Chttp%3A%2F%2Fwww.opengis.net%2Fom%2F2.0)&temporalFilter=om%3AphenomenonTime%2Clatest&version=2.0.0 # Check allowed params for get observation >>> get_obs=service.get_operation_by_name('GetObservation') >>> response = service.get_observation(responseFormat='http://www.opengis.net/om/2.0', offerings=['urn:ioos:station:test:8'], observedProperties=['http://mmisw.org/ont/cf/parameter/sea_water_temperature'], timeout=60) >>> xml_tree = etree.fromstring(response) >>> parsed_response = SOSGetObservationResponse(xml_tree) >>> type(parsed_response) >>> o=parsed_response.observations[0] ## Value changes each call so can't be tested ## >>> o.get_result().value >>> o.get_result().uom 'urn:ogc:def:uom:udunits:2:Cel' # This O&M structure of the results splits each point into an O&M object, resulting in 400 results >>> len(parsed_response.observations) 400 >>> type(parsed_response.observations[0]) # Get observation for a specific offering (in this case corresponds to a station) and observed property (sea water temperature) >>> response = service.get_observation(responseFormat='http://www.opengis.net/waterml/2.0', offerings=['urn:ioos:station:test:8'], observedProperties=['http://mmisw.org/ont/cf/parameter/sea_water_temperature'], timeout=60) >>> xml_tree = etree.fromstring(response) >>> parsed_response = SOSGetObservationResponse(xml_tree) >>> type(parsed_response) >>> len(parsed_response.observations) 20 >>> type(parsed_response.observations[0]) >>> type(parsed_response.observations[0].get_result()) >>> measurement_timeseries = parsed_response.observations[0].get_result() >>> len(measurement_timeseries) 20 OWSLib-0.16.0/tests/doctests/sos_ngmp.txt000066400000000000000000000223051321706412000202530ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, resource_file >>> from owslib.sos import SensorObservationService >>> from owslib.fes import FilterCapabilities200 >>> from owslib.ows import OperationsMetadata >>> from owslib.crs import Crs >>> from datetime import datetime >>> from operator import itemgetter Initialize >>> xml = open(resource_file('sos_ngmp.xml'), 'rb').read() >>> ngmp = SensorObservationService(None, xml=xml, version='2.0.0') ServiceIdentification >>> id = ngmp.identification >>> id.service 'OGC:SOS' >>> id.version '2.0.0' >>> len(id.profiles) 3 >>> id.title 'GNS Science New Zealand, NGMP SOS timeseries' >>> id.abstract 'GNS Hydrogeology Section, serving NGMP groundwater level through customised 52N SOS, data quality cannot be represented yet, there is no liability regarding this service, for more information go to http://ggw.gns.cri.nz/ggwdata/ (SVN: 0 @ 2013-01-12 19:55:25)' >>> id.keywords ['water level', 'groundwater', 'hydrogeology', 'ngmp'] >>> id.fees 'NONE' >>> id.accessconstraints 'SERVICE IS IN TEST MODE, NOT RELIABLE, DATA QUALITY NOT YET VISIBLE' ServiceProvider >>> p = ngmp.provider >>> p.name 'GNS Science' >>> p.url 'http://ggw.gns.cri.nz/ggwdata/' ServiceContact >>> sc = p.contact Unused fields should return nothing >>> sc.role >>> sc.position 'STU' >>> sc.instructions >>> sc.organization >>> sc.fax >>> sc.hours >>> sc.name 'Alex Kmoch' >>> sc.phone '+647374 8211' >>> sc.address '114 Karetoto Road' >>> sc.city 'Wairakei' >>> sc.region 'Waikato' >>> sc.postcode '3377' >>> sc.country 'New Zealand' >>> sc.email 'a.kmoch@gns.cri.nz' OperationsMetadata >>> o = ngmp.operations >>> len(o) 4 Get by name >>> getcap = ngmp.get_operation_by_name('GetCapabilities') >>> isinstance(getcap, OperationsMetadata) True Get by name (case insensitive) >>> getcap = ngmp.get_operation_by_name('getcapabilities') >>> isinstance(getcap, OperationsMetadata) True # GetCapabilities >>> getcap.constraints [] >>> x = getcap.parameters >>> x == {'AcceptVersions': {'values': ['1.0.0', '2.0.0']}, 'updateSequence': {'values': []}, 'Sections': {'values': ['ServiceIdentification', 'ServiceProvider', 'OperationsMetadata', 'FilterCapabilities', 'Contents', 'All']}, 'AcceptFormats': {'values': ['text/xml', 'application/zip']}} True >>> x = sorted(getcap.methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos?', 'constraints': []}, {'type': 'Post', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos', 'constraints': []},] True # DescribeSensor >>> descsen = ngmp.get_operation_by_name('describesensor') >>> descsen.constraints [] >>> x = descsen.parameters >>> x == {'procedureDescriptionFormat': {'values': ['http://www.opengis.net/sensorML/1.0.1']}, 'procedure': {'values': ['http://resources.smart-project.info/ggwdata/procedure/acidity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/chloride_sampling', 'http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor', 'http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/iron_sampling', 'http://resources.smart-project.info/ggwdata/procedure/manganese_sampling', 'http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling', 'http://resources.smart-project.info/ggwdata/procedure/temperature_sampling', 'http://resources.smart-project.info/ggwdata/procedure/tritium_sampling']}} True >>> x = sorted(descsen.methods, key=itemgetter('type')) >>> x == [{'type' : 'Get', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos?', 'constraints': []}, {'type': 'Post', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos', 'constraints': []}] True # GetObservation >>> getob = ngmp.get_operation_by_name('getobservation') >>> getob.constraints [] >>> x = getob.parameters >>> x == {'srsName': {'values': []}, 'offering': {'values': ['NGMP_HYDRAULIC_CONDUCTIVITY', 'NGMP_TRITIUM_ALL_FORMS', 'NGMP_DISSOLVED_MANGANESE', 'NGMP_TEMPERATURE', 'NGMP_DISSOLVED_IRON', 'NGMP_CONDUCTIVITY', 'NGMP_ACIDITY', 'NGMP_GROUNDWATER_LEVEL', 'NGMP_DISSOLVED_NITRATE_NO3_AS_N', 'NGMP_DISSOLVED_CHLORIDE']}, 'temporalFilter': {'values': []}, 'responseFormat': {'values': ['http://www.ioos.gov/dif/csv/0.9', 'http://www.opengis.net/waterml/2.0', 'http://www.opengis.net/om/2.0', 'application/zip']}, 'featureOfInterest': {'values': ['10', '11', '12', '13', '139', '14', '140', '15', '16', '17', '18', '19', '1993', '20', '2013', '2015', '2016', '2039', '2069', '2080', '21', '2103', '22', '23', '24', '2466', '2470', '2479', '25', '26', '27', '28', '29', '3', '30', '31', '32', '3200', '3258', '3280', '3281', '33', '3325', '3327', '3336', '338', '339', '34', '340', '346', '347', '348', '349', '35', '350', '351', '352', '353', '354', '355', '356', '358', '359', '36', '360', '361', '362', '363', '364', '37', '3705', '3706', '3707', '3708', '3709', '3710', '3711', '3712', '378', '379', '38', '380', '381', '382', '383', '384', '386', '387', '388', '389', '39', '390', '391', '392', '393', '394', '395', '4', '40', '401', '402', '403', '404', '405', '406', '407', '408', '409', '41', '410', '411', '412', '413', '414', '415', '416', '417', '418', '419', '42', '420', '421', '422', '423', '43', '437', '44', '443', '444', '445', '446', '447', '448', '449', '45', '451', '452', '453', '454', '455', '456', '458', '46', '464', '465', '466', '467', '468', '469', '47', '48', '49', '5', '50', '51', '511', '512', '52', '53', '54', '55', '552', '553', '56', '57', '58', '59', '6', '60', '61', '62', '63', '64', '65', '66', '67', '68', '69', '7', '70', '71', '72', '73', '74', '75', '76', '77', '78', '79', '8', '80', '81', '82', '83', '9']}, 'observedProperty': {'values': ['http://resources.smart-project.info/ggwdata/phenomenon/hydraulic_conductivity', 'http://resources.smart-project.info/ggwdata/phenomenon/tritium_all_forms', 'http://resources.smart-project.info/ggwdata/phenomenon/dissolved_manganese', 'http://resources.smart-project.info/ggwdata/phenomenon/temperature', 'http://resources.smart-project.info/ggwdata/phenomenon/dissolved_iron', 'http://resources.smart-project.info/ggwdata/phenomenon/conductivity', 'http://resources.smart-project.info/ggwdata/phenomenon/acidity', 'http://resources.smart-project.info/ggwdata/phenomenon/groundwaterlevel', 'http://resources.smart-project.info/ggwdata/phenomenon/dissolved_nitrate_no3_as_n', 'http://resources.smart-project.info/ggwdata/phenomenon/dissolved_chloride']}, 'procedure': {'values': ['http://resources.smart-project.info/ggwdata/procedure/acidity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/chloride_sampling', 'http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor', 'http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling', 'http://resources.smart-project.info/ggwdata/procedure/iron_sampling', 'http://resources.smart-project.info/ggwdata/procedure/manganese_sampling', 'http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling', 'http://resources.smart-project.info/ggwdata/procedure/temperature_sampling', 'http://resources.smart-project.info/ggwdata/procedure/tritium_sampling']}, 'result': {'values': []}} True >>> x = sorted(getob.methods, key=itemgetter('type')) >>> x == [{'type' : 'Get', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos?', 'constraints': []}, {'type': 'Post', 'url': 'https://geier.gns.cri.nz/ngmp-sos/sos', 'constraints': []}] True Filter_Capabilities >>> filter = ngmp.filters >>> isinstance(filter, FilterCapabilities200) False Contents >>> contents = ngmp.contents >>> len(contents) 10 Network >>> network = contents['NGMP_TEMPERATURE'] >>> network.id 'NGMP_TEMPERATURE' >>> network.procedures ['http://resources.smart-project.info/ggwdata/procedure/temperature_sampling'] >>> srs = network.bbox_srs >>> isinstance(srs, Crs) True >>> srs.id 'http://www.opengis.net/def/crs/EPSG/0/4272' >>> srs.getcodeurn() 'urn:ogc:def:crs:EPSG::4272' >>> srs.getcode() 'EPSG:4272' # (left, bottom, right, top) >>> cast_tuple_int_list(network.bbox) [168, -46, 177, -34] >>> bp = network.begin_position >>> isinstance(bp, datetime) True >>> ep = network.end_position >>> isinstance(ep, datetime) True >>> network.observed_properties ['http://resources.smart-project.info/ggwdata/phenomenon/temperature'] >>> network.response_formats ['http://www.ioos.gov/dif/csv/0.9', 'http://www.opengis.net/waterml/2.0', 'http://www.opengis.net/om/2.0', 'application/zip'] >>> network.observation_models ['http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation'] OWSLib-0.16.0/tests/doctests/sos_ngwd.txt000066400000000000000000000124311321706412000202500ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.sos import SensorObservationService >>> from owslib.fes import FilterCapabilities200 >>> from owslib.ows import OperationsMetadata >>> from owslib.crs import Crs >>> from datetime import datetime >>> from operator import itemgetter Initialize >>> xml = open(resource_file('sos_ngwd.xml'),'rb').read() >>> ngwd = SensorObservationService(None, xml=xml, version='2.0.0') ServiceIdentification >>> id = ngwd.identification >>> id.service 'OGC:SOS' >>> id.version '2.0.0' >>> len(id.profiles) 5 >>> id.title 'GIN SOS' >>> id.abstract 'GIN SOS mediator' >>> id.keywords ['water level', 'groundwater level', 'surface water flow'] >>> id.fees 'NONE' >>> id.accessconstraints 'NONE' ServiceProvider >>> p = ngwd.provider >>> p.name 'Geological Survey of Canada, Earth Sciences Sector, Natural Resources Canada, Government of Canada' >>> p.url 'http://gw-info.net' ServiceContact >>> sc = p.contact Unused fields should return nothing >>> sc.role >>> sc.position 'Research Scientist' >>> sc.instructions >>> sc.organization >>> sc.fax '+1-613-995-9273' >>> sc.hours >>> sc.name 'Boyan Brodaric' >>> sc.phone '+1-613-992-3562' >>> sc.address '615 Booth Street' >>> sc.city 'Ottawa' >>> sc.region >>> sc.postcode 'K1A 0E9' >>> sc.country 'Canada' >>> sc.email 'brodaric at nrcan dot gc dot ca' OperationsMetadata >>> o = ngwd.operations >>> len(o) 4 Get by name >>> getcap = ngwd.get_operation_by_name('GetCapabilities') >>> isinstance(getcap, OperationsMetadata) True Get by name (case insensitive) >>> getcap = ngwd.get_operation_by_name('getcapabilities') >>> isinstance(getcap, OperationsMetadata) True # GetCapabilities >>> getcap.constraints [] >>> x = getcap.parameters >>> x == {'AcceptVersions': {'values': ['2.0.0']}, 'updateSequence': {'values': []}, 'Sections': {'values': ['ServiceIdentification', 'ServiceProvider', 'OperationsMetadata', 'FilterCapabilities', 'Contents', 'All']}, 'AcceptFormats': {'values': ['text/xml', 'application/zip']}} True >>> x = sorted(getcap.methods, key=itemgetter('type')) >>> x == [{'type' : 'Get', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?', 'constraints': []}, {'type' : 'Post', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw', 'constraints': []}] True # DescribeSensor >>> descsen = ngwd.get_operation_by_name('describesensor') >>> descsen.constraints [] >>> x = descsen.parameters >>> x == {'procedureDescriptionFormat': {'values': ['http://www.opengis.net/sensorML/1.0.1']}, 'procedure': {'values': ['urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess']}} True >>> x = sorted(descsen.methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?', 'constraints': []}, {'type' : 'Post', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw', 'constraints': []}] True # GetObservation >>> getob = ngwd.get_operation_by_name('getobservation') >>> getob.constraints [] >>> x = getob.parameters >>> x == {'srsName': {'values': []}, 'temporalFilter': {'values': []}, 'offering': {'values': ['GW_LEVEL']}, 'result': {'values': []}, 'responseFormat': {'values': ['http://www.opengis.net/waterml/2.0', 'application/zip']}, 'observedProperty': {'values': ['urn:ogc:def:phenomenon:OGC:1.0.30:groundwaterlevel']}, 'procedure': {'values': ['urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess']}} True >>> x = getob.methods >>> x == [{'type' : 'Get', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?', 'constraints': []}, {'type': 'Post', 'url': 'http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw', 'constraints': []}] True Filter_Capabilities >>> filter = ngwd.filters >>> isinstance(filter, FilterCapabilities200) False Contents >>> contents = ngwd.contents >>> len(contents) 1 Network >>> network = contents['GW_LEVEL'] >>> network.id 'GW_LEVEL' >>> network.procedures ['urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess'] >>> srs = network.bbox_srs >>> isinstance(srs, Crs) True >>> srs.id 'http://www.opengis.net/def/crs/EPSG/0/4326' >>> srs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> srs.getcode() 'EPSG:4326' # (left, bottom, right, top) >>> network.bbox (-120.0, 41.0, -60.0, 60.0) >>> bbsrs = network.bbox_srs >>> isinstance(bbsrs, Crs) True >>> bbsrs.getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> bbsrs.getcode() 'EPSG:4326' >>> bp = network.begin_position >>> isinstance(bp, datetime) True >>> ep = network.end_position >>> isinstance(ep, datetime) True >>> network.observed_properties ['urn:ogc:def:phenomenon:OGC:1.0.30:groundwaterlevel'] >>> network.response_formats [] >>> network.observation_models [] OWSLib-0.16.0/tests/doctests/swe_common_20.txt000066400000000000000000000052451321706412000211010ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.swe.common import Time, DataChoice, DataRecord, AbstractSimpleComponent >>> from owslib.etree import etree Initialize >>> swexml = open(resource_file('swe_ioos_multistation_timeseries.xml'), 'rb').read() >>> dr = etree.fromstring(swexml) >>> if hasattr(dr, 'getroot'): ... dr = dr.getroot() >>> swe_dr = DataRecord(dr) Test # two fields, 'stations' and 'observationData' >>> len(swe_dr.field) 2 >>> swe_dr.definition 'http://mmisw.org/ont/ioos/definition/observationRecord' >>> stations_field = swe_dr.get_by_name("stations") >>> stations_field.name 'stations' # Single station >>> single_station_field = stations_field.content.get_by_name("wmo_41001") >>> single_station_field.name 'wmo_41001' >>> single_station_dr = single_station_field.content >>> single_station_dr.id 'wmo_41001' # three fields: "stationID", "platformLocation", and "sensors" >>> len(single_station_dr.field) 3 >>> single_station_dr.definition 'http://mmisw.org/ont/ioos/definition/station' >>> single_station_dr.get_by_name("stationID").content.definition 'http://mmisw.org/ont/ioos/definition/stationID' >>> single_station_dr.get_by_name("stationID").content.value 'urn:ioos:station:wmo:41001' >>> vector = single_station_dr.get_by_name("platformLocation").content >>> len(vector.coordinate) 3 >>> int(vector.get_by_name("latitude").content.value) 32 >>> int(vector.get_by_name("longitude").content.value) -75 >>> int(vector.get_by_name("height").content.value) 0 >>> data_field = swe_dr.get_by_name("observationData") >>> data_field.name 'observationData' >>> data_et = data_field.content.elementType >>> data_et.name 'observations' >>> data_choice = data_et.content.get_by_name("sensor").content # 5 sensor choices for the csv block >>> len(data_choice.item) 5 >>> sensor_dr = data_choice.get_by_name("wmo_41001_sensor1").content >>> sensor_dr.get_by_name("air_temperature").content.uom 'Celsius' >>> sensor_dr.get_by_name("wind_speed").content.uom 'm/s' >>> sensor_dr.get_by_name("wind_to_direction").content.uom 'degrees' >>> encoding = data_field.content.encoding >>> encoding.tokenSeparator ',' >>> encoding.blockSeparator '\n' >>> encoding.decimalSeparator '.' >>> encoding.collapseWhiteSpaces True OWSLib-0.16.0/tests/doctests/tms.txt000066400000000000000000000104651321706412000172350ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function, unicode_literals) >>> from owslib import tms You can find a list of servers at http://svn.osgeo.org/gdal/trunk/gdal/frmts/wms/WMSServerList.txt Find out what a TMS has to offer. Service metadata: >>> service = tms.TileMapService('http://odims.ospar.org/geoserver/gwc/service/tms/1.0.0', timeout=120) >>> service.identification.title 'Tile Map Service' >>> service.identification.abstract 'A Tile Map Service served by GeoWebCache' >>> service.identification.keywords [] >>> service.identification.version '1.0.0' >>> service.identification.url 'http://odims.ospar.org/geoserver/gwc/' >>> len(service.contents) > 0 True >>> tm = service.contents['http://odims.ospar.org/geoserver/gwc/service/tms/1.0.0/geonode%3Aospar_offshore_renewables_2010_01@EPSG%3A4326@png'] >>> tm.title 'ospar_offshore_renewables_2010_01' you can filter the contents by profile and srs: >>> len(service.items()) 664 >>> len(service.items('EPSG:900913')) 332 >>> len(service.items(profile='global-mercator')) 332 >>> len(service.items('EPSG:900913', profile='global-mercator')) 332 >>> len(service.items('EPSG:4326', profile='global-mercator')) 0 >>> sorted(service.items('EPSG:4326'))[0] # doctest: +ELLIPSIS ('http://odims.ospar.org/geoserver/gwc/service/tms/1.0.0/geonode%3AMarine_protected_area__OSPAR____Global_view__polygon_@EPSG%3A4326@gif', ) The details of the TileMap are fetched on demand >>> tm._tile_map == None True >>> tm.title 'ospar_offshore_renewables_2010_01' >>> tm.abstract >>> tm._tile_map == None False >>> tm.srs 'EPSG:4326' >>> tm.extension 'png' >>> tm.height 256 >>> tm.width 256 >>> tm.mimetype 'image/png' >>> tm.boundingBox (-180.0, -90.0, 180.0, 90.0) >>> tm.origin (-180.0, -90.0) You can get tiles by their x,y,z indices, the title of the tilemap, projection and mime-type >>> service.gettile(10,10,0, title='bluemarble', srs='EPSG:4326', mimetype='image/png').geturl() #doctest: +SKIP 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0/bluemarble@EPSG%3A4326@png/0/10/10.png' >>> service.gettile(10,10,1, title='bluemarble', srs='EPSG:4326', mimetype='image/jpeg').geturl() #doctest: +SKIP 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0/bluemarble@EPSG%3A4326@jpeg/1/10/10.jpeg' if mimetype is ommited the tile is fetched from the first TileMap found: >>> service.gettile(10,10,1, title='bluemarble', srs='EPSG:900913').geturl() #doctest: +SKIP 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0/bluemarble@EPSG%3A900913@jpeg/1/10/10.jpeg' You can also specify the Tilemap by id: >>> service.gettile(10,10,0, 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0/bluemarble@EPSG%3A900913@jpeg').geturl() #doctest: +SKIP 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0/bluemarble@EPSG%3A900913@jpeg/0/10/10.jpeg' An extensive test with: >>> servers = [ ... 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0', ... 'http://demo.opengeo.org/geoserver/gwc/service/tms/1.0.0', ... 'http://osm.omniscale.net/proxy/tms/1.0.0', ... 'http://apps.esdi-humboldt.cz/mapproxy/tms/1.0.0', ... 'http://apps.esdi-humboldt.cz/cgi-bin/tilecache/tilecache.cgi/1.0.0', ... # 'http://tilecache.osgeo.org/wms-c/tilecache.py/1.0.0/', ... 'http://tileserver.maptiler.com/tms', ... ] # uncomment if you want to test all of the above # >>> for server in servers: # ... service = tms.TileMapService(server) # ... service.identification.title # ... service.identification.version # ... len(service.items()) # ... len(service.items('EPSG:900913')) # ... len(service.items(profile='global-mercator')) # ... len(service.items('EPSG:4326')) # ... for tm in service.contents.values(): # ... tm.title # ... tm._tile_map == None # ... tm.abstract # ... tm._tile_map # ... tm.srs # ... tm.mimetype # ... tm.extension # ... tm.boundingBox # ... tm.origin # ... tm.type OWSLib-0.16.0/tests/doctests/util.txt000066400000000000000000000021241321706412000174000ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.util import clean_ows_url Tests >>> clean_ows_url('http//example.org/wms') 'http//example.org/wms' >>> clean_ows_url('http//example.org/wms?service=WMS') 'http//example.org/wms' >>> clean_ows_url('http//example.org/wms?SERVICE=WMS') 'http//example.org/wms' >>> clean_ows_url('http//example.org/wms?SeRvIcE=WMS') 'http//example.org/wms' >>> clean_ows_url('http//example.org/wms?SeRvIcE=WMS&version=1.3.0&request=GetCapabilities') 'http//example.org/wms' >>> clean_ows_url('http//example.org/wms?foo=bar&SeRvIcE=WMS&version=1.3.0&request=GetCapabilities') 'http//example.org/wms?foo=bar' >>> clean_ows_url('http://example.org/wms?map=/path/to/foo.map&SERVICE=WMS&version=1.3.0&request=GetCapabilities') 'http://example.org/wms?map=%2Fpath%2Fto%2Ffoo.map' >>> clean_ows_url('http://example.org/wms?map=/path/to/foo.map&foo=bar&&SERVICE=WMS&version=1.3.0&request=GetCapabilities') 'http://example.org/wms?map=%2Fpath%2Fto%2Ffoo.map&foo=bar' OWSLib-0.16.0/tests/doctests/wcs_idee.txt000066400000000000000000000034771321706412000202210ustar00rootroot00000000000000COWS Web Coverage Service doctest ============================ WCS Version 1.0.0 ================= >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, scratch_file >>> from owslib.wcs import WebCoverageService >>> wcs=WebCoverageService('http://www.idee.es/wcs/IDEE-WCS-UTM30N/wcsServlet') >>> wcs.version '1.0.0' >>> wcs.url 'http://www.idee.es/wcs/IDEE-WCS-UTM30N/wcsServlet' >>> wcs.identification.title 'WCS UTM30N - MDT Peninsula y Baleares' >>> wcs.identification.service 'IDEE-WCS-UTM30N' >>> wcs.provider.name #doctest: +SKIP u'Instituto Geogr\xe1fico Nacional' >>> sorted(wcs.contents.keys()) ['MDT1000_peninsula_baleares', 'MDT1000_peninsula_baleares_aspecto', 'MDT1000_peninsula_baleares_pendientes', 'MDT25_peninsula_ZIP', 'MDT25_peninsula_aspecto', 'MDT25_peninsula_pendientes', 'MDT500_peninsula_baleares', 'MDT500_peninsula_baleares_aspecto', 'MDT500_peninsula_baleares_pendientes', 'MDT_peninsula_baleares', 'MDT_peninsula_baleares_aspecto', 'MDT_peninsula_baleares_pendientes'] >>> cvg=wcs['MDT25_peninsula_pendientes'] >>> cvg.title 'MDT25 Pendientes Peninsula' >>> cast_tuple_int_list(cvg.boundingBoxWGS84) [-8, 35, 3, 43] >>> cvg.timelimits [] >>> sorted(cvg.supportedFormats) ['AsciiGrid', 'FloatGrid_Zip', 'GeoTIFF'] >>> sorted(map(lambda x: x.getcode(), cvg.supportedCRS)) ['EPSG:23028', 'EPSG:23029', 'EPSG:23030', 'EPSG:23030', 'EPSG:23031', 'EPSG:4230', 'EPSG:4326'] >>> output=wcs.getCoverage(identifier='MDT25_peninsula_pendientes',bbox=(600000,4200000,601000,4201000),crs='EPSG:23030', format='AsciiGrid', resX=25, resY=25) >>> f=open(scratch_file('test_idee.grd'), 'wb') >>> bytes_written = f.write(output.read()) >>> f.close() OWSLib-0.16.0/tests/doctests/wcs_nsidc.txt000066400000000000000000000114171321706412000204040ustar00rootroot00000000000000Web Coverage Service: #This is an example that shows how to the OWSLib wcs client to make requests from the NSIDC WCS. ==================== Version 1.1.0 ======== Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wcs import WebCoverageService >>> from tests.utils import resource_file, scratch_file >>> xml = open(resource_file('wcs_nsidc.xml')).read() >>> wcs=WebCoverageService('http://nsidc.org/cgi-bin/atlas_north', version='1.1.0', xml=xml) >>> wcs.url 'http://nsidc.org/cgi-bin/atlas_north' >>> wcs.version '1.1.0' >>> wcs.identification.service 'WCS' >>> wcs.identification.version '1.1.0' >>> wcs.identification.type 'OGC WCS' >>> wcs.identification.title 'Atlas of the Cryosphere: Northern Hemisphere' >>> wcs.identification.abstract "The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, permafrost extent and classification, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate map servers: one for the Northern Hemisphere and one for the Southern Hemisphere. In addition to providing map images and source data through Open Geospatial Consortium, Inc. (OGC) protocols (WMS, WFS, and WCS), a dynamic web interface for exploring these data is also available at http://nsidc.org/data/atlas. If you have questions, comments or suggestions, please contact NSIDC User Services at +1.303.492.6199 or nsidc@nsidc.org. The development of this map server application was supported by NASA's Earth Observing System (EOS) Program under contract NAS5-03099 and was developed using MapServer, an Open Source development environment for building spatially-enabled internet applications. To cite the Atlas of the Cryosphere: Maurer, J. 2007. Atlas of the Cryosphere. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/atlas/." >>> wcs.identification.keywords ['Arctic', 'Cryosphere', 'Earth Science', 'Ice Extent', 'Ice Sheets', 'Northern Hemisphere', 'Oceans', 'Polar', 'Sea Ice', 'Sea Ice Concentration', 'Snow/Ice', 'Snow Cover', 'Snow Melt', 'Snow Water Equivalent'] >>> wcs.identification.fees 'none' >>> wcs.identification.accessConstraints 'none' #There is no 'ResponsibleParty' information in the NCEP/NAM capabilities document, so wcs.provider is empty. #but if there was you could do: #wcs.provider.url #and.. #wcs.provider.contact.organization #wcs.provider.contact.email #wcs.provider.contact.address #etc... for region, city, postcode, country Print the ids of all layers (actually just the first 3): >>> sorted(wcs.contents.keys()) ['greenland_accumulation', 'greenland_bedrock_elevation', 'greenland_elevation', 'greenland_ice_thickness', 'greenland_surface_melt', 'sea_ice_concentration_01', 'sea_ice_concentration_02', 'sea_ice_concentration_03', 'sea_ice_concentration_04', 'sea_ice_concentration_05', 'sea_ice_concentration_06', 'sea_ice_concentration_07', 'sea_ice_concentration_08', 'sea_ice_concentration_09', 'sea_ice_concentration_10', 'sea_ice_concentration_11', 'sea_ice_concentration_12', 'seasonal_snow_classification', 'snow_extent_01', 'snow_extent_02', 'snow_extent_03', 'snow_extent_04', 'snow_extent_05', 'snow_extent_06', 'snow_extent_07', 'snow_extent_08', 'snow_extent_09', 'snow_extent_10', 'snow_extent_11', 'snow_extent_12', 'snow_water_equivalent_01', 'snow_water_equivalent_02', 'snow_water_equivalent_03', 'snow_water_equivalent_04', 'snow_water_equivalent_05', 'snow_water_equivalent_06', 'snow_water_equivalent_07', 'snow_water_equivalent_08', 'snow_water_equivalent_09', 'snow_water_equivalent_10', 'snow_water_equivalent_11', 'snow_water_equivalent_12'] #To further interrogate a single "coverage" get the coverageMetadata object #You can either do: >>> cvg= wcs.contents['sea_ice_concentration_09'] #to get it from the dictonary #or even simpler you can do: >>> cvg=wcs['sea_ice_concentration_09'] >>> cvg.boundingBoxWGS84 (-179.999998745864, 34.9037152643753, 178.959571606408, 53.7717181062498) >>> len(cvg.timepositions)>1 #The old test kept failing as the response timepositions kept changign on the server False >>> [y for y in (x.getcode() for x in cvg.supportedCRS) if y] ['EPSG:32661', 'EPSG:4326', 'EPSG:3408', 'EPSG:3410', 'EPSG:3411', 'EPSG:3413', 'EPSG:3571', 'EPSG:3572', 'EPSG:3573', 'EPSG:3574', 'EPSG:3575', 'EPSG:3576', 'EPSG:3973', 'EPSG:3975', 'EPSG:32624', 'EPSG:3857', 'EPSG:900913'] >>> cvg.supportedFormats ['image/tiff'] OWSLib-0.16.0/tests/doctests/wcs_thredds.txt000066400000000000000000000115211321706412000207350ustar00rootroot00000000000000Web Coverage Service: #This is an example that shows how to the OWSLib wcs client to make requests from the Unidata WCS. ==================== Version 1.0.0 ======== Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wcs import WebCoverageService >>> from tests.utils import scratch_file >>> wcs=WebCoverageService('http://thredds.ucar.edu/thredds/wcs/grib/NCEP/NAM/CONUS_80km/best', version='1.0.0') >>> wcs.url 'http://thredds.ucar.edu/thredds/wcs/grib/NCEP/NAM/CONUS_80km/best' >>> wcs.version '1.0.0' >>> wcs.identification.service >>> wcs.identification.version '1.0.0' >>> wcs.identification.title >>> wcs.identification.abstract >>> wcs.identification.keywords [] >>> wcs.identification.fees 'NONE' >>> wcs.identification.accessConstraints 'NONE' #There is no 'ResponsibleParty' information in the NCEP/NAM capabilities document, so wcs.provider is empty. #but if there was you could do: #wcs.provider.url #and.. #wcs.provider.contact.organization #wcs.provider.contact.email #wcs.provider.contact.address #etc... for region, city, postcode, country Print the ids of all layers (actually just the first 3): >>> sorted(wcs.contents.keys()) ['Absolute_vorticity_isobaric', 'Best_4_layer_lifted_index_layer_between_two_pressure_difference_from_ground_layer', 'Convective_Available_Potential_Energy_layer_between_two_pressure_difference_from_ground_layer', 'Convective_Available_Potential_Energy_surface', 'Convective_inhibition_layer_between_two_pressure_difference_from_ground_layer', 'Convective_inhibition_surface', 'Convective_precipitation_surface_Mixed_intervals_Accumulation', 'Geopotential_height_isobaric', 'Geopotential_height_surface', 'Geopotential_height_zeroDegC_isotherm', 'Mean_Sea_Level_Pressure_NAM_Model_Reduction_msl', 'Parcel_lifted_index_to_500_hPa_layer_between_two_pressure_difference_from_ground_layer', 'Precipitable_water_entire_atmosphere', 'Pressure_cloud_base', 'Pressure_cloud_tops', 'Pressure_maximum_wind', 'Pressure_reduced_to_MSL_msl', 'Pressure_surface', 'Pressure_tropopause', 'Relative_humidity_height_above_ground', 'Relative_humidity_isobaric', 'Relative_humidity_layer_between_two_pressure_difference_from_ground_layer', 'Relative_humidity_zeroDegC_isotherm', 'Storm_relative_helicity_layer_between_two_heights_above_ground_layer', 'Temperature_cloud_tops', 'Temperature_height_above_ground', 'Temperature_isobaric', 'Temperature_layer_between_two_pressure_difference_from_ground_layer', 'Temperature_tropopause', 'Total_precipitation_surface_Mixed_intervals_Accumulation', 'Vertical_velocity_pressure_isobaric', 'u-component_of_wind_height_above_ground', 'u-component_of_wind_isobaric', 'u-component_of_wind_layer_between_two_pressure_difference_from_ground_layer', 'u-component_of_wind_maximum_wind', 'u-component_of_wind_tropopause', 'v-component_of_wind_height_above_ground', 'v-component_of_wind_isobaric', 'v-component_of_wind_layer_between_two_pressure_difference_from_ground_layer', 'v-component_of_wind_maximum_wind', 'v-component_of_wind_tropopause'] #To further interrogate a single "coverage" get the coverageMetadata object #You can either do: >>> cvg= wcs.contents['Temperature_tropopause'] #to get it from the dictonary #or even simpler you can do: >>> cvg=wcs['Temperature_tropopause'] >>> cvg.boundingBoxWGS84 (-153.58889168336785, 11.747698754311253, -48.59839139638086, 57.48431804715324) >>> len(cvg.timepositions)>1 #The old test kept failing as the response timepositions kept changign on the server True >>> [y for y in (x.getcode() for x in cvg.supportedCRS) if y] ['EPSG:9802'] >>> cvg.supportedFormats ['GeoTIFF', 'GeoTIFF_Float', 'NetCDF3'] >>> cvg.grid.axislabels ['x', 'y'] >>> cvg.grid.dimension 2 >>> cvg.grid.lowlimits ['0', '0'] >>> cvg.grid.highlimits ['92', '64'] >>> cvg.grid.origin ['-4223.61181640625', '-832.2075805664062'] >>> cvg.grid.offsetvectors [['81.27100140115489', '0.0'], ['0.0', '81.27100467681885']] #Now we have enough information to build a getCoverage request: >>> covID='Temperature_tropopause' >>> timeRange=['2009-01-08T06:00:00', '2009-01-08T12:00:00'] #Okay, you should be able to select a range of times, but the server doesn't seem to like it. >>> timeRange=[cvg.timepositions[10]] #So for now I'll just choose one timestep (from cvg.timepositions) >>> bb=(-140, -15, 30, 55) # chosen from cvg.boundingBoxWGS84 >>> formatType='NetCDF3' # chosen from cvg.supportedFormats #Make the actual getCoverage request. >>> output=wcs.getCoverage(identifier=covID,time=timeRange,bbox=bb, format=formatType) #Then write this to a netcdf file. >>> filename = scratch_file('threddstest.nc') >>> f=open(filename, 'wb') >>> bytes_written = f.write(output.read()) >>> f.close() OWSLib-0.16.0/tests/doctests/wfs1_generic.txt000066400000000000000000000141771321706412000210120ustar00rootroot00000000000000Imports and initialize >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wfs import WebFeatureService >>> try: ... from urlparse import urlparse ... except ImportError: ... from urllib.parse import urlparse >>> from tests.utils import resource_file, sorted_url_query >>> getcapsin = open(resource_file("wfs_HSRS_GetCapabilities_1_1_0.xml"), "rb").read() >>> wfs = WebFeatureService('http://gis.bnhelp.cz/ows/crwfs', xml=getcapsin, version='1.1.0') Test the capabilities info >>> wfs.identification.service 'OGC WFS' >>> wfs.identification.version '1.1.0' >>> wfs.identification.title 'Help Service Gazeteer' >>> wfs.identification.abstract 'Vyhledavani sidel WFS' >>> wfs.identification.keywords ['Czech republic', 'gazeeteer'] >>> wfs.identification.fees 'none' >>> wfs.identification.accessconstraints 'for non profit use' >>> wfs.provider.name 'Help Service Remote Sensing, ltd.' >>> wfs.provider.url 'http://www.hsrs.cz' >>> wfs.provider.contact.email >>> wfs.provider.contact.phone >>> wfs.provider.contact.name #doctest: +SKIP u'Stanislav Hol\xfd' >>> wfs.provider.contact.organization >>> wfs.provider.contact.city >>> wfs.provider.contact.region >>> wfs.provider.contact.postcode >>> wfs.provider.contact.country Test the getfeature method >>> sorted(wfs.contents.keys()) ['kraje', 'nuts1', 'nuts2', 'nuts3', 'okresy', 'orp', 'sidla', 'states'] >>> wfs.contents['okresy'].crsOptions[0].getcodeurn() 'urn:ogc:def:crs:EPSG::4326' >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['okresy'], maxfeatures=2)) ['maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=okresy', 'version=1.1.0'] >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['okresy'], maxfeatures=2, bbox=[15,49,16,51,'urn:ogc:def:crs:EPSG:4326'])) ['bbox=49%2C15%2C51%2C16%2Curn%3Aogc%3Adef%3Acrs%3AEPSG%3A%3A4326', 'maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=okresy', 'version=1.1.0'] >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['okresy'], maxfeatures=2, bbox=[-685336,-993518,-684996,-993285])) ['bbox=-993518%2C-685336%2C-993285%2C-684996%2Curn%3Aogc%3Adef%3Acrs%3AEPSG%3A%3A4326', 'maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=okresy', 'version=1.1.0'] Test outputFormat WFS 1.0.0 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.0.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json') >>> json.dumps(json.loads(feature.read())) '{...}' WFS 1.1.0 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.1.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json') >>> json.dumps(json.loads(feature.read())) '{...}' WFS 2.0.0 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='2.0.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json') >>> json.dumps(json.loads(feature.read())) '{...}' Test srsName WFS 1.0.0 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.0.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json', srsname="EPSG:99999999") #doctest: +IGNORE_EXCEPTION_DETAIL ... Traceback (most recent call last): ... ServiceException: Unable to support srsName: EPSG:99999999 ... >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.0.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json', srsname="urn:x-ogc:def:crs:EPSG:4326") >>> json.dumps(json.loads(feature.read())) '{...}' WFS 1.1.0 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.1.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json', srsname="EPSG:99999999") #doctest: +IGNORE_EXCEPTION_DETAIL ... Traceback (most recent call last): ... ServiceException: SRSNAME EPSG:99999999 not supported. Options: urn:x-ogc:def:crs:EPSG:102715 >>> import json >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.0.0') >>> feature = wfs.getfeature(typename=['sb:Project_Area'], maxfeatures=1, propertyname=None, outputFormat='application/json', srsname="urn:x-ogc:def:crs:EPSG:4326") >>> json.dumps(json.loads(feature.read())) '{...}' Test schema WFS 1.0.0 >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.0.0') >>> schema = wfs.get_schema('footprint') >>> len(schema['properties']) 4 >>> schema['properties']['summary'] 'string' >>> schema['geometry'] 'Polygon' Test schema WFS 1.1.0 >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='1.1.0') >>> schema = wfs.get_schema('footprint') >>> len(schema['properties']) 4 >>> schema['properties']['summary'] 'string' >>> schema['geometry'] '3D Polygon' Test schema WFS 2.0.0 >>> wfs = WebFeatureService('https://www.sciencebase.gov/catalogMaps/mapping/ows/53398e51e4b0db25ad10d288', version='2.0.0') >>> schema = wfs.get_schema('footprint') >>> len(schema['properties']) 4 >>> schema['properties']['summary'] 'string' >>> schema['geometry'] '3D Polygon' OWSLib-0.16.0/tests/doctests/wfs2_generic.txt000066400000000000000000000046771321706412000210170ustar00rootroot00000000000000Imports and initialize >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wfs import WebFeatureService >>> from tests.utils import resource_file, sorted_url_query >>> getcapsin = open(resource_file("wfs_CUZK_GetCapabilities_2_0_0.xml"), 'rb').read() >>> wfs = WebFeatureService('http://services.cuzk.cz/wfs/inspire-cp-wfs.asp', xml=getcapsin, version='2.0.0') Test the capabilities info >>> wfs.identification.service 'OGC WFS' >>> wfs.identification.version '2.0.0' >>> wfs.identification.title 'CZE INSPIRE Download Service - Cadastral Parcels' >>> wfs.identification.abstract 'Cadastral Parcels - INSPIRE themes' >>> sorted(wfs.identification.keywords) ['Cadastral Parcel Boundaries', 'Cadastral Zoning polygons', 'Cadastral parcel polygons'] >>> wfs.identification.fees >>> wfs.identification.accessconstraints >>> wfs.provider.name 'Czech Office for Surveying, Mapping and Cadastre' >>> wfs.provider.url 'www.cuzk.cz' >>> wfs.provider.contact.email >>> wfs.provider.contact.phone '+420284041550' >>> wfs.provider.contact.name >>> wfs.provider.contact.organization >>> wfs.provider.contact.city >>> wfs.provider.contact.region >>> wfs.provider.contact.postcode >>> wfs.provider.contact.country Test the getfeature method >>> sorted(wfs.contents.keys()) ['CP:CadastralBoundary', 'CP:CadastralParcel', 'CP:CadastralZoning'] >>> wfs.contents['CP:CadastralBoundary'].crsOptions[0].getcodeurn() 'urn:ogc:def:crs:EPSG::102067' >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['CP:CadastralBoundary'], maxfeatures=2)) ['maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=CP%3ACadastralBoundary', 'version=2.0.0'] >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['CP:CadastralBoundary'], maxfeatures=2, bbox=[15,49,16,51,'urn:ogc:def:crs:EPSG:4326'])) ['bbox=49%2C15%2C51%2C16%2Curn%3Aogc%3Adef%3Acrs%3AEPSG%3A%3A4326', 'maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=CP%3ACadastralBoundary', 'version=2.0.0'] >>> sorted_url_query(wfs.getGETGetFeatureRequest(typename=['CP:CadastralBoundary'], maxfeatures=2, bbox=[-685336,-993518,-684996,-993285])) ['bbox=-685336%2C-993518%2C-684996%2C-993285%2Curn%3Aogc%3Adef%3Acrs%3AEPSG%3A%3A102067', 'maxfeatures=2', 'request=GetFeature', 'service=WFS', 'typename=CP%3ACadastralBoundary', 'version=2.0.0'] OWSLib-0.16.0/tests/doctests/wfs2_storedqueries.txt000066400000000000000000000013221321706412000222610ustar00rootroot00000000000000>>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wfs import WebFeatureService >>> wfs = WebFeatureService(url='http://geoserv.weichand.de/cgi-bin/test-mapserver7.cgi', version='2.0.0', timeout=30) >>> # convert list(storedqueries) into dict(storedqueries) >>> storedqueries = dict((x.id, x) for x in wfs.storedqueries) >>> storedqueries['http://inspire.ec.europa.eu/operation/download/GetSpatialDataSet'].title 'GetDataSetByIdLanguageAndCrs (TG 3.1)' >>> # convert list(parameters) into dict(parameters) >>> parameters = dict((x.name, x) for x in storedqueries['http://inspire.ec.europa.eu/operation/download/GetSpatialDataSet'].parameters) >>> parameters['CRS'].type 'xsd:string'OWSLib-0.16.0/tests/doctests/wfs_MapServerWFSCapabilities.txt000066400000000000000000000126161321706412000241070ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, resource_file >>> from owslib.wfs import WebFeatureService >>> from operator import itemgetter Fake a request to a WFS Server using saved doc from. >>> xml = open(resource_file('mapserver-wfs-cap.xml'), 'rb').read() >>> wfs = WebFeatureService('url', version='1.0', xml=xml) Test capabilities >>> wfs.updateSequence is not None True Service Identification: >>> wfs.identification.type 'MapServer WFS' >>> wfs.identification.version '1.0' >>> wfs.identification.title 'Atlas of the Cryosphere: Southern Hemisphere' >>> wfs.identification.abstract "The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate map servers: one for the Northern Hemisphere and one for the Southern Hemisphere. In addition to providing map images and source data through Open Geospatial Consortium, Inc. (OGC) protocols (WMS, WFS, and WCS), a dynamic web interface for exploring these data is also available at http://nsidc.org/data/atlas. If you have questions, comments or suggestions, please contact NSIDC User Services at +1.303.492.6199 or nsidc@nsidc.org. The development of this map server application was supported by NASA's Earth Observing System (EOS) Program under contract NAS5-03099 and was developed using MapServer, an Open Source development environment for building spatially-enabled internet applications. To cite the Atlas of the Cryosphere: Maurer, J. 2007. Atlas of the Cryosphere. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/atlas/." >>> wfs.identification.keywords ['\n Antarctica\n Cryosphere\n Earth Science\n Fronts\n Glacial Landforms/Processes\n Glaciers\n Ice Sheets\n Oceans\n Ocean Circulation\n Ocean Currents\n Polar\n Southern Hemisphere\n '] >>> wfs.identification.accessconstraints 'none' >>> wfs.identification.fees 'none' Service Provider: >>> wfs.provider.name 'MapServer WFS' >>> wfs.provider.url 'http://nsidc.org' #TODO: test contact info: #>>> wfs.provider.contact.name Test available content layers >>> sorted(wfs.contents.keys()) ['antarctic_coastline', 'antarctic_continent', 'antarctic_ice_cores', 'antarctic_ice_shelves_fill', 'antarctic_ice_shelves_outline', 'antarctic_islands', 'antarctic_islands_coastlines', 'antarctic_megadunes', 'antarctic_polar_front', 'antarctic_research_stations', 'antarctica_country_border', 'antarctica_elevation_contours', 'antarctica_islands_coastlines', 'coastlines_excluding_antarctica', 'country_borders_excluding_antarctica', 'glacier_outlines', 'glaciers', 'international_date_line', 'land_excluding_antarctica', 'south_pole_geographic', 'south_pole_geomagnetic', 'south_pole_inaccessibility', 'south_pole_magnetic', 'south_pole_of_cold', 'south_poles_wfs'] >>> sorted([wfs[layer].title for layer in wfs.contents]) ['Antarctic Polar Front', 'Antarctic coastline (includes ice shelves)', 'Antarctic continent', 'Antarctic grounding line (excludes ice shelves)', 'Antarctic ice core locations', 'Antarctic ice shelves', 'Antarctic island coastlines', 'Antarctic island coastlines', 'Antarctic islands', 'Antarctic megadunes', 'Antarctic permanent research stations', 'Antarctic suface elevation contours', 'Antarctica border', 'International Date Line', 'South Pole of Cold', 'South Pole of Inaccessibility', 'South Pole, Geographic', 'South Pole, Geomagnetic', 'South Pole, Magnetic', 'South Poles', 'coastlines (excluding Antarctica)', 'countries (excluding Antarctica)', 'glacier outlines', 'glaciers', 'land (excluding Antarctica)'] Test single item accessor >>> wfs['glaciers'].title 'glaciers' >>> wfs['glaciers'].boundingBox (-11887400000.0, -850889000.0, 557154000.0, 262891000.0, urn:ogc:def:crs:EPSG::3031) >>> cast_tuple_int_list(wfs['glaciers'].boundingBoxWGS84) [-94, 89, 64, 87] >>> [x.getcode() for x in wfs['glaciers'].crsOptions] ['EPSG:3031'] >>> wfs['glaciers'].verbOptions ['{http://www.opengis.net/wfs}Query'] Expect a KeyError for invalid names >>> wfs['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> sorted([op.name for op in wfs.operations]) ['DescribeFeatureType', 'GetCapabilities', 'GetFeature'] >>> x = sorted(wfs.getOperationByName('GetFeature').methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://nsidc.org/cgi-bin/atlas_south?'}, {'type': 'Post', 'url': 'http://nsidc.org/cgi-bin/atlas_south?'}] True >>> sorted(wfs.getOperationByName('GetFeature').formatOptions) ['{http://www.opengis.net/wfs}GML2'] Test exceptions >>> wfs.exceptions [] Lastly, test the getcapabilities method >>> wfs = WebFeatureService('http://nsidc.org/cgi-bin/atlas_south?', version='1.0') >>> xml = wfs.getcapabilities().read() >>> xml.find(b' 0 True OWSLib-0.16.0/tests/doctests/wfs_MapServerWFSFeature.txt000066400000000000000000000014261321706412000231060ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wfs import WebFeatureService Test the getfeature method >>> wfs = WebFeatureService('http://nsidc.org/cgi-bin/atlas_south?', version='1.0.0') >>> response = wfs.getfeature(typename=['glaciers'], maxfeatures=5) >>> response.read().find(' 0 True Handle service exception >>> from owslib.util import ServiceException >>> try: ... response = wfs.getfeature(typename=['totally bogus'], maxfeatures=5) ... except ServiceException as e: ... assert "msWFSGetFeature(): WFS server error. TYPENAME 'totally bogus' doesn't exist in this server. Please check the capabilities and reformulate your request." in str(e) OWSLib-0.16.0/tests/doctests/wfs_USDASSURGO.txt000066400000000000000000000013071321706412000210030ustar00rootroot00000000000000# Test ability of OWSLib.wfs to interact with USDA SSURGO WFS 1.0.0 web service # Contact e-mail: selimnairb@gmail.com >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wfs import WebFeatureService >>> wfs_filter = "Geometry -76.766960,39.283611 -76.684120,39.338394 " >>> wfs = WebFeatureService('http://SDMDataAccess.nrcs.usda.gov/Spatial/SDMWGS84Geographic.wfs', version='1.1.0', timeout=360) >>> response = wfs.getfeature(typename='mapunitpolyextended', filter=wfs_filter, propertyname=None) >>> response.read().find(' 0 True OWSLib-0.16.0/tests/doctests/wml10_cuahsi.txt000066400000000000000000000056021321706412000207230ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.waterml.wml10 import WaterML_1_0 as wml Test GetSiteInfo >>> f = open(resource_file('cuahsi_example_get_siteinfo_10.xml'), 'rb').read() >>> response = wml(f).response >>> response.site_names ['Little Bear River at Mendon Road near Mendon, Utah'] >>> site = response.sites[0] >>> sorted(site.variable_names) ['Battery voltage', 'Gage height', 'Oxygen, dissolved', 'Oxygen, dissolved percent of saturation', 'Phosphorus, total as P', 'Phosphorus, total as P, filtered', 'Solids, total Suspended', 'Specific conductance, unfiltered', 'Temperature', 'Turbidity', 'pH, unfiltered'] >>> codes = site.variable_codes >>> sorted(codes) ['USU10', 'USU11', 'USU12', 'USU13', 'USU3', 'USU32', 'USU33', 'USU34', 'USU35', 'USU36', 'USU37', 'USU39', 'USU4', 'USU40', 'USU41', 'USU5', 'USU6', 'USU7', 'USU8', 'USU9'] >>> var = site['USU9'] >>> var.unit.name 'nephelometric turbidity units' >>> var.unit.id >>> var.notes {} >>> var.no_data_value '-9999' Test GetValues >>> f = open(resource_file('cuahsi_example_get_values_10.xml')).read() >>> response = wml(f).response >>> response.variable_names ['Phosphorus, total as P'] >>> response.variable_codes ['USU39'] >>> series = response.get_series_by_variable('Phosphorus, total as P') >>> series = series[0] >>> values = series.values[0] >>> values.get_date_values() [(datetime.datetime(2008, 4, 14, 13, 0), '0.1192'), (datetime.datetime(2008, 4, 14, 13, 0), '0.114'), (datetime.datetime(2008, 4, 14, 14, 0), '0.1424'), (datetime.datetime(2008, 4, 14, 15, 0), '0.1814'), (datetime.datetime(2008, 4, 14, 16, 0), '0.3841'), (datetime.datetime(2008, 4, 14, 18, 0), '0.9124'), (datetime.datetime(2008, 4, 14, 20, 0), '0.0655'), (datetime.datetime(2008, 4, 14, 21, 0), '0.4342'), (datetime.datetime(2008, 4, 14, 22, 0), '0.9543'), (datetime.datetime(2008, 4, 14, 23, 0), '0.7308'), (datetime.datetime(2008, 4, 14, 23, 0), '0.7004'), (datetime.datetime(2008, 4, 15, 0, 0), '0.6097'), (datetime.datetime(2008, 4, 15, 1, 0), '0.5544'), (datetime.datetime(2008, 4, 15, 1, 0), '0.6182'), (datetime.datetime(2008, 4, 15, 1, 0), '0.5476'), (datetime.datetime(2008, 4, 15, 2, 0), '0.5728'), (datetime.datetime(2008, 4, 15, 2, 0), '0.369'), (datetime.datetime(2008, 4, 15, 2, 0), '0.3664'), (datetime.datetime(2008, 4, 15, 2, 0), '0.4767'), (datetime.datetime(2008, 4, 15, 3, 0), '0.3144'), (datetime.datetime(2008, 4, 15, 4, 0), '0.4517'), (datetime.datetime(2008, 4, 15, 5, 0), '0.3838'), (datetime.datetime(2008, 4, 15, 6, 0), '0.4702'), (datetime.datetime(2008, 4, 15, 7, 0), '0.389'), (datetime.datetime(2008, 4, 15, 8, 0), '0.4949'), (datetime.datetime(2008, 4, 15, 9, 0), '0.2778'), (datetime.datetime(2008, 4, 15, 10, 0), '0.3576'), (datetime.datetime(2008, 4, 15, 11, 0), '0.3618'), (datetime.datetime(2008, 4, 15, 12, 0), '0.2803')] OWSLib-0.16.0/tests/doctests/wml11_cuahsi.txt000066400000000000000000000210241321706412000207200ustar00rootroot00000000000000Using WaterML 1.1 for examples Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.waterml.wml11 import WaterML_1_1 as wml An example GetSites response (from cuahsi) >>> f = open(resource_file('cuahsi_example_all_sites.xml'), 'rb').read() >>> sites = wml(f).response Can view the queryInfo structure for information about the query >>> sites.query_info.creation_time datetime.datetime(2009, 6, 12, 10, 47, 54, 531250, tzinfo=tzoffset(None, -25200)) >>> sites.query_info.notes ['ALL Sites(empty request)'] >>> sites.query_info.criteria.method_called 'GetSites' Get a list of codes for the sites returned >>> codes = sites.site_codes >>> sorted(codes) [['10105900'], ['USU-LBR-Confluence'], ['USU-LBR-EFLower'], ['USU-LBR-EFRepeater'], ['USU-LBR-EFWeather'], ['USU-LBR-ExpFarm'], ['USU-LBR-Mendon'], ['USU-LBR-Paradise'], ['USU-LBR-ParadiseRepeater'], ['USU-LBR-SFLower'], ['USU-LBR-SFUpper'], ['USU-LBR-Wellsville']] Get the names ofthe sites >>> sorted(sites.site_names) ['East Fork Little Bear River Radio Repeater near Avon, Utah', 'East Fork Little Bear River at Paradise Canal Diversion near Avon, Utah', 'Little Bear River Upper Weather Station near Avon, Utah', 'Little Bear River at McMurdy Hollow near Paradise, Utah', 'Little Bear River at Mendon Road near Mendon, Utah', 'Little Bear River at Paradise, Utah', 'Little Bear River below Confluence of South and East Forks near Avon, Utah', 'Little Bear River near Wellsville, Utah', 'Radio Repeater near Paradise, Utah', 'South Fork Little Bear River above Davenport Creek near Avon, Utah', 'South Fork Little Bear River below Davenport Creek near Avon, Utah', 'Utah State University Experimental Farm near Wellsville, Utah'] Get a site to view it in more detail >>> site = sites[codes[0][0]] >>> site.geo_coords [('-111.946402', '41.718473')] >>> site.latitudes ['41.718473'] >>> site.longitudes ['-111.946402'] >>> info = site.site_info >>> info.notes [] >>> x = info.site_properties >>> x == {'County': 'Cache', 'PosAccuracy_m': '1', 'State': 'Utah', 'Site Comments': 'Located below county road bridge at Mendon Road crossing'} True >>> info.altname >>> info.elevation '1345' An example GetSiteInfo response >>> f = open(resource_file('cuahsi_example_siteinfo_multiple.xml')).read() >>> sites = wml(f).response >>> sites.query_info.criteria.method_called 'GetSiteInfo' List codes and names of the sites >>> codes = sites.site_codes >>> sorted(codes) [['USU-LBR-Mendon'], ['USU-LBR-Wellsville']] >>> sorted(sites.site_names) ['Little Bear River at Mendon Road near Mendon, Utah', 'Little Bear River near Wellsville, Utah'] Get a site for a closer look >>> site = sites[codes[1][0]] >>> site.geo_coords [('-111.917649', '41.643457')] Get the (first) catalog of series for the site >>> catalog = site[0] Get a series from the catalog for a closer look >>> series = catalog[3] >>> series.properties {} >>> series.begin_date_time datetime.datetime(2007, 11, 5, 14, 30) >>> series.end_date_time datetime.datetime(2008, 4, 5, 20, 30) >>> series.method_id '23' >>> series.source_id '2' >>> series.value_count '7309' >>> series.value_type 'Field Observation' >>> series.name 'Turbidity' >>> series.organization 'Utah State University Utah Water Research Laboratory' List variable names and codes >>> sorted(site.variable_names) ['Battery voltage', 'Gage height', 'Oxygen, dissolved', 'Oxygen, dissolved percent of saturation', 'Phosphorus, total as P', 'Phosphorus, total as P, filtered', 'Solids, total Suspended', 'Specific conductance, unfiltered', 'Temperature', 'Turbidity', 'pH, unfiltered'] >>> sorted(site.variable_codes) ['USU10', 'USU13', 'USU3', 'USU32', 'USU33', 'USU34', 'USU35', 'USU36', 'USU39', 'USU4', 'USU40', 'USU41', 'USU5', 'USU6', 'USU7', 'USU8', 'USU9'] Get a variable by its code >>> variable = site['USU7'] >>> variable.variable_name 'Turbidity' >>> variable.properties {} >>> variable.speciation 'Not Applicable' >>> variable.unit.name 'nephelometric turbidity units' >>> variable.time_scale.unit.name 'second' Example GetValues response >>> f = open(resource_file('cuahsi_example_get_values.xml')).read() >>> series = wml(f).response >>> series.query_info.criteria.method_called 'GetValuesForASite' List the names of the series returned (usually None) >>> series.series_names [None, None, None, None, None, None, None, None, None, None, None, None] List the variables and their codes >>> sorted(series.variable_names) ['Battery Voltage', 'Battery voltage', 'Gage height', 'Temperature', 'Turbidity'] >>> codes = series.variable_codes >>> sorted(codes) ['SDSC45', 'USU10', 'USU11', 'USU12', 'USU13', 'USU3', 'USU4', 'USU5', 'USU6', 'USU7', 'USU8', 'USU9'] Get variables by code >>> var = series.get_series_by_variable(var_code='USU4') Get the first values set from the first variable retrieved from the code >>> vals = var[0].values[0] List (in tuple) the dates and their corresponding measurements >>> sorted(vals.get_date_values()) [(datetime.datetime(2005, 8, 5, 0, 0), '34.53'), (datetime.datetime(2005, 8, 5, 0, 30), '37.12'), (datetime.datetime(2005, 8, 5, 1, 0), '35.97'), (datetime.datetime(2005, 8, 5, 1, 30), '35.78'), (datetime.datetime(2005, 8, 5, 2, 0), '35.68'), (datetime.datetime(2005, 8, 5, 2, 30), '36.08'), (datetime.datetime(2005, 8, 5, 3, 0), '37.8'), (datetime.datetime(2005, 8, 5, 3, 30), '37.93'), (datetime.datetime(2005, 8, 5, 4, 0), '38.88'), (datetime.datetime(2005, 8, 5, 4, 30), '37.34'), (datetime.datetime(2005, 8, 5, 5, 0), '35.15'), (datetime.datetime(2005, 8, 5, 5, 30), '35.96'), (datetime.datetime(2005, 8, 5, 6, 0), '35.62'), (datetime.datetime(2005, 8, 5, 6, 30), '34.72'), (datetime.datetime(2005, 8, 5, 7, 0), '34.7'), (datetime.datetime(2005, 8, 5, 7, 30), '33.54'), (datetime.datetime(2005, 8, 5, 8, 0), '34.98'), (datetime.datetime(2005, 8, 5, 8, 30), '31.65'), (datetime.datetime(2005, 8, 5, 9, 0), '32.49'), (datetime.datetime(2005, 8, 5, 9, 30), '32.78'), (datetime.datetime(2005, 8, 5, 10, 0), '30.58'), (datetime.datetime(2005, 8, 5, 10, 30), '32.8'), (datetime.datetime(2005, 8, 5, 11, 0), '31.83'), (datetime.datetime(2005, 8, 5, 11, 30), '30.71'), (datetime.datetime(2005, 8, 5, 12, 0), '30.82'), (datetime.datetime(2005, 8, 5, 12, 30), '29.72'), (datetime.datetime(2005, 8, 5, 13, 0), '27.05'), (datetime.datetime(2005, 8, 5, 13, 30), '25.5'), (datetime.datetime(2005, 8, 5, 14, 0), '24.69'), (datetime.datetime(2005, 8, 5, 14, 30), '26.03'), (datetime.datetime(2005, 8, 5, 15, 0), '25.55'), (datetime.datetime(2005, 8, 5, 15, 30), '25.96'), (datetime.datetime(2005, 8, 5, 16, 0), '24.72'), (datetime.datetime(2005, 8, 5, 16, 30), '23.36'), (datetime.datetime(2005, 8, 5, 17, 0), '24.21'), (datetime.datetime(2005, 8, 5, 17, 30), '25.61'), (datetime.datetime(2005, 8, 5, 18, 0), '24.73'), (datetime.datetime(2005, 8, 5, 18, 30), '25.73'), (datetime.datetime(2005, 8, 5, 19, 0), '24.76'), (datetime.datetime(2005, 8, 5, 19, 30), '24.96'), (datetime.datetime(2005, 8, 5, 20, 0), '25.69'), (datetime.datetime(2005, 8, 5, 20, 30), '27.34'), (datetime.datetime(2005, 8, 5, 21, 0), '27.14'), (datetime.datetime(2005, 8, 5, 21, 30), '27.7'), (datetime.datetime(2005, 8, 5, 22, 0), '28.88'), (datetime.datetime(2005, 8, 5, 22, 30), '30.44'), (datetime.datetime(2005, 8, 5, 23, 0), '32.14'), (datetime.datetime(2005, 8, 5, 23, 30), '34.02'), (datetime.datetime(2005, 8, 6, 0, 0), '33.61')] Example GetVariables response >>> f = open(resource_file('cuahsi_example_get_variables.xml')).read() >>> varis = wml(f).response Just a list of variables >>> codes = varis.variable_codes >>> sorted(codes) ['SDSC45', 'USU10', 'USU11', 'USU12', 'USU13', 'USU14', 'USU15', 'USU16', 'USU17', 'USU18', 'USU19', 'USU20', 'USU21', 'USU22', 'USU23', 'USU24', 'USU25', 'USU26', 'USU27', 'USU28', 'USU29', 'USU3', 'USU30', 'USU31', 'USU32', 'USU33', 'USU34', 'USU35', 'USU36', 'USU37', 'USU38', 'USU39', 'USU4', 'USU40', 'USU41', 'USU42', 'USU43', 'USU5', 'USU6', 'USU7', 'USU8', 'USU9'] >>> sorted(varis.variable_names) ['Barometric pressure', 'Battery Voltage', 'Battery voltage', 'Discharge', 'Gage height', 'Oxygen, dissolved', 'Oxygen, dissolved percent of saturation', 'Phosphorus, total as P', 'Phosphorus, total as P, filtered', 'Precipitation', 'Radiation, incoming shortwave', 'Relative humidity', 'Solids, total Suspended', 'Specific conductance, unfiltered', 'Temperature', 'Turbidity', 'Wind direction', 'Wind speed', 'pH, unfiltered'] >>> var = varis[codes[10]] >>> var.variable_name 'Gage height' >>> var.no_data_value '-9999' >>> var.properties {} >>> var.unit.name 'international foot' OWSLib-0.16.0/tests/doctests/wms_GeoServerCapabilities.txt000066400000000000000000000075561321706412000235420ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, cast_tuple_int_list_srs, resource_file >>> from owslib.wms import WebMapService Fake a request to a WMS Server using saved doc from GeoServer, using a subset of the sample data distributed with the installer. http://localhost:8080/geoserver/wms?request=GetCapabilities >>> xml = open(resource_file('wms_geoserver-cap.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=xml) Test capabilities >>> wms.identification.type 'OGC:WMS' >>> wms.identification.title 'My GeoServer WMS' >>> wms.identification.abstract 'This is a description of your Web Map Server.' >>> wms.provider.url 'http://localhost:8080/geoserver/wms' >>> wms.identification.keywords ['WFS', 'WMS', 'GEOSERVER'] >>> p = wms.provider.contact >>> p.name >>> p.email Test available content layers >>> 'opengeo:poi' in wms.contents.keys() True >>> layers=[wms[layer].title for layer in wms.contents] >>> 'Points of Interest' in layers True Test single item accessor >>> wms['opengeo:poi'].title 'Points of Interest' >>> cast_tuple_int_list_srs(wms['opengeo:poi'].boundingBox) [-74, 40, -74, 40, 'EPSG:4326'] >>> cast_tuple_int_list(wms['opengeo:poi'].boundingBoxWGS84) [-74, 40, -74, 40] >>> wms['opengeo:poi'].crsOptions ['EPSG:4326'] >>> x = wms['opengeo:poi'].attribution >>> x == {'url': 'http://svn.codehaus.org/geoserver/trunk/data/release/data/', 'logo_size': (353, 112), 'logo_url': 'http://geoserver.org/s/1518/25/0.1/_/download/resources/com.atlassian.confluence.themes.geoserver%3Ageoserver/chrome/geoserver-logo.png', 'title': 'GeoServer Sample Data'} True >>> x = wms['opengeo:poi'].styles >>> x == {'point': {'legend': 'http://localhost:8080/geoserver/wms?request=GetLegendGraphic&format=image%2Fpng&width=20&height=20&layer=poi', 'title': 'A boring default style'}} True Test nested layer >>> wms['parent_layer'].title 'Parent Layer' >>> wms['parent_layer'].queryable 0 >>> len(wms['parent_layer'].children) 1 >>> wms['parent_layer'].children[0].title 'Child Layer' >>> len(wms['child_layer'].children) 0 >>> wms['child_layer'].parent.title 'Parent Layer' Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap', 'GetFeatureInfo', 'DescribeLayer', 'GetLegendGraphic'] >>> x = wms.getOperationByName('GetMap').methods >>> x == [{'type': 'Get', 'url': 'http://localhost:8080/geoserver/wms?SERVICE=WMS&'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/png', 'application/atom xml', 'application/atom+xml', 'application/openlayers', 'application/pdf', 'application/rss xml', 'application/rss+xml', 'application/vnd.google-earth.kml', 'application/vnd.google-earth.kml xml', 'application/vnd.google-earth.kml+xml', 'application/vnd.google-earth.kmz', 'application/vnd.google-earth.kmz xml', 'application/vnd.google-earth.kmz+xml', 'atom', 'image/geotiff', 'image/geotiff8', 'image/gif', 'image/jpeg', 'image/png8', 'image/svg', 'image/svg xml', 'image/svg+xml', 'image/tiff', 'image/tiff8', 'kml', 'kmz', 'openlayers', 'rss'] Test exceptions >>> wms.exceptions ['application/vnd.ogc.se_xml', 'application/vnd.ogc.se_inimage'] Lastly, test the getcapabilities method # >>> wms = WebMapService('http://wms.telascience.org/cgi-bin/ngBM_wms?', version='1.1.1') # >>> xml = wms.getcapabilities().read() # >>> xml.find('') > 0 # True OWSLib-0.16.0/tests/doctests/wms_JPLCapabilities.txt000066400000000000000000000103221321706412000222470ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file >>> import os Fake a request to a WMS Server using saved doc from http://wms.jpl.nasa.gov/wms.cgi. >>> xml = open(resource_file('wms_JPLCapabilities.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=xml) Test capabilities ----------------- >>> wms.identification.type 'OGC:WMS' >>> wms.identification.version '1.1.1' >>> wms.identification.title 'JPL Global Imagery Service' >>> wms.identification.abstract 'WMS Server maintained by JPL, worldwide satellite imagery.' >>> wms.identification.keywords ['ImageryBaseMapsEarthCover', 'Imagery', 'BaseMaps', 'EarthCover', 'JPL', 'Jet Propulsion Laboratory', 'Landsat', 'WMS', 'SLD', 'Global'] >>> wms.identification.accessconstraints 'Server is load limited' >>> wms.identification.fees 'none' >>> wms.provider.name 'JPL' >>> wms.provider.url 'http://OnEarth.jpl.nasa.gov/index.html' Check contact info (some of it is missing) >>> wms.provider.contact.name 'Lucian Plesea' >>> wms.provider.contact.email 'lucian.plesea@jpl.nasa.gov' >>> wms.provider.contact.address >>> wms.provider.contact.city >>> wms.provider.contact.country >>> wms.provider.contact.region >>> wms.provider.contact.postcode >>> wms.provider.contact.organization 'JPL' >>> wms.provider.contact.position Test available content layers >>> isinstance(wms.items(), list) True >>> type(wms.contents) NOTE: Not sure this dictionary interface is right...?? >>> sorted(wms.contents.keys()) ['BMNG', 'daily_afternoon', 'daily_planet', 'gdem', 'global_mosaic', 'global_mosaic_base', 'huemapped_srtm', 'modis', 'srtm_mag', 'srtmplus', 'us_colordem', 'us_elevation', 'us_landsat_wgs84', 'us_ned', 'worldwind_dem'] >>> sorted([wms[layer].id for layer in wms.contents]) ['BMNG', 'daily_afternoon', 'daily_planet', 'gdem', 'global_mosaic', 'global_mosaic_base', 'huemapped_srtm', 'modis', 'srtm_mag', 'srtmplus', 'us_colordem', 'us_elevation', 'us_landsat_wgs84', 'us_ned', 'worldwind_dem'] Test single item accessor >>> wms['global_mosaic'].title 'WMS Global Mosaic, pan sharpened' >>> wms['global_mosaic'].keywords [] ['GlobalMosaic', 'Imagery', 'BaseMaps', 'EarthCover', 'JPL', 'Jet Propulsion Laboratory', 'Landsat', 'WMS', 'SLD', 'Global'] >>> wms['global_mosaic'].boundingBox >>> wms['global_mosaic'].boundingBoxWGS84 (-180.0, -60.0, 180.0, 84.0) >>> sorted(wms['global_mosaic'].crsOptions) ['AUTO:42003', 'EPSG:4326'] >>> x = wms['global_mosaic'].styles >>> x == {'pseudo_bright': {'title': 'Pseudo-color image (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'pseudo': {'title': '(default) Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping), gamma 1.5'}, 'visual': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping), gamma 1.5'}, 'pseudo_low': {'title': 'Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping)'}, 'visual_low': {'title': 'Real-color image, pan sharpened (Uses the visual bands, 321 mapping)'}, 'visual_bright': {'title': 'Real-color image (Uses the visual bands, 321 mapping), gamma 1.5'}} True Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> sorted([op.name for op in wms.operations]) ['GetCapabilities', 'GetMap', 'GetTileService'] >>> x = wms.getOperationByName('GetMap').methods >>> x == [{'type': 'Get', 'url': 'http://wms.jpl.nasa.gov/wms.cgi?'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/jpeg', 'image/png', 'image/geotiff', 'image/tiff', 'application/vnd.google-earth.kml+xml'] Test exceptions >>> wms.exceptions ['application/vnd.ogc.se_xml'] Lastly, test the getcapabilities and getmap methods >>> wms = WebMapService('http://giswebservices.massgis.state.ma.us/geoserver/wms', version='1.1.1') OWSLib-0.16.0/tests/doctests/wms_MesonetCapabilities.txt000066400000000000000000000053371321706412000232460ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file >>> from operator import itemgetter Fake a request to a WMS Server using saved doc from http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi? >>> xml = open(resource_file('wms_mesonet-caps.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=xml) >>> wms.request is None True Test capabilities ----------------- >>> wms.identification.type 'OGC:WMS' >>> wms.identification.version '1.1.1' >>> wms.identification.title 'IEM WMS Service' >>> wms.identification.abstract 'IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.' >>> wms.identification.keywords [] >>> wms.identification.accessconstraints 'None' Test available content layers >>> sorted(wms.contents.keys()) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] >>> sorted([wms[layer].id for layer in wms.contents]) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] Test single item accessor >>> wms['time_idx'].title 'NEXRAD BASE REFLECT' >>> wms['time_idx'].keywords [] >>> wms['time_idx'].boundingBox (-126.0, 24.0, -66.0, 50.0, 'EPSG:4326') >>> wms['time_idx'].boundingBoxWGS84 (-126.0, 24.0, -66.0, 50.0) >>> sorted(wms['time_idx'].crsOptions) ['EPSG:102100', 'EPSG:3857', 'EPSG:4326', 'EPSG:900913'] >>> wms['time_idx'].styles {} >>> wms['time_idx'].timepositions ['1995-01-01/2013-12-31/PT5M'] >>> wms['time_idx'].defaulttimeposition '2006-06-23T03:10:00Z' >>> wms['nexrad_base_reflect'].timepositions >>> wms['nexrad_base_reflect'].defaulttimeposition Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap', 'GetFeatureInfo', 'DescribeLayer', 'GetLegendGraphic', 'GetStyles'] >>> x = sorted(wms.getOperationByName('GetMap').methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?'}, {'type': 'Post', 'url': 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/png', 'image/jpeg', 'image/gif', 'image/png; mode=8bit', 'application/x-pdf', 'image/svg+xml', 'image/tiff'] Test exceptions >>> wms.exceptions ['application/vnd.ogc.se_xml', 'application/vnd.ogc.se_inimage', 'application/vnd.ogc.se_blank'] OWSLib-0.16.0/tests/doctests/wms_MesonetCapabilities_130.txt000066400000000000000000000053111321706412000236210ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file, cast_tuple_int_list, cast_tuple_int_list_srs >>> from operator import itemgetter Fake a request to a WMS Server (1.3.0) using saved doc from http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi? >>> xml = open(resource_file('wms_mesonet-caps-130.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.3.0', xml=xml) Test capabilities ----------------- >>> wms.identification.type 'WMS' >>> wms.identification.version '1.3.0' >>> wms.identification.title 'IEM WMS Service' >>> wms.identification.abstract 'IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.' >>> wms.identification.keywords [] >>> wms.identification.accessconstraints 'None' Test available content layers >>> sorted(wms.contents.keys()) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] >>> sorted([wms[layer].id for layer in wms.contents]) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] Test single item accessor >>> wms['time_idx'].title 'NEXRAD BASE REFLECT' >>> wms['time_idx'].keywords [] >>> cast_tuple_int_list_srs(wms['time_idx'].boundingBox) [-126, 24, -66, 50, 'EPSG:4326'] >>> cast_tuple_int_list(wms['time_idx'].boundingBoxWGS84) [-126, 24, -66, 50] >>> sorted(wms['time_idx'].crsOptions) ['EPSG:102100', 'EPSG:3857', 'EPSG:4326', 'EPSG:900913'] >>> wms['time_idx'].styles {} >>> wms['time_idx'].timepositions ['1995-01-01/2015-12-31/PT5M'] >>> wms['time_idx'].defaulttimeposition '2006-06-23T03:10:00Z' >>> wms['nexrad_base_reflect'].timepositions >>> wms['nexrad_base_reflect'].defaulttimeposition Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap', 'GetFeatureInfo', 'DescribeLayer', 'GetLegendGraphic', 'GetStyles'] >>> x = sorted(wms.getOperationByName('GetMap').methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?'}, {'type': 'Post', 'url': 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/png', 'image/jpeg', 'image/gif', 'image/png; mode=8bit', 'application/x-pdf', 'image/svg+xml', 'image/tiff'] Test exceptions >>> wms.exceptions ['XML', 'INIMAGE', 'BLANK'] OWSLib-0.16.0/tests/doctests/wms_MesonetCapabilities_130_bom.txt000066400000000000000000000024121321706412000244550ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file, cast_tuple_int_list, cast_tuple_int_list_srs >>> from operator import itemgetter Fake a request to a WMS Server (1.3.0) using saved doc from http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi? and modified to start with BOM >>> xml = open(resource_file('wms_mesonet-caps-130.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.3.0', xml=xml) Test capabilities ----------------- >>> wms.identification.type 'WMS' >>> wms.identification.version '1.3.0' >>> wms.identification.title 'IEM WMS Service' >>> wms.identification.abstract 'IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.' >>> wms.identification.keywords [] >>> wms.identification.accessconstraints 'None' Test available content layers >>> sorted(wms.contents.keys()) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] >>> sorted([wms[layer].id for layer in wms.contents]) ['nexrad-n0r-wmst', 'nexrad_base_reflect', 'time_idx'] Test single item accessor >>> wms['time_idx'].title 'NEXRAD BASE REFLECT'OWSLib-0.16.0/tests/doctests/wms_TelaCapabilities.txt000066400000000000000000000050671321706412000225210ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file >>> from operator import itemgetter Fake a request to a WMS Server using saved doc from telascience.org. http://wms.telascience.org/cgi-bin/ngBM_wms? >>> xml = open(resource_file('wms_Telascience.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=xml) Test capabilities >>> wms.identification.type 'OGC:WMS' >>> wms.identification.title 'BM' >>> wms.identification.abstract 'Blue Marble 200409' >>> wms.provider.url 'http://wms.telascience.org/cgi-bin/ngBM_wms?' >>> wms.identification.keywords [] >>> p = wms.provider.contact >>> p.name 'Norman Vine' >>> p.email 'nhv@cooa.whoi.edu' Test available content layers >>> sorted(wms.contents.keys()) ['USGS_1ft_San_Diego', 'ngBM', 'world.topo.bathy.200409'] >>> sorted([wms[layer].title for layer in wms.contents]) ['BM', 'USGS 1ft San Diego', 'world.topo.bathy.200409'] Test single item accessor >>> wms['world.topo.bathy.200409'].title 'world.topo.bathy.200409' >>> wms['world.topo.bathy.200409'].boundingBox (-180.0, -90.0, 180.0, 90.0, 'EPSG:4326') >>> wms['world.topo.bathy.200409'].boundingBoxWGS84 (-180.0, -90.0, 180.0, 90.0) >>> sorted(wms['world.topo.bathy.200409'].crsOptions) ['EPSG:4326', 'init=epsg:4326'] >>> wms['world.topo.bathy.200409'].styles {} Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> sorted([op.name for op in wms.operations]) ['DescribeLayer', 'GetCapabilities', 'GetFeatureInfo', 'GetLegendGraphic', 'GetMap'] >>> x = sorted(wms.getOperationByName('GetMap').methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://wms.telascience.org/cgi-bin/ngBM_wms?'}, {'type': 'Post', 'url': 'http://wms.telascience.org/cgi-bin/ngBM_wms?'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/gif', 'image/png', 'image/jpeg', 'image/wbmp', 'image/tiff', 'image/png; mode=24bit'] Test exceptions >>> wms.exceptions ['application/vnd.ogc.se_xml', 'application/vnd.ogc.se_inimage', 'application/vnd.ogc.se_blank'] Lastly, test the getcapabilities method # LOOK: This WMS server no longer exists, so we are only testing the local XML file OWSLib-0.16.0/tests/doctests/wms_geoserver_mass_gis.txt000066400000000000000000000075001321706412000232020ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import cast_tuple_int_list, cast_tuple_int_list_srs, resource_file, scratch_file >>> import os Fake a request to a GeoServer WMS Server using saved doc from http://giswebservices.massgis.state.ma.us/geoserver/wms >>> xml = open(resource_file('wms_mass_gis-caps.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.1.1', xml=xml) Test capabilities ----------------- >>> wms.updateSequence is not None True >>> wms.identification.type 'OGC:WMS' >>> wms.identification.version '1.1.1' >>> wms.identification.title 'Massachusetts Data from MassGIS (GeoServer)' >>> wms.identification.abstract 'Statewide Massachusetts data served by MassGIS via GeoServer.' >>> wms.identification.keywords ['WMS', 'GEOSERVER', 'Massachusetts', 'MassGIS'] >>> wms.identification.accessconstraints 'NONE' >>> wms.identification.fees 'NONE' >>> wms.provider.url 'http://giswebservices.massgis.state.ma.us/geoserver/wms' Check contact info (some of it is missing) >>> wms.provider.contact.name 'Aleda Freeman' >>> wms.provider.contact.email 'aleda.freeman@state.ma.us' >>> wms.provider.contact.address '1 Ashburton Pl, Room 1601' >>> wms.provider.contact.city 'Boston' >>> wms.provider.contact.country 'USA' >>> wms.provider.contact.region 'MA' >>> wms.provider.contact.postcode '02114' >>> wms.provider.contact.organization 'MassGIS - Information Technology Division' >>> wms.provider.contact.position 'GIS Programmer' Test available content layers >>> isinstance(wms.items(), list) True >>> type(wms.contents) Test single item accessor >>> wms['massgis:GISDATA.SHORELINES_ARC'].title 'Shoreline Change' >>> wms['massgis:GISDATA.SHORELINES_ARC'].keywords ['MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_shorelines_arc.htm', 'Change', 'GISDATA.SHORELINES_ARC', 'Shoreline', 'massgis_sde'] >>> cast_tuple_int_list_srs(wms['massgis:GISDATA.SHORELINES_ARC'].boundingBox) [231474, 777443, 331004, 958511, 'EPSG:26986'] >>> cast_tuple_int_list(wms['massgis:GISDATA.SHORELINES_ARC'].boundingBoxWGS84) [-71, 41, -69, 42] >>> x = wms['massgis:GISDATA.SHORELINES_ARC'].styles >>> x == {'GISDATA.SHORELINES_ARC::Default': {'legend': 'http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&format=image%2Fpng&width=20&height=20&layer=GISDATA.SHORELINES_ARC', 'title': None}} True Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap', 'GetFeatureInfo', 'DescribeLayer', 'GetLegendGraphic'] >>> x = wms.getOperationByName('GetMap').methods >>> x == [{'type' : 'Get', 'url': 'http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&'}] True >>> len(wms.getOperationByName('GetMap').formatOptions) 29 Test exceptions >>> wms.exceptions ['application/vnd.ogc.se_xml', 'application/vnd.ogc.se_inimage'] Lastly, test the getcapabilities and getmap methods >>> wms = WebMapService('http://giswebservices.massgis.state.ma.us/geoserver/wms', version='1.1.1', timeout=120) >>> img = wms.getmap(layers=['massgis:GISDATA.SHORELINES_ARC'], styles=[''], srs='EPSG:4326', bbox=(-70.8, 42, -70, 42.8), size=(300, 300), format='image/jpeg', transparent=True) >>> out = open(scratch_file('massgis_shoreline.jpg'), 'wb') >>> bytes_written = out.write(img.read()) >>> out.close() OWSLib-0.16.0/tests/doctests/wms_getfeatureinfo.txt000066400000000000000000000027721321706412000223310ustar00rootroot00000000000000>>> from owslib.wms import WebMapService >>> wms = WebMapService('http://geoserv.weichand.de:8080/geoserver/wms') >>> res1 = wms.getfeatureinfo(layers=['bvv:lkr_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', info_format="text/html", xy=(250,250)) >>> html_string1 = res1.read().decode("utf-8") >>> ('lkr_ex' in html_string1) True >>> ('gmd_ex' in html_string1) False >>> res2 = wms.getfeatureinfo(layers=['bvv:lkr_ex','bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', info_format="text/html", xy=(250,250)) >>> html_string2 = res2.read().decode("utf-8") >>> ('lkr_ex' in html_string2) True >>> ('gmd_ex' in html_string2) True >>> res3 = wms.getfeatureinfo(layers=['bvv:lkr_ex','bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', query_layers=['bvv:lkr_ex'], info_format="text/html", xy=(250,250)) >>> wms.request 'http://geoserv.weichand.de:8080/geoserver/wms?SERVICE=WMS&layers=bvv%3Alkr_ex%2Cbvv%3Agmd_ex&styles=&feature_count=20&y=250&query_layers=bvv%3Alkr_ex&service=WMS&srs=EPSG%3A31468&format=image%2Fjpeg&request=GetFeatureInfo&bgcolor=0xFFFFFF&height=500&width=500&version=1.1.1&bbox=4500000%2C5500000%2C4500500%2C5500500&kwargs=%7B%7D&exceptions=application%2Fvnd.ogc.se_xml&x=250&info_format=text%2Fhtml&transparent=FALSE' >>> html_string3 = res3.read().decode("utf-8") >>> ('lkr_ex' in html_string3) True >>> ('gmd_ex' in html_string3) False OWSLib-0.16.0/tests/doctests/wms_getfeatureinfo_130.txt000066400000000000000000000021251321706412000227040ustar00rootroot00000000000000>>> from owslib.wms import WebMapService >>> wms = WebMapService('http://geoserv.weichand.de:8080/geoserver/wms', version='1.3.0') >>> res1 = wms.getfeatureinfo(layers=['bvv:lkr_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', info_format="text/html", xy=(250,250)) >>> html_string1 = res1.read().decode("utf-8") >>> ('lkr_ex' in html_string1) True >>> ('gmd_ex' in html_string1) False >>> res2 = wms.getfeatureinfo(layers=['bvv:lkr_ex','bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', info_format="text/html", xy=(250,250)) >>> html_string2 = res2.read().decode("utf-8") >>> ('lkr_ex' in html_string2) True >>> ('gmd_ex' in html_string2) True >>> res3 = wms.getfeatureinfo(layers=['bvv:lkr_ex','bvv:gmd_ex'], srs='EPSG:31468', bbox=(4500000,5500000,4500500,5500500), size=(500,500), format='image/jpeg', query_layers=['bvv:lkr_ex'], info_format="text/html", xy=(250,250)) >>> html_string3 = res3.read().decode("utf-8") >>> ('lkr_ex' in html_string3) True >>> ('gmd_ex' in html_string3) False OWSLib-0.16.0/tests/doctests/wms_getmap.txt000066400000000000000000000052001321706412000205640ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from owslib.util import ServiceException GetMap Tests against live services (pulled from the docstrings) (images aren't saved) MESONET GetMap 1.1.1 >>> url = 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi' >>> wms = WebMapService(url, version='1.1.1') >>> wms.request 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?service=WMS&request=GetCapabilities&version=1.1.1' >>> rsp = wms.getmap(layers=['nexrad_base_reflect'], styles=['default'], srs='EPSG:4326', bbox=(-126, 24, -66, 50), size=(250, 250), format='image/jpeg', transparent=True) >>> type(rsp) GetMap 1.1.1 ServiceException for an invalid CRS >>> try: ... rsp = wms.getmap(layers=['nexrad_base_reflect'], styles=['default'], srs='EPSG:4328', bbox=(-126, 24, -66, 50), size=(250, 250), format='image/jpeg', transparent=True) ... except ServiceException as e: ... assert "msWMSLoadGetMapParams(): WMS server error. Invalid SRS given : SRS must be valid for all requested layers." in str(e) GetMap 1.3.0 >>> url = 'http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi' >>> wms = WebMapService(url, version='1.3.0') >>> rsp = wms.getmap(layers=['nexrad_base_reflect'], styles=['default'], srs='EPSG:4326', bbox=(-126, 24, -66, 50), size=(250, 250), format='image/jpeg', transparent=True) >>> type(rsp) GetMap 1.3.0 ServiceException for an invalid CRS >>> try: ... rsp = wms.getmap(layers=['nexrad_base_reflect'], styles=['default'], srs='EPSG:4328', bbox=(-126, 24, -66, 50), size=(250, 250), format='image/jpeg', transparent=True) ... except ServiceException as e: ... assert "msWMSLoadGetMapParams(): WMS server error. Invalid CRS given : CRS must be valid for all requested layers." in str(e) National Map >>> url = 'https://services.nationalmap.gov/ArcGIS/services/geonames/MapServer/WMSServer' >>> wms = WebMapService(url, version='1.3.0') >>> rsp = wms.getmap(layers=['3'], styles=['default'], srs='CRS:84', bbox=(-176.646, 17.7016, -64.8017, 71.2854), size=(500, 300), format='image/png', transparent=True) >>> type(rsp) >>> wms.request 'https://services.nationalmap.gov/arcgis/services/geonames/MapServer/WmsServer?layers=3&styles=default&service=WMS&crs=CRS%3A84&format=image%2Fpng&request=GetMap&bgcolor=0xFFFFFF&height=300&width=500&version=1.3.0&bbox=-176.646%2C17.7016%2C-64.8017%2C71.2854&exceptions=XML&transparent=TRUE' OWSLib-0.16.0/tests/doctests/wms_nationalatlas_getcapabilities_130.txt000066400000000000000000000060631321706412000257450ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file, cast_tuple_int_list, cast_tuple_int_list_srs >>> from operator import itemgetter Fake a request to a WMS Server (1.3.0) using saved doc from http://webservices.nationalatlas.gov/wms? >>> xml = open(resource_file('wms_nationalatlas_getcapabilities_130.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.3.0', xml=xml) Test capabilities ----------------- >>> wms.identification.type 'WMS' >>> wms.identification.version '1.3.0' >>> wms.identification.title '1 Million Scale WMS Layers from the National Atlas of the United States' >>> wms.identification.abstract 'Test Data for 1 Million Scale' >>> wms.identification.keywords ['United States', 'National Atlas'] >>> wms.identification.accessconstraints 'none' Test available content layers >>> len(wms.contents.keys()) 20 >>> 'elevation' in [wms[layer].id for layer in wms.contents] True Test single item accessor >>> wms['elevation'].title '1 Million Scale - Elevation 100 Meter Resolution' >>> wms['elevation'].keywords [] >>> cast_tuple_int_list_srs(wms['elevation'].boundingBox) [-179, 17, 180, 71, 'CRS:84'] >>> cast_tuple_int_list(wms['elevation'].boundingBoxWGS84) [-179, 17, 180, 71] >>> [crs for crs in wms['elevation'].crs_list if crs[4] == 'EPSG:3785'] is not [] True >>> epsg3785 = [crs for crs in wms['elevation'].crs_list if crs[4] == 'EPSG:3785'][0] >>> cast_tuple_int_list_srs(epsg3785) [-20037300, 1927710, 20037500, 11736700, 'EPSG:3785'] >>> sorted(wms['elevation'].crsOptions) ['CRS:84', 'EPSG:102100', 'EPSG:102113', 'EPSG:2163', 'EPSG:3785', 'EPSG:3857', 'EPSG:4267', 'EPSG:4269', 'EPSG:4326', 'EPSG:54004', 'EPSG:54008', 'EPSG:900913'] >>> len(wms['elevation'].styles) == 1 True >>> 'elevi0100g' in wms['elevation'].styles True >>> wms['elevation'].styles['elevi0100g']['legend_format'] 'image/gif' >>> wms['elevation'].timepositions is None True >>> wms['elevation'].defaulttimeposition is None True >>> wms['elevation'].parent is not None True Expect a KeyError for invalid names >>> wms['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> [op.name for op in wms.operations] ['GetCapabilities', 'GetMap', 'GetFeatureInfo', 'DescribeLayer', 'GetLegendGraphic', 'GetStyles'] >>> x = sorted(wms.getOperationByName('GetMap').methods, key=itemgetter('type')) >>> x == [{'type': 'Get', 'url': 'http://webservices.nationalatlas.gov/wms?'}, {'type': 'Post', 'url': 'http://webservices.nationalatlas.gov/wms?'}] True >>> wms.getOperationByName('GetMap').formatOptions ['image/png', 'image/jpeg', 'image/gif', 'image/png; mode=8bit', 'image/tiff'] Test exceptions >>> wms.exceptions ['XML', 'INIMAGE', 'BLANK'] OWSLib-0.16.0/tests/doctests/wms_nccs_nasa_getcapabilities.txt000066400000000000000000000037031321706412000244560ustar00rootroot00000000000000Imports >>> from __future__ import (absolute_import, division, print_function) >>> from owslib.wms import WebMapService >>> from tests.utils import resource_file, cast_tuple_int_list, cast_tuple_int_list_srs >>> from operator import itemgetter Fake a request to a WMS Server (1.3.0) using saved doc from http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll >>> xml = open(resource_file('wms_nccs_nasa_getcap_130.xml'), 'rb').read() >>> wms = WebMapService('url', version='1.3.0', xml=xml) Test capabilities ----------------- >>> wms.identification.type 'WMS' >>> wms.identification.version '1.3.0' >>> wms.identification.title 'Data Catalog' >>> wms.identification.abstract 'Scientific Data' >>> wms.identification.keywords ['meteorology', 'atmosphere', 'climate', 'ocean', 'earth science'] >>> wms.identification.accessconstraints 'none' Test available content layers >>> len(wms.contents.keys()) 7 >>> 'T' in [wms[layer].id for layer in wms.contents] True Test single item accessor >>> wms['T'].title 'potential_temperature' >>> wms['T'].keywords [] >>> cast_tuple_int_list_srs(wms['T'].boundingBox) [-180, -90, 179, 90, 'CRS:84'] >>> cast_tuple_int_list(wms['T'].boundingBoxWGS84) [-180, -90, 179, 90] >>> [crs for crs in wms['T'].crs_list if crs[4] == 'EPSG:3785'] is not [] True >>> sorted(wms['T'].crsOptions) ['CRS:84', 'EPSG:27700', 'EPSG:32661', 'EPSG:32761', 'EPSG:3408', 'EPSG:3409', 'EPSG:3857', 'EPSG:41001', 'EPSG:4326'] >>> len(wms['T'].styles) == 10 True >>> 'boxfill/rainbow' in wms['T'].styles True >>> wms['T'].styles['boxfill/rainbow']['legend_format'] 'image/png' >>> len(wms['T'].elevations) 40 >>> len(wms['T'].timepositions) 271 >>> wms['T'].defaulttimeposition '2015-07-01T12:00:00Z' >>> wms['T'].parent is not None TrueOWSLib-0.16.0/tests/doctests/wmts.txt000066400000000000000000000034351321706412000174230ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import scratch_file Find out what a WMTS has to offer. Service metadata: >>> from owslib.wmts import WebMapTileService >>> wmts = WebMapTileService("http://map1c.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi") >>> wmts.identification.type 'OGC WMTS' >>> wmts.identification.version '1.0.0' >>> wmts.identification.title 'NASA Global Imagery Browse Services for EOSDIS' >>> bytearray(wmts.identification.abstract, 'utf-8') bytearray(b'Near real time imagery from multiple NASA instruments') >>> wmts.identification.keywords ['World', 'Global'] Service Provider: >>> wmts.provider.name 'National Aeronautics and Space Administration' >>> wmts.provider.url 'https://earthdata.nasa.gov/' Available Layers: >>> len(wmts.contents.keys()) > 0 True >>> sorted(list(wmts.contents))[0] 'AIRS_CO_Total_Column_Day' Fetch a tile (using some defaults): >>> tile = wmts.gettile(layer='MODIS_Terra_CorrectedReflectance_TrueColor', tilematrixset='EPSG4326_250m', tilematrix='0', row=0, column=0, format="image/jpeg") >>> out = open(scratch_file('nasa_modis_terra_truecolour.jpg'), 'wb') >>> bytes_written = out.write(tile.read()) >>> out.close() Test styles for several layers >>> wmts.contents['MLS_SO2_147hPa_Night'].styles {'default': {'isDefault': True, 'title': 'default'}} >>> wmts.contents['MLS_SO2_147hPa_Night'].styles {'default': {'isDefault': True, 'title': 'default'}} Test a WMTS without a ServiceProvider tag in Capababilities XML >>> wmts = WebMapTileService('http://data.geus.dk/arcgis/rest/services/OneGeologyGlobal/S071_G2500_OneGeology/MapServer/WMTS/1.0.0/WMTSCapabilities.xml') OWSLib-0.16.0/tests/doctests/wmts_EOSDISWMTSCapabilities.txt000066400000000000000000000216341321706412000235170ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wmts import WebMapTileService Fake a request to a WMTS Server using saved doc from http://map1b.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi >>> xml = open(resource_file('eosdis-wmts-cap.xml'), 'rb').read() >>> wmts = WebMapTileService('url', version='1.0.0', xml=xml) Test capabilities ----------------- >>> wmts.identification.type 'OGC WMTS' >>> wmts.identification.version '1.0.0' >>> wmts.identification.title 'NASA Global Image Browse Services for EOSDIS' >>> str.strip(wmts.identification.abstract) 'Near real time imagery from multiple NASA instruments' >>> sorted(wmts.identification.keywords) ['Global', 'World'] >>> wmts.identification.accessconstraints 'none' >>> wmts.identification.fees 'none' Service Provider: >>> wmts.provider.name 'National Aeronautics and Space Administration' >>> wmts.provider.url 'http://earthdata.nasa.gov/' Check contact info >>> wmts.provider.contact.name 'Jeff Schmaltz' >>> wmts.provider.contact.position 'Principal Support Scientist' # TODO: check if address can be duplicated >>> wmts.provider.contact.address 'Goddard Space Flight Center' >>> wmts.provider.contact.region 'Maryland' >>> wmts.provider.contact.email 'support@earthdata.nasa.gov' >>> wmts.provider.contact.city 'Greenbelt' >>> wmts.provider.contact.postcode '20771' >>> wmts.provider.contact.country 'United States of America' Test available content layers >>> sorted(list(wmts.contents)) ['AIRS_CO_Total_Column_Day', 'AIRS_CO_Total_Column_Night', 'AIRS_Dust_Score', 'AIRS_Prata_SO2_Index_Day', 'AIRS_Prata_SO2_Index_Night', 'AIRS_Precipitation_Day', 'AIRS_Precipitation_Night', 'MODIS_Aqua_Aerosol', 'MODIS_Aqua_Brightness_Temp_Band31_Day', 'MODIS_Aqua_Brightness_Temp_Band31_Night', 'MODIS_Aqua_Cloud_Top_Pressure_Day', 'MODIS_Aqua_Cloud_Top_Pressure_Night', 'MODIS_Aqua_Cloud_Top_Temp_Day', 'MODIS_Aqua_Cloud_Top_Temp_Night', 'MODIS_Aqua_CorrectedReflectance_Bands721', 'MODIS_Aqua_CorrectedReflectance_TrueColor', 'MODIS_Aqua_Data_No_Data', 'MODIS_Aqua_Land_Surface_Temp_Day', 'MODIS_Aqua_Land_Surface_Temp_Night', 'MODIS_Aqua_Sea_Ice', 'MODIS_Aqua_Snow_Cover', 'MODIS_Aqua_SurfaceReflectance_Bands121', 'MODIS_Aqua_SurfaceReflectance_Bands143', 'MODIS_Aqua_SurfaceReflectance_Bands721', 'MODIS_Aqua_Water_Vapor_5km_Day', 'MODIS_Aqua_Water_Vapor_5km_Night', 'MODIS_Land_Water_Mask', 'MODIS_Terra_Aerosol', 'MODIS_Terra_Brightness_Temp_Band31_Day', 'MODIS_Terra_Brightness_Temp_Band31_Night', 'MODIS_Terra_Cloud_Top_Pressure_Day', 'MODIS_Terra_Cloud_Top_Pressure_Night', 'MODIS_Terra_Cloud_Top_Temp_Day', 'MODIS_Terra_Cloud_Top_Temp_Night', 'MODIS_Terra_CorrectedReflectance_Bands367', 'MODIS_Terra_CorrectedReflectance_Bands721', 'MODIS_Terra_CorrectedReflectance_TrueColor', 'MODIS_Terra_Data_No_Data', 'MODIS_Terra_Land_Surface_Temp_Day', 'MODIS_Terra_Land_Surface_Temp_Night', 'MODIS_Terra_Sea_Ice', 'MODIS_Terra_Snow_Cover', 'MODIS_Terra_SurfaceReflectance_Bands121', 'MODIS_Terra_SurfaceReflectance_Bands143', 'MODIS_Terra_SurfaceReflectance_Bands721', 'MODIS_Terra_Water_Vapor_5km_Day', 'MODIS_Terra_Water_Vapor_5km_Night', 'OMI_Absorbing_Aerosol_Optical_Depth', 'OMI_Aerosol_Index', 'OMI_Aerosol_Optical_Depth', 'OMI_Cloud_Pressure', 'OMI_SO2_Lower_Troposphere', 'OMI_SO2_Middle_Troposphere', 'OMI_SO2_Planetary_Boundary_Layer', 'OMI_SO2_Upper_Troposphere_and_Stratosphere'] Test TileMatrixSet variants # TODO: check individual values >>> sorted(wmts.tilematrixsets.keys()) ['EPSG4326_1km', 'EPSG4326_250m', 'EPSG4326_2km', 'EPSG4326_500m'] >>> wmts.tilematrixsets['EPSG4326_2km'].identifier 'EPSG4326_2km' >>> wmts.tilematrixsets['EPSG4326_2km'].crs 'urn:ogc:def:crs:OGC:1.3:CRS84' >>> sorted(wmts.tilematrixsets['EPSG4326_2km'].tilematrix.keys()) ['0', '1', '2', '3', '4', '5'] >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].identifier '0' >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].scaledenominator 223382916.91738197 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].topleftcorner (-180.0, 90.0) >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].tilewidth 512 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].tileheight 512 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].matrixwidth 2 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['0'].matrixheight 1 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].identifier '5' >>> int(wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].scaledenominator) 6980716 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].topleftcorner (-180.0, 90.0) >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].tilewidth 512 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].tileheight 512 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].matrixwidth 40 >>> wmts.tilematrixsets['EPSG4326_2km'].tilematrix['5'].matrixheight 20 >>> wmts.tilematrixsets['EPSG4326_250m'].identifier 'EPSG4326_250m' >>> wmts.tilematrixsets['EPSG4326_250m'].crs 'urn:ogc:def:crs:OGC:1.3:CRS84' >>> sorted(wmts.tilematrixsets['EPSG4326_250m'].tilematrix.keys()) ['0', '1', '2', '3', '4', '5', '6', '7', '8'] >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].identifier '0' >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].topleftcorner (-180.0, 90.0) >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].tilewidth 512 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].tileheight 512 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].matrixwidth 2 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['0'].matrixheight 1 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].identifier '8' >>> int(wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].scaledenominator) 872589 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].topleftcorner (-180.0, 90.0) >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].tilewidth 512 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].tileheight 512 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].matrixwidth 320 >>> wmts.tilematrixsets['EPSG4326_250m'].tilematrix['8'].matrixheight 160 Test single item accessor >>> wmts['MODIS_Aqua_SurfaceReflectance_Bands121'].title 'MODIS_Aqua_SurfaceReflectance_Bands121' # check something in the middle >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].title 'MODIS_Aqua_Cloud_Top_Temp_Night' >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].boundingBoxWGS84 (-180.0, -90.0, 180.0, 90.0) >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].id 'MODIS_Aqua_Cloud_Top_Temp_Night' >>> x = wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].styles >>> x == {'default': {'isDefault': True, 'title': 'default'}} True >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].formats ['image/png'] >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].tilematrixsets ['EPSG4326_2km'] >>> list(wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].tilematrixsetlinks.keys()) ['EPSG4326_2km'] >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].tilematrixsetlinks['EPSG4326_2km'] >>> wmts['MODIS_Aqua_Cloud_Top_Temp_Night'].tilematrixsetlinks['EPSG4326_2km'].tilematrixlimits {} >>> wmts['MODIS_Aqua_Water_Vapor_5km_Night'].title 'MODIS_Aqua_Water_Vapor_5km_Night' Expect a KeyError for invalid names >>> wmts['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> sorted([op.name for op in wmts.operations]) ['GetCapabilities', 'GetTile'] >>> x = wmts.getOperationByName('GetTile').methods[0] >>> x.get('type') 'Get' >>> x.get('url') 'http://map1b.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi?' >>> len(x.get('constraints')) 1 >>> cst = x.get('constraints')[0] >>> cst.name 'GetEncoding' >>> cst.values ['KVP'] Test the gettile methods # TODO - more checks >>> try: ... from PIL import Image ... import cStringIO ... except: ... pass ... else: ... rq = wmts.buildTileRequest(layer='MODIS_Aqua_SurfaceReflectance_Bands121', tilematrix='0', row=0, column=0) ... assert rq == 'SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=MODIS_Aqua_SurfaceReflectance_Bands121&STYLE=default&TILEMATRIXSET=EPSG4326_250m&TILEMATRIX=0&TILEROW=0&TILECOL=0&FORMAT=image%2Fjpeg' ... tile000 = wmts.gettile(layer='MODIS_Aqua_SurfaceReflectance_Bands121', tilematrix='0', row=0, column=0) ... im = cStringIO.StringIO(tile000.read()) ... image = Image.open(im) ... assert image.size == (512, 512) OWSLib-0.16.0/tests/doctests/wmts_RESTonly.txt000066400000000000000000000017501321706412000211600ustar00rootroot00000000000000Imports: >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import scratch_file ServiceMetadata: >>> from owslib.wmts import WebMapTileService >>> wmts = WebMapTileService("http://geoserv.weichand.de/mapproxy/wmts/1.0.0/WMTSCapabilities.xml") >>> wmts.identification.type 'OGC WMTS' >>> wmts.identification.version '1.0.0' >>> wmts.identification.title 'WMTS-Testserver DOP80' Content: >>> sorted(list(wmts.contents)) ['dop80'] RESTful WMTS: >>> wmts.restonly True >>> wmts.buildTileResource(layer='dop80', tilematrixset='webmercator', tilematrix='11', row='706', column='1089') 'http://geoserv.weichand.de/mapproxy/wmts/dop80/webmercator/11/1089/706.png' >>> tile = wmts.gettile(layer='dop80', tilematrixset='webmercator', tilematrix='11', row='706', column='1089') >>> out = open(scratch_file('bvv_bayern_dop80.png'), 'wb') >>> bytes_written = out.write(tile.read()) >>> out.close() OWSLib-0.16.0/tests/doctests/wmts_SFSWorldWMTSCapabilities.txt000066400000000000000000000220511321706412000241660ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, resource_file >>> from owslib.wmts import WebMapTileService Fake a request to a WMTS Server using saved doc from http://server.caris.com/spatialfusionserver/services/ows/wmts/World/1.0.0/WMTSCapabilities.xml >>> xml = open(resource_file('sfs-wmts-cap-world.xml'), 'rb').read() >>> wmts = WebMapTileService('url', version='1.0.0', xml=xml) Test capabilities ----------------- >>> wmts.identification.type 'WMTS' >>> wmts.identification.version '1.0.0' >>> wmts.identification.title >>> wmts.identification.abstract >>> wmts.identification.keywords [] >>> wmts.identification.accessconstraints 'None' >>> wmts.identification.fees 'conditions unknown' Test service metadata URL (RESTful API) >>> wmts.serviceMetadataURL 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World/1.0.0/WMTSCapabilities.xml' Service Provider: >>> wmts.provider.name 'CARIS' >>> wmts.provider.url Check contact info >>> wmts.provider.contact.name 'Andy Hoggarth' >>> wmts.provider.contact.position 'Marketing & Sales Manager' >>> wmts.provider.contact.phone '1 (506) 459-3849' >>> wmts.provider.contact.address '115 Waggoners Lane' >>> wmts.provider.contact.region 'New Brunswick' >>> wmts.provider.contact.email 'info@caris.com' >>> wmts.provider.contact.city 'Fredericton' >>> wmts.provider.contact.postcode 'E3B 2L4' >>> wmts.provider.contact.country 'Canada' Test available content layers >>> sorted(list(wmts.contents)) ['Ocean', 'World'] Test TileMatrixSet variants >>> sorted(wmts.tilematrixsets.keys()) ['GlobalCRS84Scale', 'GoogleMapsCompatible'] >>> wmts.tilematrixsets['GoogleMapsCompatible'].identifier 'GoogleMapsCompatible' >>> wmts.tilematrixsets['GoogleMapsCompatible'].crs 'urn:ogc:def:crs:EPSG:6.18:3:3857' >>> sorted(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix.keys()) ['0', '1', '10', '11', '12', '13', '14', '15', '16', '17', '2', '3', '4', '5', '6', '7', '8', '9'] >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].identifier '0' >>> int(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].scaledenominator) 559082264 >>> cast_tuple_int_list(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].topleftcorner) [-20037508, -20037508] >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].tilewidth 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].tileheight 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].matrixwidth 1 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['0'].matrixheight 1 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].identifier '17' >>> int(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].scaledenominator) 4265 >>> cast_tuple_int_list(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].topleftcorner) [-20037508, -20037508] >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].tilewidth 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].tileheight 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].matrixwidth 131072 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['17'].matrixheight 131072 >>> wmts.tilematrixsets['GlobalCRS84Scale'].identifier 'GlobalCRS84Scale' >>> wmts.tilematrixsets['GlobalCRS84Scale'].crs 'urn:ogc:def:crs:OGC:1.3:CRS84' >>> sorted(wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix.keys()) ['0', '1', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '2', '20', '3', '4', '5', '6', '7', '8', '9'] >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].identifier '0' >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].scaledenominator 500000000.0 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].topleftcorner (90.0, -180.0) >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].tilewidth 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].tileheight 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].matrixwidth 2 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['0'].matrixheight 1 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].identifier '20' >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].scaledenominator 100.0 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].topleftcorner (90.0, -180.0) >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].tilewidth 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].tileheight 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].matrixwidth 2097152 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['20'].matrixheight 1048576 Test single item accessor >>> wmts['World'].title 'World' >>> cast_tuple_int_list(wmts['World'].boundingBoxWGS84) [-179, -90, 179, 83] >>> wmts['World'].id 'World' >>> wmts['World'].styles {'default': {'isDefault': True}} >>> wmts['World'].formats ['image/png'] >>> sorted(wmts['World'].tilematrixsets) ['GlobalCRS84Scale', 'GoogleMapsCompatible'] >>> sorted(wmts['World'].tilematrixsetlinks.keys()) ['GlobalCRS84Scale', 'GoogleMapsCompatible'] >>> wmts['World'].infoformats ['application/gml+xml; version=3.1'] >>> wmts['World'].resourceURLs[0] == {'resourceType': 'tile', 'template': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World/World/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}.png', 'format': 'image/png'} True >>> wmts['World'].resourceURLs[1] == {'resourceType': 'FeatureInfo', 'template': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World/World/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}/{j}/{i}.xml', 'format': 'application/gml+xml; version=3.1'} True >>> wmts['Ocean'].title 'Ocean' >>> cast_tuple_int_list(wmts['Ocean'].boundingBoxWGS84) [-179, -85, 179, 89] >>> wmts['Ocean'].id 'Ocean' >>> wmts['Ocean'].styles {'default': {'isDefault': True}} >>> wmts['Ocean'].formats ['image/png'] >>> sorted(wmts['Ocean'].tilematrixsets) ['GlobalCRS84Scale', 'GoogleMapsCompatible'] >>> sorted(wmts['Ocean'].tilematrixsetlinks.keys()) ['GlobalCRS84Scale', 'GoogleMapsCompatible'] >>> wmts['Ocean'].infoformats ['application/gml+xml; version=3.1'] >>> wmts['Ocean'].resourceURLs[0] == {'resourceType': 'tile', 'template': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World/Ocean/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}.png', 'format': 'image/png'} True >>> wmts['Ocean'].resourceURLs[1] == {'resourceType': 'FeatureInfo', 'template': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World/Ocean/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}/{j}/{i}.xml', 'format': 'application/gml+xml; version=3.1'} True Test themes >>> list(wmts.themes.keys()) ['Earth'] >>> wmts.themes['Earth'].title 'Earth' >>> wmts.themes['Earth'].identifier 'Earth' >>> wmts.themes['Earth'].abstract >>> sorted(wmts.themes['Earth'].layerRefs) ['Ocean', 'World'] Expect a KeyError for invalid names >>> wmts['utterly bogus'].title Traceback (most recent call last): ... KeyError: 'No content named utterly bogus' Test operations >>> sorted([op.name for op in wmts.operations]) ['GetCapabilities', 'GetFeatureInfo', 'GetTile'] >>> x = wmts.getOperationByName('GetFeatureInfo').methods >>> x == [{'type': 'Get', 'url': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World', 'constraints': []}] True >>> x = wmts.getOperationByName('GetTile').methods >>> x == [{'type' : 'Get', 'url': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World', 'constraints': []}] True >>> x = wmts.getOperationByName('GetCapabilities').methods >>> x == [{'type' : 'Get', 'url': 'http://server.caris.com/spatialfusionserver/services/ows/wmts/World', 'constraints': []}] True Test the gettile methods >>> try: ... from io import BytesIO as ImageIO ... except ImportError: ... from cStringIO import StringIO as ImageIO >>> try: ... from PIL import Image ... except: ... pass ... else: ... rq = wmts.buildTileRequest(layer='World', tilematrix='0', row=0, column=0) ... assert rq == 'SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=World&STYLE=default&TILEMATRIXSET=GlobalCRS84Scale&TILEMATRIX=0&TILEROW=0&TILECOL=0&FORMAT=image%2Fpng' ... tile000 = wmts.gettile(layer='World', tilematrix='0', row=0, column=0) ... im = ImageIO(tile000.read()) ... image = Image.open(im) ... assert image.size == (256, 256) OWSLib-0.16.0/tests/doctests/wmts_geoserver21.txt000066400000000000000000000247451321706412000216560ustar00rootroot00000000000000 Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import cast_tuple_int_list, resource_file >>> from owslib.wmts import WebMapTileService Fake a request to a WMTS Server using saved doc from http://geonode.iwlearn.org/geoserver/gwc/service/wmts?REQUEST=GetCapabilities >>> xml = open(resource_file('geoserver21-wmts-cap.xml'), 'rb').read() >>> wmts = WebMapTileService('url', version='1.0.0', xml=xml) Test capabilities ----------------- >>> wmts.identification.type 'OGC WMTS' >>> wmts.identification.version '1.0.0' >>> wmts.identification.title 'Web Map Tile Service - GeoWebCache' >>> wmts.identification.abstract >>> wmts.identification.keywords [] >>> wmts.identification.accessconstraints >>> wmts.identification.fees >>> wmts.restonly False Service Provider: >>> wmts.provider.name 'http://geonode.iwlearn.org/geoserver/gwc/service/wmts' >>> wmts.provider.url 'http://geonode.iwlearn.org/geoserver/gwc/service/wmts' Check contact info >>> wmts.provider.contact.name 'GeoWebCache User' >>> wmts.provider.contact.position Test available content layers >>> sorted(list(wmts.contents)) ['geonode:Basins', 'geonode:ContinentalMargins', 'geonode:Diktas_Project_Area_1', 'geonode:FEOWv1_TNC', 'geonode:GH_Anidamiento_de_Tortugas_Marinas4326', 'geonode:GH_Anidamiento_de_aves4326', 'geonode:GH_Areas_Protegidas4326', 'geonode:GH_Arrecifes_Coralinos4326', 'geonode:GH_Blanqueamiento_Corales4326', 'geonode:GH_Departamentos4326', 'geonode:GH_Descargas4326', 'geonode:GH_Descargas_2007_4326', 'geonode:GH_Desove_Peces4326', 'geonode:GH_Distribucion_de_Manati4326', 'geonode:GH_Est_muestreo4326', 'geonode:GH_Est_muestreo_propuestas4326', 'geonode:GH_Estuarios_y_Lagunas4326', 'geonode:GH_Limites_Administrativos_Pol4326', 'geonode:GH_Manglares4326', 'geonode:GH_Otras_enfermedades_Corales4326', 'geonode:GH_Paises_Pol4326', 'geonode:GH_Paises_Region_Pol4326', 'geonode:GH_Pastos_Marinos4326', 'geonode:GH_Playas_arenosas4326', 'geonode:GH_Sitios_Prioritarios_TNC4326', 'geonode:GH_Usos_suelo_SOTERLAC4326', 'geonode:GH_ecosistemas_terrestres4326', 'geonode:GIS_OTHER_VEC_CASP_OIL_PNT', 'geonode:GIS_OTHER_VEC_CASP_PIPELIN', 'geonode:GIS_OTHER_VEC_ISOLINES', 'geonode:LMEs_64', 'geonode:Longhurst_world_v4_2010', 'geonode:MANGROVES', 'geonode:SEAGRASSES', 'geonode:TB_Aquifers_New', 'geonode:World_Fao_Zones', 'geonode:World_Maritime_Boundaries_v6_1_20110512', 'geonode:World_Seas', 'geonode:XYDjibouti', 'geonode:XYSudan', 'geonode:XYYemen', 'geonode:abc1', 'geonode:abril', 'geonode:area_de_estudio_1', 'geonode:asfalto', 'geonode:bcp_wgs84_0511', 'geonode:giwa_lme', 'geonode:glwd_1', 'geonode:hotspots_revisited_2004_polygons', 'geonode:igrac_tba_WL_201105_projected', 'geonode:mapa_geologico4326', 'geonode:mapa_geologico_fallas4326', 'geonode:mapa_geologico_provincias4326', 'geonode:meow_ecos', 'geonode:red_hidrografica', 'geonode:seaVoX_sea_area_polygons', 'geonode:undersea_features_2008', 'geonode:wribasin'] Test TileMatrixSet variants >>> sorted(wmts.tilematrixsets.keys()) ['EPSG:4326', 'EPSG:900913', 'GlobalCRS84Pixel', 'GlobalCRS84Scale', 'GoogleCRS84Quad', 'GoogleMapsCompatible'] >>> wmts.tilematrixsets['GoogleMapsCompatible'].identifier 'GoogleMapsCompatible' >>> wmts.tilematrixsets['GoogleMapsCompatible'].crs 'urn:ogc:def:crs:EPSG::900913' >>> sorted(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix.keys()) ['GoogleMapsCompatible:0', 'GoogleMapsCompatible:1', 'GoogleMapsCompatible:10', 'GoogleMapsCompatible:11', 'GoogleMapsCompatible:12', 'GoogleMapsCompatible:13', 'GoogleMapsCompatible:14', 'GoogleMapsCompatible:15', 'GoogleMapsCompatible:16', 'GoogleMapsCompatible:17', 'GoogleMapsCompatible:18', 'GoogleMapsCompatible:19', 'GoogleMapsCompatible:2', 'GoogleMapsCompatible:20', 'GoogleMapsCompatible:3', 'GoogleMapsCompatible:4', 'GoogleMapsCompatible:5', 'GoogleMapsCompatible:6', 'GoogleMapsCompatible:7', 'GoogleMapsCompatible:8', 'GoogleMapsCompatible:9'] >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].identifier 'GoogleMapsCompatible:0' >>> int(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].scaledenominator) 559082264 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].topleftcorner (-20037508.34, 20037508.0) >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].tilewidth 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].tileheight 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].matrixwidth 1 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:0'].matrixheight 1 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].identifier 'GoogleMapsCompatible:17' >>> int(wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].scaledenominator) 4265 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].topleftcorner (-20037508.34, 20037508.0) >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].tilewidth 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].tileheight 256 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].matrixwidth 131072 >>> wmts.tilematrixsets['GoogleMapsCompatible'].tilematrix['GoogleMapsCompatible:17'].matrixheight 131072 >>> wmts.tilematrixsets['GlobalCRS84Scale'].identifier 'GlobalCRS84Scale' >>> wmts.tilematrixsets['GlobalCRS84Scale'].crs 'urn:ogc:def:crs:EPSG::4326' >>> sorted(wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix.keys()) ['GlobalCRS84Scale:0', 'GlobalCRS84Scale:1', 'GlobalCRS84Scale:10', 'GlobalCRS84Scale:11', 'GlobalCRS84Scale:12', 'GlobalCRS84Scale:13', 'GlobalCRS84Scale:14', 'GlobalCRS84Scale:15', 'GlobalCRS84Scale:16', 'GlobalCRS84Scale:17', 'GlobalCRS84Scale:18', 'GlobalCRS84Scale:19', 'GlobalCRS84Scale:2', 'GlobalCRS84Scale:20', 'GlobalCRS84Scale:3', 'GlobalCRS84Scale:4', 'GlobalCRS84Scale:5', 'GlobalCRS84Scale:6', 'GlobalCRS84Scale:7', 'GlobalCRS84Scale:8', 'GlobalCRS84Scale:9'] >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].identifier 'GlobalCRS84Scale:0' >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].scaledenominator 500000000.0 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].topleftcorner (90.0, -180.0) >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].tilewidth 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].tileheight 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].matrixwidth 2 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:0'].matrixheight 1 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].identifier 'GlobalCRS84Scale:20' >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].scaledenominator 100.0 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].topleftcorner (90.0, -180.0) >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].tilewidth 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].tileheight 256 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].matrixwidth 5590823 >>> wmts.tilematrixsets['GlobalCRS84Scale'].tilematrix['GlobalCRS84Scale:20'].matrixheight 2795412 Test single item accessor >>> wmts['geonode:GH_Areas_Protegidas4326'].title 'GOH Areas Protegidas' >>> cast_tuple_int_list(wmts['geonode:GH_Areas_Protegidas4326'].boundingBoxWGS84) [-92, 12, -84, 18] >>> wmts['geonode:GH_Areas_Protegidas4326'].id 'geonode:GH_Areas_Protegidas4326' >>> wmts['geonode:GH_Areas_Protegidas4326'].styles {'GH_Areas_Protegidas4326': {'isDefault': True}} >>> wmts['geonode:GH_Areas_Protegidas4326'].formats ['image/png', 'image/jpeg'] >>> sorted(wmts['geonode:GH_Areas_Protegidas4326'].tilematrixsets) ['EPSG:4326', 'EPSG:900913'] >>> sorted(wmts['geonode:GH_Areas_Protegidas4326'].tilematrixsetlinks.keys()) ['EPSG:4326', 'EPSG:900913'] >>> wmts['geonode:GH_Areas_Protegidas4326'].tilematrixsetlinks['EPSG:4326'] >>> sorted(wmts['geonode:GH_Areas_Protegidas4326'].tilematrixsetlinks['EPSG:4326'].tilematrixlimits.keys()) ['EPSG:4326:0', 'EPSG:4326:1', 'EPSG:4326:10', 'EPSG:4326:11', 'EPSG:4326:12', 'EPSG:4326:13', 'EPSG:4326:14', 'EPSG:4326:15', 'EPSG:4326:16', 'EPSG:4326:17', 'EPSG:4326:18', 'EPSG:4326:19', 'EPSG:4326:2', 'EPSG:4326:20', 'EPSG:4326:3', 'EPSG:4326:4', 'EPSG:4326:5', 'EPSG:4326:6', 'EPSG:4326:7', 'EPSG:4326:8', 'EPSG:4326:9', 'null'] >>> wmts['geonode:GH_Areas_Protegidas4326'].tilematrixsetlinks['EPSG:4326'].tilematrixlimits['EPSG:4326:14'] >>> wmts['geonode:GH_Areas_Protegidas4326'].infoformats ['text/plain', 'text/html', 'application/vnd.ogc.gml'] >>> wmts['geonode:GH_Areas_Protegidas4326'].resourceURLs [] Test several layers styles >>> wmts.contents['geonode:MANGROVES'].styles {'MANGROVES': {'isDefault': True}} >>> wmts.contents['geonode:asfalto'].styles {'asfalto': {'format': 'image/png', 'legend': 'http://www.maps.bob/etopo2/legend.png', 'isDefault': True, 'title': 'TEST Title: hotspots revisited 2004 polygons'}} >>> wmts.contents['geonode:hotspots_revisited_2004_polygons'].styles {'hotspots_revisited_2004_polygons': {'title': 'TEST Title: hotspots revisited 2004 polygons', 'abstract': 'TEST Abstract: hotspots revisited 2004 polygons', 'format': 'image/png', 'height': '100', 'width': '100', 'keywords': ['testkeywords1', 'test keywords 2', 'test keywords 3'], 'legend': 'http://www.maps.bob/etopo2/legend.png', 'isDefault': True}} >>> wmts.contents['geonode:asfalto'].styles {'asfalto': {'format': 'image/png', 'legend': 'http://www.maps.bob/etopo2/legend.png', 'isDefault': True, 'title': 'TEST Title: hotspots revisited 2004 polygons'}} Test operations # TODO Test the gettile methods # TODO OWSLib-0.16.0/tests/doctests/wps_describeprocess_bbox.txt000066400000000000000000000031631321706412000235110ustar00rootroot00000000000000Python doctest file to simulate a WPS DescribeProcess invocation. This test is testing the BoundingBox process of the Emu service (https://github.com/bird-house/emu). This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService, printInputOutput Initialize WPS client >>> wps = WebProcessingService('http://localhost:8094/wps',skip_caps=True) Execute fake invocation of DescribeProcess operation by parsing cached response from Emu service >>> xml = open(resource_file('wps_bbox_DescribeProcess.xml'), 'rb').read() >>> process = wps.describeprocess('bbox', xml=xml) Check process description >>> process.identifier 'bbox' >>> process.title 'Bounding Box' Check process inputs >>> for input in process.dataInputs: ... print('Process input:') ... printInputOutput(input) ... Process input: identifier=bbox, title=Bounding Box, abstract=None, data type=BoundingBoxData Supported Value: EPSG:4326 Supported Value: EPSG:3035 Default Value: EPSG:4326 minOccurs=1, maxOccurs=1 Check process outputs >>> for output in process.processOutputs: ... print('Process output:') ... printInputOutput(output) ... Process output: identifier=bbox, title=Bounding Box, abstract=None, data type=BoundingBoxData Supported Value: EPSG:4326 Default Value: EPSG:4326 reference=None, mimeType=None OWSLib-0.16.0/tests/doctests/wps_describeprocess_ceda.txt000066400000000000000000000034531321706412000234550ustar00rootroot00000000000000Python doctest file to simulate a WPS DescribeProcess invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService, printInputOutput Initialize WPS client >>> wps = WebProcessingService('http://ceda-wps2.badc.rl.ac.uk/wps',skip_caps=True) Execute fake invocation of DescribeProcess operation by parsing cached response from USGS service >>> xml = open(resource_file('wps_CEDADescribeProcess.xml'), 'rb').read() >>> process = wps.describeprocess('Doubleit', xml=xml) Check process description >>> process.identifier 'DoubleIt' >>> process.title 'Doubles the input number and returns value' >>> process.abstract 'This is test process used to demonstrate how the WPS and the WPS User Interface work. The process accepts an integer or floating point number and returns some XML containing the input number double.' Check process inputs >>> for input in process.dataInputs: ... print('Process input:') ... printInputOutput(input) ... Process input: identifier=NumberToDouble, title=NumberToDouble, abstract=NumberToDouble, data type=LiteralData Any value allowed Default Value: None minOccurs=1, maxOccurs=-1 Check process outputs >>> for output in process.processOutputs: ... print('Process output:') ... printInputOutput(output) ... Process output: identifier=OutputXML, title=OutputXML, abstract=OutputXML, data type=ComplexData Supported Value: mimeType=text/XML, encoding=UTF-8, schema=NONE Default Value: None reference=None, mimeType=None OWSLib-0.16.0/tests/doctests/wps_describeprocess_usgs.txt000066400000000000000000000156411321706412000235440ustar00rootroot00000000000000Python doctest file to simulate a WPS DescribeProcess invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService, printInputOutput Initialize WPS client >>> wps = WebProcessingService('http://cida.usgs.gov/gdp/process/WebProcessingService',skip_caps=True) Execute fake invocation of DescribeProcess operation by parsing cached response from USGS service >>> xml = open(resource_file('wps_USGSDescribeProcess.xml'), 'rb').read() >>> process = wps.describeprocess('gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm', xml=xml) Check process description >>> process.identifier 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> process.title 'Feature Weighted Grid Statistics' >>> process.abstract 'This algorithm generates area weighted statistics of a gridded dataset for a set of vector polygon features. Using the bounding-box that encloses the feature data and the time range, if provided, a subset of the gridded dataset is requested from the remote gridded data server. Polygon representations are generated for cells in the retrieved grid. The polygon grid-cell representations are then projected to the feature data coordinate reference system. The grid-cells are used to calculate per grid-cell feature coverage fractions. Area-weighted statistics are then calculated for each feature using the grid values and fractions as weights. If the gridded dataset has a time range the last step is repeated for each time step within the time range or all time steps if a time range was not supplied.' Check process inputs >>> for input in process.dataInputs: ... print('Process input:') ... printInputOutput(input, indent='') ... Process input: identifier=FEATURE_COLLECTION, title=Feature Collection, abstract=A feature collection encoded as a WFS request or one of the supported GML profiles., data type=ComplexData Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.0.0/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.1/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.2/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.1.2.1/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.0.0/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.0.1/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.1.0/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.1.1/base/feature.xsd Supported Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/3.2.1/base/feature.xsd Default Value: mimeType=text/xml, encoding=UTF-8, schema=http://schemas.opengis.net/gml/2.0.0/feature.xsd minOccurs=1, maxOccurs=1 Process input: identifier=DATASET_URI, title=Dataset URI, abstract=The base data web service URI for the dataset of interest., data type=anyURI Any value allowed Default Value: None minOccurs=1, maxOccurs=1 Process input: identifier=DATASET_ID, title=Dataset Identifier, abstract=The unique identifier for the data type or variable of interest., data type=string Any value allowed Default Value: None minOccurs=1, maxOccurs=2147483647 Process input: identifier=REQUIRE_FULL_COVERAGE, title=Require Full Coverage, abstract=If turned on, the service will require that the dataset of interest fully cover the polygon analysis zone data., data type=boolean Any value allowed Default Value: True minOccurs=1, maxOccurs=1 Process input: identifier=TIME_START, title=Time Start, abstract=The date to begin analysis., data type=dateTime Any value allowed Default Value: None minOccurs=0, maxOccurs=1 Process input: identifier=TIME_END, title=Time End, abstract=The date to end analysis., data type=dateTime Any value allowed Default Value: None minOccurs=0, maxOccurs=1 Process input: identifier=FEATURE_ATTRIBUTE_NAME, title=Feature Attribute Name, abstract=The attribute that will be used to label column headers in processing output., data type=string Any value allowed Default Value: None minOccurs=1, maxOccurs=1 Process input: identifier=DELIMITER, title=Delimiter, abstract=The delimiter that will be used to separate columns in the processing output., data type=string Allowed Value: COMMA Allowed Value: TAB Allowed Value: SPACE Default Value: COMMA minOccurs=1, maxOccurs=1 Process input: identifier=STATISTICS, title=Statistics, abstract=Statistics that will be returned for each feature in the processing output., data type=string Allowed Value: MEAN Allowed Value: MINIMUM Allowed Value: MAXIMUM Allowed Value: VARIANCE Allowed Value: STD_DEV Allowed Value: WEIGHT_SUM Allowed Value: COUNT Default Value: None minOccurs=1, maxOccurs=7 Process input: identifier=GROUP_BY, title=Group By, abstract=If multiple features and statistics are selected, this will change whether the processing output columns are sorted according to statistics or feature attributes., data type=string Allowed Value: STATISTIC Allowed Value: FEATURE_ATTRIBUTE Default Value: None minOccurs=1, maxOccurs=1 Process input: identifier=SUMMARIZE_TIMESTEP, title=Summarize Timestep, abstract=If selected, processing output will include columns with summarized statistics for all feature attribute values for each timestep, data type=boolean Any value allowed Default Value: True minOccurs=0, maxOccurs=1 Process input: identifier=SUMMARIZE_FEATURE_ATTRIBUTE, title=Summarize Feature Attribute, abstract=If selected, processing output will include a final row of statistics summarizing all timesteps for each feature attribute value, data type=boolean Any value allowed Default Value: True minOccurs=0, maxOccurs=1 Check process outputs >>> for output in process.processOutputs: ... print('Process output:') ... printInputOutput(output, indent='') ... Process output: identifier=OUTPUT, title=Output File, abstract=A delimited text file containing requested process output., data type=ComplexData Supported Value: mimeType=text/csv, encoding=UTF-8, schema=None Default Value: mimeType=text/csv, encoding=UTF-8, schema=None reference=None, mimeType=None OWSLib-0.16.0/tests/doctests/wps_execute.txt000066400000000000000000000032031321706412000207550ustar00rootroot00000000000000Python doctest file to simulate a WPS Execute invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, setup_logging >>> from owslib.wps import WebProcessingService >>> logger = setup_logging('INFO') Initialize WPS client >>> wps = WebProcessingService('http://cida.usgs.gov/gdp/process/WebProcessingService') Execute fake invocation of Execute operation using cached HTTP request and response >>> request = open(resource_file('wps_USGSExecuteRequest1.xml'), 'rb').read() >>> response = open(resource_file('wps_USGSExecuteResponse1a.xml'), 'rb').read() >>> execution = wps.execute(None, [], request=request, response=response) Executing WPS request... Execution status=ProcessStarted Percent completed=0 Status message=None >>> execution.status 'ProcessStarted' >>> execution.isComplete() False Simulate end of process >>> response = open(resource_file('wps_USGSExecuteResponse1b.xml'), 'rb').read() >>> execution.checkStatus(sleepSecs=0, response=response) Execution status=ProcessSucceeded Percent completed=0 Status message=Process successful >>> execution.status 'ProcessSucceeded' >>> execution.isComplete() True Display location of process output >>> for output in execution.processOutputs: ... output.reference ... 'http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1318528582026OUTPUT.601bb3d0-547f-4eab-8642-7c7d2834459e' OWSLib-0.16.0/tests/doctests/wps_execute_invalid_request.txt000066400000000000000000000023431321706412000242370ustar00rootroot00000000000000Python doctest file to simulate a WPS Execute invocation with INVALID arguments. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, setup_logging >>> from owslib.wps import WebProcessingService >>> logger = setup_logging('INFO') Initialize WPS client >>> wps = WebProcessingService('http://cida.usgs.gov/gdp/process/WebProcessingService') Submit fake invocation of Execute operation using cached HTTP request and response >>> request = open(resource_file('wps_USGSExecuteInvalidRequest.xml'), 'rb').read() >>> response = open(resource_file('wps_USGSExecuteInvalidRequestResponse.xml'), 'rb').read() >>> execution = wps.execute(None, [], request=request, response=response) Executing WPS request... Execution status=ProcessFailed Percent completed=0 Status message=None owslib.wps.WPSException : ... >>> execution.isComplete() True Display errors >>> for ex in execution.errors: ... ex.code, ex.locator, ex.text ... (None, None, 'Attribute null not found in feature collection') OWSLib-0.16.0/tests/doctests/wps_getcapabilities_52n.txt000066400000000000000000000036211321706412000231340ustar00rootroot00000000000000Python doctest file to simulate a WPS GetCapabilities invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService Initialize WPS client >>> wps = WebProcessingService('http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService', skip_caps=True) Execute fake invocation of GetCapabilities operation by parsing cached response from 52North service >>> xml = open(resource_file('wps_52nCapabilities.xml'), 'rb').read() >>> wps.getcapabilities(xml=xml) Check WPS description >>> wps.identification.type 'WPS' Check available operations >>> for operation in wps.operations: ... print(operation.name) ... GetCapabilities DescribeProcess Execute Check high level process descriptions >>> for process in wps.processes: ... process.identifier, process.title ... ('org.n52.wps.server.algorithm.test.MultiReferenceInputAlgorithm', 'for testing multiple inputs by reference') ('org.n52.wps.server.algorithm.test.EchoProcess', 'Echo process') ('org.n52.wps.server.algorithm.test.MultiReferenceBinaryInputAlgorithm', 'for testing multiple binary inputs by reference') ('org.n52.wps.server.algorithm.test.LongRunningDummyTestClass', 'org.n52.wps.server.algorithm.test.LongRunningDummyTestClass') ('org.n52.wps.server.algorithm.JTSConvexHullAlgorithm', 'org.n52.wps.server.algorithm.JTSConvexHullAlgorithm') ('org.n52.wps.server.algorithm.test.MultipleComplexInAndOutputsDummyTestClass', 'org.n52.wps.server.algorithm.test.MultipleComplexInAndOutputsDummyTestClass') ('org.n52.wps.server.algorithm.test.DummyTestClass', 'org.n52.wps.server.algorithm.test.DummyTestClass') OWSLib-0.16.0/tests/doctests/wps_getcapabilities_ceda.txt000066400000000000000000000064201321706412000234240ustar00rootroot00000000000000Python doctest file to simulate a WPS GetCapabilities invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService Initialize WPS client >>> wps = WebProcessingService('http://ceda-wps2.badc.rl.ac.uk/wps', skip_caps=True) Execute fake invocation of GetCapabilities operation by parsing cached response from USGS service >>> xml = open(resource_file('wps_CEDACapabilities.xml'), 'rb').read() >>> wps.getcapabilities(xml=xml) Check WPS description >>> wps.identification.type 'WPS' >>> wps.identification.title 'WPS Pylons Test Server' >>> wps.identification.abstract Check available operations >>> for operation in wps.operations: ... print(operation.name) ... GetCapabilities DescribeProcess Execute Check high level process descriptions >>> for process in wps.processes: ... process.identifier, process.title ... ('CDMSSubsetVariable', 'Writes a text file and returns an output.') ('NCDumpIt', 'Calls ncdump on the input file path and writes it to an output file.') ('TestDap', 'Writes a text file and returns an output.') ('CDMSDescribeVariableDomain', 'Writes a text file and returns an output.') ('CFCheck', 'Writes a text file and returns an output.') ('DoubleIt', 'Doubles the input number and returns value') ('SimplePlot', 'Creates a simple map plot.') ('CDMSListDatasets', 'Writes a text file and returns an output.') ('CDMSListVariables', 'Writes a text file and returns an output.') ('WCSWrapper', 'Web Coverage Service Wrapper Process') ('GetWeatherStations', 'Writes a text file with one weather station per line') ('ListPPFileHeader', 'Writes a text file that contains a listing of pp-records in a file.') ('TakeAges', 'A test process to last a long time.') ('CMIP5FileFinder', 'Writes a test file of matched CMIP5 files.') ('SubsetPPFile', 'Filters a PP-file to generate a new subset PP-file.') ('ExtractUKStationData', 'ExtractUKStationData') ('CDOWrapper1', 'Writes a text file and returns an output.') ('MMDNCDiff', 'MMDNCDiff') ('PlotRotatedGrid', 'Creates a plot - to show we can plot a rotated grid.') ('MMDAsync', 'Writes a text file and returns an output.') ('MashMyDataMultiplier', 'Writes a text file and returns an output.') ('Delegator', 'Writes a text file and returns an output.') ('ExArchProc1', 'Writes a text file and returns an output.') ('CDOShowInfo', 'Writes a text file and returns an output.') ('PostTest', 'Writes a text file and returns an output.') ('StatusTestProcess', 'An process to test status responses') ('WaitForFileDeletionCached', 'An asynchronous job that waits for a file to be deleted') ('WaitForAllFilesToBeDeleted', 'An asynchronous job that waits for a number of files to be deleted') ('AsyncTest', 'Does an asynchronous test job run') ('SyncTest1', 'Just creates a file.') ('WaitForFileDeletion', 'An asynchronous job that waits for a file to be deleted') ('ProcessTemplate', 'Writes a text file and returns an output.') OWSLib-0.16.0/tests/doctests/wps_getcapabilities_usgs.txt000066400000000000000000000050221321706412000235060ustar00rootroot00000000000000Python doctest file to simulate a WPS GetCapabilities invocation. This test does not execute any live HTTP request, rather it parses XML files containing pre-made HTTP responses. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file >>> from owslib.wps import WebProcessingService Initialize WPS client >>> wps = WebProcessingService('http://cida.usgs.gov/gdp/process/WebProcessingService', skip_caps=True) Execute fake invocation of GetCapabilities operation by parsing cached response from USGS service >>> xml = open(resource_file('wps_USGSCapabilities.xml'), 'rb').read() >>> wps.getcapabilities(xml=xml) Check WPS description >>> wps.updateSequence is not None True >>> wps.identification.type 'WPS' >>> wps.identification.title 'Geo Data Portal WPS Implementation' >>> wps.identification.abstract 'A Geo Data Portal Service based on the 52north implementation of WPS 1.0.0' Check available operations >>> for operation in wps.operations: ... print(operation.name) ... GetCapabilities DescribeProcess Execute Check high level process descriptions >>> for process in wps.processes: ... process.identifier, process.title ... ('gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles', 'gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles') ('gov.usgs.cida.gdp.wps.algorithm.discovery.CalculateWCSCoverageInfo', 'gov.usgs.cida.gdp.wps.algorithm.discovery.CalculateWCSCoverageInfo') ('gov.usgs.cida.gdp.wps.algorithm.communication.EmailWhenFinishedAlgorithm', 'gov.usgs.cida.gdp.wps.algorithm.communication.EmailWhenFinishedAlgorithm') ('gov.usgs.cida.gdp.wps.algorithm.communication.GeoserverManagementAlgorithm', 'gov.usgs.cida.gdp.wps.algorithm.communication.GeoserverManagementAlgorithm') ('gov.usgs.cida.gdp.wps.algorithm.discovery.GetWcsCoverages', 'gov.usgs.cida.gdp.wps.algorithm.discovery.GetWcsCoverages') ('gov.usgs.cida.gdp.wps.algorithm.filemanagement.GetWatersGeom', 'gov.usgs.cida.gdp.wps.algorithm.filemanagement.GetWatersGeom') ('gov.usgs.cida.gdp.wps.algorithm.discovery.ListOpendapGrids', 'gov.usgs.cida.gdp.wps.algorithm.discovery.ListOpendapGrids') ('gov.usgs.cida.gdp.wps.algorithm.filemanagement.CreateNewShapefileDataStore', 'gov.usgs.cida.gdp.wps.algorithm.filemanagement.CreateNewShapefileDataStore') ('gov.usgs.cida.gdp.wps.algorithm.discovery.GetGridTimeRange', 'gov.usgs.cida.gdp.wps.algorithm.discovery.GetGridTimeRange') OWSLib-0.16.0/tests/doctests/wps_request10.txt000066400000000000000000000045361321706412000211560ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a FeatureWeightedGridStatisticsAlgorithm process over a WFS feature. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WPSExecution, WFSFeatureCollection, WFSQuery >>> from owslib.etree import etree Supply process input arguments >>> wfsUrl = "http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" >>> query = WFSQuery("sample:CONUS_States", propertyNames=['the_geom',"STATE"], filters=["CONUS_States.508","CONUS_States.469"]) >>> method = 'POST' >>> featureCollection = WFSFeatureCollection(wfsUrl, query, wfsMethod=method) >>> processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> inputs = [ ("FEATURE_ATTRIBUTE_NAME","STATE"), ... ("DATASET_URI", "dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml"), ... ("DATASET_ID", "ccsm3_a1b_tmax"), ... ("DATASET_ID", "ccsm3_a1b_pr"), ... ("DATASET_ID", "ccsm3_a1fi_tmax"), ... ("TIME_START","1960-01-01T00:00:00.000Z"), ... ("TIME_END","1960-12-31T00:00:00.000Z"), ... ("REQUIRE_FULL_COVERAGE","true"), ... ("DELIMITER","COMMA"), ... ("STATISTICS","MEAN"), ... ("STATISTICS","MINIMUM"), ... ("STATISTICS","MAXIMUM"), ... ("STATISTICS","WEIGHT_SUM"), ... ("STATISTICS","VARIANCE"), ... ("STATISTICS","STD_DEV"), ... ("STATISTICS","COUNT"), ... ("GROUP_BY","STATISTIC"), ... ("SUMMARIZE_TIMESTEP","true"), ... ("SUMMARIZE_FEATURE_ATTRIBUTE","true"), ... ("FEATURE_COLLECTION", featureCollection) ... ] >>> output = "OUTPUT" # build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs, output=output) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_USGSExecuteRequest4.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request11_bbox.txt000066400000000000000000000017271321706412000221700ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "bbox" process submitted to the Emu WPS service (https://github.com/bird-house/emu). Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution, BoundingBoxDataInput >>> from owslib.etree import etree Process input/output arguments >>> processid = "bbox" >>> bbox = BoundingBoxDataInput([51.9, 7.0, 53.0, 8.0]) >>> inputs = [ ("bbox", bbox)] Build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_EmuExecuteRequest11.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request2.txt000066400000000000000000000044641321706412000210770ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a FeatureWeightedGridStatisticsAlgorithm process over a WFS feature. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WPSExecution, WFSFeatureCollection, WFSQuery >>> from owslib.etree import etree Supply process input arguments >>> wfsUrl = "http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" >>> query = WFSQuery("sample:CONUS_States", propertyNames=['the_geom',"STATE"], filters=["CONUS_States.508","CONUS_States.469"]) >>> featureCollection = WFSFeatureCollection(wfsUrl, query) >>> processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> inputs = [ ("FEATURE_ATTRIBUTE_NAME","STATE"), ... ("DATASET_URI", "dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml"), ... ("DATASET_ID", "ccsm3_a1b_tmax"), ... ("DATASET_ID", "ccsm3_a1b_pr"), ... ("DATASET_ID", "ccsm3_a1fi_tmax"), ... ("TIME_START","1960-01-01T00:00:00.000Z"), ... ("TIME_END","1960-12-31T00:00:00.000Z"), ... ("REQUIRE_FULL_COVERAGE","true"), ... ("DELIMITER","COMMA"), ... ("STATISTICS","MEAN"), ... ("STATISTICS","MINIMUM"), ... ("STATISTICS","MAXIMUM"), ... ("STATISTICS","WEIGHT_SUM"), ... ("STATISTICS","VARIANCE"), ... ("STATISTICS","STD_DEV"), ... ("STATISTICS","COUNT"), ... ("GROUP_BY","STATISTIC"), ... ("SUMMARIZE_TIMESTEP","true"), ... ("SUMMARIZE_FEATURE_ATTRIBUTE","true"), ... ("FEATURE_COLLECTION", featureCollection) ... ] >>> output = "OUTPUT" # build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs, output=output) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_USGSExecuteRequest2.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request3.txt000066400000000000000000000042641321706412000210760ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a FeatureWeightedGridStatisticsAlgorithm process over a multi-polygon feature. Import python modules >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import GMLMultiPolygonFeatureCollection, WebProcessingService, WPSExecution >>> from owslib.etree import etree Supply process input arguments >>> polygon = [(-102.8184, 39.5273), (-102.8184, 37.418), (-101.2363, 37.418), (-101.2363, 39.5273), (-102.8184, 39.5273)] >>> featureCollection = GMLMultiPolygonFeatureCollection( [polygon] ) >>> processid = 'gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm' >>> inputs = [ ("FEATURE_ATTRIBUTE_NAME","the_geom"), ... ("DATASET_URI", "dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml"), ... ("DATASET_ID", "ccsm3_a1b_tmax"), ... ("TIME_START","1960-01-01T00:00:00.000Z"), ... ("TIME_END","1960-12-31T00:00:00.000Z"), ... ("REQUIRE_FULL_COVERAGE","true"), ... ("DELIMITER","COMMA"), ... ("STATISTICS","MEAN"), ... ("STATISTICS","MINIMUM"), ... ("STATISTICS","MAXIMUM"), ... ("STATISTICS","WEIGHT_SUM"), ... ("STATISTICS","VARIANCE"), ... ("STATISTICS","STD_DEV"), ... ("STATISTICS","COUNT"), ... ("GROUP_BY","STATISTIC"), ... ("SUMMARIZE_TIMESTEP","false"), ... ("SUMMARIZE_FEATURE_ATTRIBUTE","false"), ... ("FEATURE_COLLECTION", featureCollection) ... ] >>> output = "OUTPUT" # build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs, output=output) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_USGSExecuteRequest3.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request4.txt000066400000000000000000000020161321706412000210700ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "reprojectImage" process submitted to the PML WPS service. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "reprojectImage" >>> inputs = [ ("inputImage","http://rsg.pml.ac.uk/wps/testdata/elev_srtm_30m.img"), ... ("outputSRS", "EPSG:4326") ] >>> output = "outputImage" # build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs, output=output) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_PMLExecuteRequest4.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request5.txt000066400000000000000000000020051321706412000210670ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "reprojectCoords" process submitted to the PML WPS service. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "reprojectCoords" >>> inputs = [ ("coords","http://rsg.pml.ac.uk/wps/testdata/coords.txt"), ... ("outputSRS", "EPSG:32630"), ... ("inputSRS","EPSG:4326") ] # build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_PMLExecuteRequest5.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request6.txt000066400000000000000000000020001321706412000210630ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "v.net.path" process submitted to the PML WPS service. Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "v.net.path" >>> inputs = [ ("input","http://rsg.pml.ac.uk/wps/example/graph.gml"), ... ("file","1 -960123.1421801624 4665723.56559387 -101288.65106088226 5108200.011823481")] Build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_PMLExecuteRequest6.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request7.txt000066400000000000000000000017721321706412000211030ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "wordcount" process submitted to the Emu WPS service (https://github.com/bird-house/emu). Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution, ComplexDataInput >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "wordcount" >>> textdoc = ComplexDataInput("http://emu.readthedocs.org/en/latest/index.html") >>> inputs = [ ("text",textdoc),] Build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_EmuExecuteRequest7.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request8.txt000066400000000000000000000017641321706412000211050ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "wordcount" process submitted to the Emu WPS service (https://github.com/bird-house/emu). Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution, ComplexDataInput >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "wordcount" >>> textdoc = ComplexDataInput("Alice was beginning to get very tired ...") >>> inputs = [ ("text",textdoc),] Build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_EmuExecuteRequest8.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_request9.txt000066400000000000000000000016461321706412000211050ustar00rootroot00000000000000Python doctest file to test generation of a WPS request from input arguments. The specific request involves a "helloworld" process submitted to the Emu WPS service (https://github.com/bird-house/emu). Imports >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml >>> from owslib.wps import WebProcessingService, WPSExecution, ComplexDataInput >>> from owslib.etree import etree Process input/ouutput arguments >>> processid = "helloworld" >>> inputs = [ ("user", 'Pingu')] Build XML request for WPS process execution >>> execution = WPSExecution() >>> requestElement = execution.buildRequest(processid, inputs) >>> request = etree.tostring( requestElement ) Compare to cached XML request >>> _request = open(resource_file('wps_EmuExecuteRequest9.xml'), 'rb').read() >>> compare_xml(request, _request) True OWSLib-0.16.0/tests/doctests/wps_response6.txt000066400000000000000000000070131321706412000212420ustar00rootroot00000000000000Instantiate WPS >>> from __future__ import (absolute_import, division, print_function) >>> from tests.utils import resource_file, compare_xml, setup_logging >>> from owslib.wps import WebProcessingService >>> logger = setup_logging('INFO') Build WPS object; service has been down for some time so skip caps here >>> wps = WebProcessingService('http://rsg.pml.ac.uk/wps/vector.cgi', skip_caps=True) Execute face WPS invocation >>> request = open(resource_file('wps_PMLExecuteRequest6.xml'), 'rb').read() >>> response = open(resource_file('wps_PMLExecuteResponse6.xml'), 'rb').read() >>> >>> execution = wps.execute(None, [], request=request, response=response) Executing WPS request... Execution status=ProcessSucceeded Percent completed=0 Status message=PyWPS Process v.net.path successfully calculated Check execution result >>> execution.status 'ProcessSucceeded' >>> execution.url 'http://rsg.pml.ac.uk/wps/vector.cgi' >>> execution.statusLocation 'http://rsg.pml.ac.uk/wps/wpsoutputs/pywps-132084838963.xml' >>> execution.serviceInstance 'http://rsg.pml.ac.uk/wps/vector.cgi?service=WPS&request=GetCapabilities&version=1.0.0' >>> execution.version '1.0.0' >>> output = execution.processOutputs[0] >>> output.identifier 'output' >>> output.title 'Name for output vector map' >>> output.mimeType 'text/xml' >>> output.dataType 'ComplexData' >>> output.reference >>> response = output.data[0] >>> should_return = '''\n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t -960123.14218016264665723.56559387\n\t\t\t\t\t -101288.65106088225108200.011823481\n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t -960123.142180162365548,4665723.565593870356679,0 -960123.142180162365548,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -711230.141176006174646,4710278.48552671354264,0 -711230.141176006174646,4710278.48552671354264,0 -623656.677859728806652,4848552.374973464757204,0 -623656.677859728806652,4848552.374973464757204,0 -410100.337491964863148,4923834.82589447684586,0 -410100.337491964863148,4923834.82589447684586,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0\n\t\t\t\t\t 1\n\t\t\t\t\t 1\n\t\t\t\t\t 0\n\t\t\t\t\t 0\n\t\t\t\t\t 0\n\t\t\t\t\t 1002619.181\n\t\t\t\t\t 0\n\t\t\t\t\t 0\n\t\t\t\t\t \n\t\t\t\t\t \n\t\t\t\t\t''' >>> compare_xml(should_return, response) True OWSLib-0.16.0/tests/resources/000077500000000000000000000000001321706412000160455ustar00rootroot00000000000000OWSLib-0.16.0/tests/resources/17bd184a-7e7d-4f81-95a5-041449a7212b_iso.xml000066400000000000000000000203441321706412000240660ustar00rootroot00000000000000 17bd184a-7e7d-4f81-95a5-041449a7212b eng MD_CharacterSetCode_utf8 dataset Instituto Português do Mar e da Atmosfera email@ipma.pt pointOfContact 2015-12-16 ISO19115 2003/Cor.1:2006 Air temperature 2015-12-16 creation 17bd184a-7e7d-4f81-95a5-041449a7212b Air temperature for a 10 year period IPMA email@ipma.pt originator Atmospheric conditions GEMET - INSPIRE themes, version 1.0 2008-06-01 publication Temperature Conditions unknown otherRestrictions no limitation por climatologyMeteorologyAtmosphere -9.50 -6.19 36.96 42.15 unknown unknown http://ipma.pt dataset COMMISSION REGULATION (EC) No 1205/2008 of 3 December 2008 implementing Directive 2007/2/EC of the European Parliament and of the Council as regards metadata 2008-12-04 publication See the referenced specification OWSLib-0.16.0/tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_dc.xml000066400000000000000000000061121321706412000232060ustar00rootroot00000000000000 9250AA67-F3AC-6C12-0CB9-0662231AA181 ALLSPECIES http://purl.org/dc/dcmitype/Dataset Locations: Canada > Manitoba Locations: Canada > Ontario Locations: Canada Regional > Western Canada Locations: Canada > Nunavut Locations: Canada Regional > Territorial North Locations: Canada > Quebec Locations: Canada > Nova Scotia Locations: Canada > Newfoundland and Labrador Locations: Canada > Northwest Territories Locations: Canada > British Columbia Locations: Canada > Yukon Locations: Canada Regional > Central Canada Locations: Canada > Prince Edward Island Locations: Canada > Alberta Locations: Canada > New Brunswick Locations: International > North America Locations: Canada > Saskatchewan Locations: Canada Regional > Atlantic Canada Topic Category: Biology and Ecology Topic Category: Oceans and Coasts Topic Category: Atmosphere and Climate Topic Category: Agriculture and Farming Topic Category: Environment and Conservation Topic Category: Inland Water Resources text/xml 2009-09-03 272 Categorized Initiatives: Initiatives are referenced to a Category, Sub-Category and Subject Term index, through the cititzen science web site at http://www.citizenscience.ca EMAN Office EMAN Coordinating Office, Environment Canada 2009-09-03 http://geodiscover.cgdi.ca/wes/serviceManagerCSW/csw?service=CSW&request=GetRepositoryItem&id=030D6774-856E-17C0-E64E-4141FC8BD367 eng; CAN -90 -180 90 180 OWSLib-0.16.0/tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_dif.xml000066400000000000000000000104361321706412000233660ustar00rootroot00000000000000 ALLSPECIES EMAN Coordinating Office, Environment Canada ALLSPECIES 2009-09-03 Map service primary EMAN Office Marlene.Doyle@ec.gc.ca +01-905-336-4453 +01-905-336-4499
867 Lakeshore Road
Burlington Ontario L7R-4A6 CAN
farming climatologyMeteorologyAtmosphere biota environment inlandWaters oceans citizen science community monitoring species birds amphibians plants fish mammals reptiles insects aquatic invertebrates hunting water water quality marine freshwater groundwater waterprotection ice sustainability air weather climate change land grasslands urban forestlant arctic mining agriculture Canada > Alberta Canada > British Columbia Canada > Manitoba Canada > New Brunswick Canada > Newfoundland and Labrador Canada > Northwest Territories Canada > Nova Scotia Canada > Nunavut Canada > Ontario Canada > Prince Edward Island Canada > Quebec Canada > Saskatchewan Canada > Yukon Canada Regional > Atlantic Canada Canada Regional > Central Canada Canada Regional > Territorial North Canada Regional > Western Canada International > North America completed eng; CAN EMAN Coordinating Office, Environment Canada none 272 Categorized Initiatives: Initiatives are referenced to a Category, Sub-Category and Subject Term index, through the cititzen science web site at http://www.citizenscience.ca accessLink http://www.citizenscience.ca/ none DisplayFullMetadata.jsp?id=FBAED13B-DF3C-9CCC-95A6-27BEB390001C CEOS IDN DIF 9.7 2009-09-03 2010-09-03
OWSLib-0.16.0/tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_fgdc.xml000066400000000000000000000125711321706412000235310ustar00rootroot00000000000000 EMAN Coordinating Office, Environment Canada 20090903 ALLSPECIES Map service http://www.citizenscience.ca/ DisplayFullMetadata.jsp?id=FBAED13B-DF3C-9CCC-95A6-27BEB390001C 272 Categorized Initiatives: Initiatives are referenced to a Category, Sub-Category and Subject Term index, through the cititzen science web site at http://www.citizenscience.ca Not Specified Complete Not Specified -180 180 90 -90 NRCan Agriculture and Farming Atmosphere and Climate Biology and Ecology Environment and Conservation Inland Water Resources Oceans and Coasts Other citizen science community monitoring species birds amphibians plants fish mammals reptiles insects aquatic invertebrates hunting water water quality marine freshwater groundwater waterprotection ice sustainability air weather climate change land grasslands urban forestlant arctic mining agriculture NRCan Canada > Alberta Canada > British Columbia Canada > Manitoba Canada > New Brunswick Canada > Newfoundland and Labrador Canada > Northwest Territories Canada > Nova Scotia Canada > Nunavut Canada > Ontario Canada > Prince Edward Island Canada > Quebec Canada > Saskatchewan Canada > Yukon Canada Regional > Atlantic Canada Canada Regional > Central Canada Canada Regional > Territorial North Canada Regional > Western Canada International > North America Not Specified Not Specified EMAN Office Environment Canada Database Administrator Not Specified
867 Lakeshore Road
Burlington Ontario L7R-4A6 CAN
+01-905-336-4453 +01-905-336-4499 Marlene.Doyle@ec.gc.ca
Vector Not Specified Not Specified Not Specified Not Specified Not Specified Not Specified Not Specified ASCII Not Specified Not Specified 20090903 20100903 Not Specified Not Specified Not Specified Not Specified Not Specified Not Specified FGDC Content Standard for Digital Geospatial Metadata FGDC-STD-001-1998
OWSLib-0.16.0/tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_iso.xml000066400000000000000000000362461321706412000234250ustar00rootroot00000000000000 3f342f64-9348-11df-ba6a-0014c2c00eab eng; CAN EMAN Office Environment Canada Database Administrator +01-905-336-4453 +01-905-336-4499 867 Lakeshore Road Burlington Ontario L7R-4A6 CAN Marlene.Doyle@ec.gc.ca primary 2009-09-03 ISO 19119 Metadata Standard for Geographic Information ISO 19115:2003 ALLSPECIES 2009-09-03T11:11:11Z http://www.citizenscience.ca/ Online Resource accessLink DisplayFullMetadata.jsp?id=FBAED13B-DF3C-9CCC-95A6-27BEB390001C Associated Service Metadata none Map service 272 Categorized Initiatives: Initiatives are referenced to a Category, Sub-Category and Subject Term index, through the cititzen science web site at http://www.citizenscience.ca 2010-09-03 Agriculture and Farming Atmosphere and Climate Biology and Ecology Environment and Conservation Inland Water Resources Oceans and Coasts theme NRCan citizen science community monitoring species birds amphibians plants fish mammals reptiles insects aquatic invertebrates hunting water water quality marine freshwater groundwater waterprotection ice sustainability air weather climate change land grasslands urban forestlant arctic mining agriculture theme Other Canada > Alberta Canada > British Columbia Canada > Manitoba Canada > New Brunswick Canada > Newfoundland and Labrador Canada > Northwest Territories Canada > Nova Scotia Canada > Nunavut Canada > Ontario Canada > Prince Edward Island Canada > Quebec Canada > Saskatchewan Canada > Yukon Canada Regional > Atlantic Canada Canada Regional > Central Canada Canada Regional > Territorial North Canada Regional > Western Canada International > North America place NRCan eng; CAN farming climatologyMeteorologyAtmosphere biota environment inlandWaters oceans ALLSPECIES ASCII service OWSLib-0.16.0/tests/resources/9250AA67-F3AC-6C12-0CB9-0662231AA181_marc21.xml000066400000000000000000000104431321706412000237070ustar00rootroot00000000000000 00000 mi a2 00000zu 4500 L7R-4A6 CAN +01-905-336-4453 +01-905-336-4499 Marlene.Doyle@ec.gc.ca 272 Categorized Initiatives: Initiatives are referenced to a Category, Sub-Category and Subject Term index, through the cititzen science web site at http://www.citizenscience.ca 2009-09-03 MARC 21 Format for Bibliographic Data citizen science community monitoring species birds amphibians plants fish mammals reptiles insects aquatic invertebrates hunting water water quality marine freshwater groundwater waterprotection ice sustainability air weather climate change land grasslands urban forestlant arctic mining agriculture Agriculture and Farming Atmosphere and Climate Biology and Ecology Environment and Conservation Inland Water Resources Oceans and Coasts Canada > Alberta Canada > British Columbia Canada > Manitoba Canada > New Brunswick Canada > Newfoundland and Labrador Canada > Northwest Territories Canada > Nova Scotia Canada > Nunavut Canada > Ontario Canada > Prince Edward Island Canada > Quebec Canada > Saskatchewan Canada > Yukon Canada Regional > Atlantic Canada Canada Regional > Central Canada Canada Regional > Territorial North Canada Regional > Western Canada International > North America ALLSPECIES http://www.citizenscience.ca/ DisplayFullMetadata.jsp?id=FBAED13B-DF3C-9CCC-95A6-27BEB390001C OWSLib-0.16.0/tests/resources/cuahsi_example_all_sites.xml000066400000000000000000000250411321706412000236170ustar00rootroot00000000000000 2009-06-12T10:47:54.53125-07:00 ALL Sites(empty request) Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 Little Bear River at McMurdy Hollow near Paradise, Utah USU-LBR-Paradise 41.575552 -111.855217 428703.917 4603005.09 1445 NGVD29 Cache Utah Located below bridge at 8700 South (McMurdy Hollow) 2 Utah State University Experimental Farm near Wellsville, Utah USU-LBR-ExpFarm 41.666993 -111.890567 425861.714 4613186.929 1369 NGVD29 Cache Utah This is a continuous weather station. 3 South Fork Little Bear River below Davenport Creek near Avon, Utah USU-LBR-SFLower 41.506518 -111.815079 431977.822 4595308.471 1564 NGVD29 Cache Utah Located under a private road bridge just below the confluence with Davenport Creek. East Fork Little Bear River at Paradise Canal Diversion near Avon, Utah USU-LBR-EFLower 41.529212 -111.799324 433315.887 4597815.707 1528 NGVD29 Cache Utah Located on the Paradise Canal diversion structure. Little Bear River Upper Weather Station near Avon, Utah USU-LBR-EFWeather 41.535543 -111.805946 432770.027 4598523.785 1538 NGVD29 Cache Utah This is a continuous weather station. South Fork Little Bear River above Davenport Creek near Avon, Utah USU-LBR-SFUpper 41.495409 -111.817993 431977.822 4595308.471 1573 NGVD29 Cache Utah Located on the downstream side of a private footbridge on the Selman Ranch. Radio Repeater near Paradise, Utah USU-LBR-ParadiseRepeater 41.556736 -111.854455 428746.734 4600915.466 1693 NGVD29 Cache Utah Located on high ridge overlooking the Little Bear River. East Fork Little Bear River Radio Repeater near Avon, Utah USU-LBR-EFRepeater 41.536 -111.806 432770.027 4598523.785 1538 NGVD29 Cache Utah Co-located with the Little Bear River upper weather station in the East Fork. Little Bear River near Wellsville, Utah USU-LBR-Wellsville 41.643457 -111.917649 423579.317 4610597.583 1365 NGVD29 Cache Utah Located on the upstream side of State Highway 101 bridge. Little Bear River below Confluence of South and East Forks near Avon, Utah USU-LBR-Confluence 41.536088 -111.830455 430726.09724 4598603.64519 Cache Utah Located on the downstream side of the county bridge over the Little Bear River. Little Bear River at Paradise, Utah 10105900 41.5756 -111.8544 1445 Unknown Cache Utah This is a real time USGS streamflow gage. OWSLib-0.16.0/tests/resources/cuahsi_example_get_siteinfo_10.xml000066400000000000000000000711121321706412000246170ustar00rootroot00000000000000LittleBearRiver:USU-LBR-MendonLittle Bear River at Mendon Road near Mendon, UtahUSU-LBR-Mendon41.718473-111.946402421276.3234618952.04NGVD29CacheUtahLocated below county road bridge at Mendon Road crossingUSU3Battery voltageField ObservationMinimumvolts-9999minuteTimemin30565712005-08-04T11:30:002008-11-07T12:30:00Battery voltage measured by Campbell Scientific CR206 datalogger.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU4TurbidityField ObservationAverageWater QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU5TurbidityField ObservationVarianceWater QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU6TurbidityField ObservationWater QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU7TurbidityField ObservationBest Easy Systematic Estimator Water QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU8TurbidityField ObservationMinimumWater QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU9TurbidityField ObservationMaximumWater QualitySurface Waternephelometric turbidity units-9999secondTimes5565712005-08-04T11:30:002008-11-07T12:30:00Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU10TemperatureField ObservationContinuousWater QualitySurface Waterdegree celcius-9999secondTimes0565702005-08-04T11:30:002008-11-07T12:30:00Water temperature measured using a Forest Technology Systems DTS-12 turbidity sensor.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU11Gage heightField ObservationMinimumHydrologySurface Waterinternational foot-9999minuteTimemin30355262005-08-04T11:30:002007-08-16T13:30:00Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure TransducerUtah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU12Gage heightField ObservationMaximumHydrologySurface Waterinternational foot-9999minuteTimemin30355262005-08-04T11:30:002007-08-16T13:30:00Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure TransducerUtah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU13Gage heightField ObservationAverageHydrologySurface Waterinternational foot-9999minuteTimemin30565712005-08-04T11:30:002008-11-07T12:30:00Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure TransducerUtah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU32Oxygen, dissolvedField ObservationAverageWater QualitySurface Watermilligrams per liter-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU33Oxygen, dissolved percent of saturationField ObservationAverageWater QualitySurface Waterpercent-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU34Specific conductance, unfilteredField ObservationAverageWater QualitySurface Watermicrosiemens per centimeter-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00Specific conductance measured using a Hydrolab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU35pH, unfilteredField ObservationAverageWater QualitySurface Waterdimensionless-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00pH measured using a Hydrolab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU36TemperatureField ObservationAverageWater QualitySurface Waterdegree celcius-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU37TurbidityField ObservationAverageWater QualitySurface Waternephelometric turbidity units-9999minuteTimemin30210452007-08-16T16:30:002008-11-07T12:30:00Turbidity measured using a Hydroloab MS5 Water Quality Multiprobe.Utah State University Utah Water Research LaboratoryContinuous water quality monitoring by Utah State University as part of the USDA CEAP GrantUSU39Phosphorus, total as PSampleWater QualitySurface Watermilligrams per liter-9999292007-10-04T12:00:002008-04-14T12:30:00Water chemistry grab sample collected by technicians in the field.Utah State University Utah Water Research LaboratoryWater chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project.USU39Phosphorus, total as PSampleWater QualitySurface Watermilligrams per liter-99991412005-04-27T20:00:002007-06-07T14:20:00Water chemistry grab sample collected by technicians in the field.Utah State University Department of Watershed SciencesWater chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant.USU40Phosphorus, total as P, filteredSampleWater QualitySurface Watermilligrams per liter-9999272007-10-04T12:00:002008-04-14T12:30:00Water chemistry grab sample collected by technicians in the field.Utah State University Utah Water Research LaboratoryWater chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project.USU40Phosphorus, total as P, filteredSampleWater QualitySurface Watermilligrams per liter-99991462005-10-27T21:30:002007-06-07T14:20:00Water chemistry grab sample collected by technicians in the field.Utah State University Department of Watershed SciencesWater chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant.USU41Solids, total SuspendedSampleWater QualitySurface Watermilligrams per liter-99991462005-04-27T20:00:002007-06-07T14:20:00Water chemistry grab sample collected by technicians in the field.Utah State University Department of Watershed SciencesWater chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant.USU41Solids, total SuspendedSampleWater QualitySurface Watermilligrams per liter-9999292007-10-04T12:00:002008-05-07T11:00:00Water chemistry grab sample collected by technicians in the field.Utah State University Utah Water Research LaboratoryWater chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. OWSLib-0.16.0/tests/resources/cuahsi_example_get_values.xml000066400000000000000000004652501321706412000240100ustar00rootroot00000000000000 2009-06-12T10:48:06.75-07:00 Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU3 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 minute Time min 102 30 Not Applicable 12.91645 12.91477 12.90721 12.90301 12.89882 12.88874 12.88958 12.88706 12.88706 12.87783 12.87615 12.87531 12.86188 12.86608 12.86608 12.87195 12.86944 12.88455 13.12379 13.21193 13.41339 13.38653 13.36806 13.34372 13.30427 13.27321 13.23963 13.21025 13.21025 13.18758 13.18171 13.17247 13.16996 13.16156 13.16996 13.17499 13.18842 13.22032 13.0751 13.04908 13.02557 13.02222 13.00543 13.00291 12.98864 12.9836 12.97772 12.97437 12.95674 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 4 Battery voltage measured by Campbell Scientific CR206 datalogger. http://www.campbellsci.com 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU4 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 34.53 37.12 35.97 35.78 35.68 36.08 37.8 37.93 38.88 37.34 35.15 35.96 35.62 34.72 34.7 33.54 34.98 31.65 32.49 32.78 30.58 32.8 31.83 30.71 30.82 29.72 27.05 25.5 24.69 26.03 25.55 25.96 24.72 23.36 24.21 25.61 24.73 25.73 24.76 24.96 25.69 27.34 27.14 27.7 28.88 30.44 32.14 34.02 33.61 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU5 Turbidity Field Observation Variance Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 6.0405 5.398 9.0528 4.888 5.1165 7.9192 4.6572 9.6659 7.1312 4.4511 3.9581 6.7214 4.4404 5.4162 6.4932 5.9052 6.7214 3.351 9.0758 8.4619 11.0218 4.5278 4.3033 3.8428 6.7256 8.6434 3.8524 4.1464 2.7836 2.8127 2.1212 7.8035 2.5656 3.262 4.0393 2.2839 5.4296 4.6523 3.7411 2.6256 3.0614 4.8019 5.7754 5.147 1.4359 2.9152 4.8018 4.1266 2.3718 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU6 Turbidity Field Observation Median Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 34.18 36.77 35.9 35.65 35.48 35.67 37.47 38.16 38.28 37.52 35.14 35.39 35.56 34.48 34.44 33.23 34.63 31.7 31.65 32.68 29.51 32.94 31.61 30.24 30.28 29.46 26.85 25.12 24.64 26.06 25.18 25.63 24.38 23.19 23.66 25.57 24.19 25.57 24.26 24.94 25.48 26.93 26.58 27.52 28.87 30.41 31.87 33.76 33.45 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU7 Turbidity Field Observation Best Easy Systematic Estimator Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 34.33 36.97 35.93 35.78 35.53 35.79 37.54 38.18 38.62 37.45 35.15 35.57 35.64 34.61 34.49 33.39 34.72 31.6 32.07 32.61 29.8 32.83 31.69 30.27 30.37 29.65 26.83 25.41 24.62 26.06 25.31 25.69 24.53 23.17 23.85 25.54 24.39 25.61 24.49 24.89 25.54 27.04 26.68 27.59 28.85 30.45 31.94 33.82 33.49 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU8 Turbidity Field Observation Minimum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 30.01 31.54 29.49 31.15 29.77 30.27 34.46 30.24 34.54 32.4 30.42 30.48 31.05 28.76 29.82 28.68 29.62 28 27.63 27.71 26.36 27.48 27.84 27.95 27.09 24.04 23.36 21.61 21.17 21.92 23.05 21.04 22.16 20.2 20.2 22.24 21.43 21.64 21.82 21.3 21.92 24.09 23.07 24.32 25.73 26.8 27.79 29.9 30.84 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU9 Turbidity Field Observation Maximum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 39.86 42.07 43.63 42.67 42.49 43.37 46.16 43.94 47.51 43.32 40.48 43.76 40.97 41.7 43.63 41.94 43.97 36.91 41.73 39.7 44.7 38.45 37.17 36.94 40.53 37.04 31.94 32.01 30.97 31.7 29.93 38.55 30.63 31.18 30.74 31.02 35.14 32.3 30.66 29.41 31.28 36.68 33.99 34.23 32.46 34.1 38.94 38.92 38.21 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 2 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU10 Temperature Field Observation Continuous Water Quality Surface Water degree celcius Temperature degC 96 -9999 second Time s 100 0 Not Applicable 19.5 19.4 19.2 19.1 18.9 18.7 18.6 18.4 18.2 18.1 17.9 17.7 17.5 17.4 17.3 17.2 17.2 17.3 17.4 17.6 17.9 18.2 18.5 18.8 19.2 19.5 19.8 20.1 20.4 20.6 20.8 21 21.1 21.2 21.2 21.2 21.1 21 20.8 20.6 20.4 20.2 20.1 20 19.9 19.8 19.7 19.6 19.5 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 1 Water temperature measured using a Forest Technology Systems DTS-12 turbidity sensor. http://www.ftsinc.com/ 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU11 Gage height Field Observation Minimum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 1.721643 1.722798 1.721643 1.718178 1.718178 1.717254 1.713789 1.711248 1.71171 1.706859 1.706859 1.705011 1.701777 1.703394 1.701084 1.701315 1.704549 1.706166 1.714482 1.717716 1.726032 1.735041 1.744743 1.753752 1.764609 1.77408 1.781241 1.786092 1.791867 1.794408 1.796025 1.8018 1.805034 1.803417 1.811502 1.812657 1.813812 1.816122 1.815891 1.817046 1.820511 1.817739 1.818894 1.816122 1.819818 1.817277 1.817046 1.81335 1.813812 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 3 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer http://www.campbellsci.com/cs445-l 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU12 Gage height Field Observation Maximum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 1.726494 1.727187 1.726032 1.724415 1.720488 1.718871 1.718409 1.714944 1.716561 1.711017 1.710555 1.707783 1.706166 1.706166 1.705011 1.707321 1.710093 1.711248 1.717254 1.723722 1.730421 1.739199 1.750287 1.757679 1.770615 1.778007 1.78563 1.789095 1.796256 1.800645 1.803417 1.805496 1.80873 1.810578 1.813119 1.817277 1.815891 1.822128 1.820973 1.820511 1.823052 1.824207 1.823745 1.822128 1.823283 1.823052 1.822128 1.818663 1.817739 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 3 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer http://www.campbellsci.com/cs445-l 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU13 Gage height Field Observation Average Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 1.724415 1.724946 1.723399 1.720996 1.719656 1.718132 1.716214 1.71305 1.713142 1.708314 1.708545 1.706281 1.704018 1.704226 1.702585 1.704133 1.707044 1.708407 1.715429 1.72028 1.728504 1.737813 1.746614 1.755808 1.76782 1.77572 1.783366 1.787224 1.7942 1.796649 1.800414 1.803255 1.807182 1.806674 1.812241 1.814782 1.814782 1.81834 1.818109 1.819079 1.821735 1.820188 1.820927 1.819056 1.821758 1.819818 1.819379 1.816191 1.81566 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 3 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer http://www.campbellsci.com/cs445-l 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 SDSC45 Battery Voltage Field Observation Categorical Unknown Other dimensionless Dimensionless - 137 -9999 minute Time min 102 30 Not Applicable 1 Test 1 0 test 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13.30427 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 Raw data Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements. 4 Battery voltage measured by Campbell Scientific CR206 datalogger. http://www.campbellsci.com 1 Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Jeff Horsburgh main jeff.horsburgh@usu.edu 1-435-797-2946
8200 Old Main Hill ,Logan, UT 84322-8200
http://www.bearriverinfo.org Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant nc not censored
OWSLib-0.16.0/tests/resources/cuahsi_example_get_values_10.xml000066400000000000000000000156611321706412000243050ustar00rootroot000000000000002009-01-08T15:52:37.8495ZLittleBearRiver:USU-LBR-ParadiseLBR:USU392008-04-14T13:00:002008-04-15T12:00:00OD Web ServiceLittle Bear River at McMurdy Hollow near Paradise, UtahUSU-LBR-Paradise41.575552-111.855217428703.9174603005.09NGVD29CacheUtahLocated below bridge at 8700 South (McMurdy Hollow)USU39Phosphorus, total as PSampleWater QualitySurface Watermilligrams per liter-99990.11920.1140.14240.18140.38410.91240.06550.43420.95430.73080.70040.60970.55440.61820.54760.57280.3690.36640.47670.31440.45170.38380.47020.3890.49490.27780.35760.36180.2803Water chemistry sample collected by an automated ISCO pump sampler.Utah State University Utah Water Research LaboratoryWater chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project.Amber Spackmanmain1-435-797-0045amber.s@aggiemail.usu.edu
8200 Old Main Hill ,Logan, Utah 84322-8200
http://water.usu.edu/littlebearriver
OWSLib-0.16.0/tests/resources/cuahsi_example_get_variables.xml000066400000000000000000001140661321706412000244550ustar00rootroot00000000000000 2009-06-12T10:47:52.078125-07:00 OD Web Service USU3 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 minute Time min 102 30 Not Applicable USU4 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU5 Turbidity Field Observation Variance Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU6 Turbidity Field Observation Median Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU7 Turbidity Field Observation Best Easy Systematic Estimator Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU8 Turbidity Field Observation Minimum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU9 Turbidity Field Observation Maximum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable USU10 Temperature Field Observation Continuous Water Quality Surface Water degree celcius Temperature degC 96 -9999 second Time s 100 0 Not Applicable USU11 Gage height Field Observation Minimum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable USU12 Gage height Field Observation Maximum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable USU13 Gage height Field Observation Average Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable USU14 Temperature Field Observation Average Climate Air degree celcius Temperature degC 96 -9999 hour Time hr 103 1 Not Applicable USU15 Relative humidity Field Observation Average Climate Air percent Dimensionless % 1 -9999 hour Time hr 103 1 Not Applicable USU16 Precipitation Field Observation Incremental Climate Precipitation millimeter Length mm 54 -9999 hour Time hr 103 1 Not Applicable USU17 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 hour Time hr 103 1 Not Applicable USU18 Wind speed Field Observation Average Climate Air meters per second Velocity m/s 119 -9999 hour Time hr 103 1 Not Applicable USU19 Wind direction Field Observation Average Climate Air degree Angle deg 2 -9999 hour Time hr 103 1 Not Applicable USU20 Wind direction Field Observation StandardDeviation Climate Air degree Angle deg 2 -9999 hour Time hr 103 1 Not Applicable USU21 Barometric pressure Field Observation Continuous Climate Air millimeter of mercury Pressure/Stress mm Hg 86 -9999 second Time s 100 0 Not Applicable USU22 Radiation, incoming shortwave Field Observation Average Climate Other watts per square meter Energy Flux W/m2 33 -9999 hour Time hr 103 1 Not Applicable USU23 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 day Time d 104 1 Not Applicable USU24 Wind speed Field Observation Average Climate Air meters per second Velocity m/s 119 -9999 day Time d 104 1 Not Applicable USU25 Temperature Field Observation Minimum Climate Air degree celcius Temperature degC 96 -9999 day Time d 104 1 Not Applicable USU26 Temperature Field Observation Maximum Climate Air degree celcius Temperature degC 96 -9999 day Time d 104 1 Not Applicable USU27 Temperature Field Observation Average Climate Air degree celcius Temperature degC 96 -9999 day Time d 104 1 Not Applicable USU28 Relative humidity Field Observation Average Climate Air percent Dimensionless % 1 -9999 day Time d 104 1 Not Applicable USU29 Barometric pressure Field Observation Average Climate Air millimeter of mercury Pressure/Stress mm Hg 86 -9999 day Time d 104 1 Not Applicable USU30 Precipitation Field Observation Incremental Climate Precipitation millimeter Length mm 54 -9999 day Time d 104 1 Not Applicable USU31 Radiation, incoming shortwave Field Observation Incremental Climate Other megajoules per square meter Energy per Area MJ/m2 144 -9999 day Time d 104 1 Not Applicable USU32 Oxygen, dissolved Field Observation Average Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 minute Time min 102 30 Not Applicable USU33 Oxygen, dissolved percent of saturation Field Observation Average Water Quality Surface Water percent Dimensionless % 1 -9999 minute Time min 102 30 Not Applicable USU34 Specific conductance, unfiltered Field Observation Average Water Quality Surface Water microsiemens per centimeter Electrical Conductivity uS/cm 192 -9999 minute Time min 102 30 Not Applicable USU35 pH, unfiltered Field Observation Average Water Quality Surface Water dimensionless Dimensionless - 137 -9999 minute Time min 102 30 Not Applicable USU36 Temperature Field Observation Average Water Quality Surface Water degree celcius Temperature degC 96 -9999 minute Time min 102 30 Not Applicable USU37 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 minute Time min 102 30 Not Applicable USU38 Temperature Field Observation Average Instrumentation Other degree celcius Temperature degC 96 -9999 minute Time min 102 30 Not Applicable USU39 Phosphorus, total as P Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P USU40 Phosphorus, total as P, filtered Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P USU41 Solids, total Suspended Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 Not Applicable USU42 Gage height Field Observation Average Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 15 Not Applicable USU43 Discharge Field Observation Average Hydrology Surface Water cubic feet per second Flow cfs 35 -9999 minute Time min 102 15 Not Applicable SDSC45 Battery Voltage Field Observation Categorical Unknown Other dimensionless Dimensionless - 137 -9999 minute Time min 102 30 Not Applicable 1 Test 1 0 test 0 OWSLib-0.16.0/tests/resources/cuahsi_example_siteinfo_multiple.xml000066400000000000000000002735011321706412000254010ustar00rootroot00000000000000 2009-06-12T10:47:58.84375-07:00 Little Bear River at Mendon Road near Mendon, Utah USU-LBR-Mendon 41.718473 -111.946402 421276.323 4618952.04 1345 NGVD29 Cache Utah Located below county road bridge at Mendon Road crossing 1 USU3 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 minute Time min 102 30 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Battery voltage measured by Campbell Scientific CR206 datalogger. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU4 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU5 Turbidity Field Observation Variance Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU6 Turbidity Field Observation Median Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU7 Turbidity Field Observation Best Easy Systematic Estimator Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU8 Turbidity Field Observation Minimum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU9 Turbidity Field Observation Maximum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU10 Temperature Field Observation Continuous Water Quality Surface Water degree celcius Temperature degC 96 -9999 second Time s 100 0 Not Applicable 45898 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Water temperature measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU11 Gage height Field Observation Minimum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 35526 2005-08-04T11:30:00 2007-08-16T13:30:00 2005-08-04T18:30:00 2007-08-16T20:30:00 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU12 Gage height Field Observation Maximum Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 35526 2005-08-04T11:30:00 2007-08-16T13:30:00 2005-08-04T18:30:00 2007-08-16T20:30:00 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU13 Gage height Field Observation Average Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 45899 2005-08-04T11:30:00 2008-03-27T12:30:00 2005-08-04T18:30:00 2008-03-27T19:30:00 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU32 Oxygen, dissolved Field Observation Average Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU33 Oxygen, dissolved percent of saturation Field Observation Average Water Quality Surface Water percent Dimensionless % 1 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU34 Specific conductance, unfiltered Field Observation Average Water Quality Surface Water microsiemens per centimeter Electrical Conductivity uS/cm 192 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 Specific conductance measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU35 pH, unfiltered Field Observation Average Water Quality Surface Water dimensionless Dimensionless - 137 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 pH measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU36 Temperature Field Observation Average Water Quality Surface Water degree celcius Temperature degC 96 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU37 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 minute Time min 102 30 Not Applicable 10373 2007-08-16T16:30:00 2008-03-27T12:30:00 2007-08-16T23:30:00 2008-03-27T19:30:00 Turbidity measured using a Hydroloab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant Continuous water quality monitoring by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 0 Raw data USU39 Phosphorus, total as P Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 20 2007-10-04T12:00:00 2008-02-12T15:15:00 2007-10-04T19:00:00 2008-02-12T22:15:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data USU39 Phosphorus, total as P Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 141 2005-04-27T20:00:00 2007-06-07T14:20:00 2005-04-28T03:00:00 2007-06-07T21:20:00 Water chemistry grab sample collected by technicians in the field. Utah State University Department of Watershed Sciences Water chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 1 Quality controlled data USU40 Phosphorus, total as P, filtered Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 18 2007-10-04T12:00:00 2008-02-12T15:15:00 2007-10-04T19:00:00 2008-02-12T22:15:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data USU40 Phosphorus, total as P, filtered Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 146 2005-10-27T21:30:00 2007-06-07T14:20:00 2005-10-28T04:30:00 2007-06-07T21:20:00 Water chemistry grab sample collected by technicians in the field. Utah State University Department of Watershed Sciences Water chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 1 Quality controlled data USU41 Solids, total Suspended Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 Not Applicable 14 2007-10-04T12:00:00 2008-02-12T15:15:00 2007-10-04T19:00:00 2008-02-12T22:15:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data USU41 Solids, total Suspended Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 Not Applicable 146 2005-04-27T20:00:00 2007-06-07T14:20:00 2005-04-28T03:00:00 2007-06-07T21:20:00 Water chemistry grab sample collected by technicians in the field. Utah State University Department of Watershed Sciences Water chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, Nancy Mesner and others from Utah State University as part of the USDA Conservation Effects Assessment Grant 1 Quality controlled data Little Bear River near Wellsville, Utah USU-LBR-Wellsville 41.643457 -111.917649 423579.317 4610597.583 1365 NGVD29 Cache Utah Located on the upstream side of State Highway 101 bridge. USU3 Battery voltage Field Observation Minimum Instrumentation Other volts Potential Difference V 168 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Battery voltage measured by Campbell Scientific CR206 datalogger. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU4 Turbidity Field Observation Average Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU5 Turbidity Field Observation Variance Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU6 Turbidity Field Observation Median Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Hydroloab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU7 Turbidity Field Observation Best Easy Systematic Estimator Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU8 Turbidity Field Observation Minimum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU9 Turbidity Field Observation Maximum Water Quality Surface Water nephelometric turbidity units Turbidity NTU 221 -9999 second Time s 100 5 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU10 Temperature Field Observation Continuous Water Quality Surface Water degree celcius Temperature degC 96 -9999 second Time s 100 0 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU13 Gage height Field Observation Average Hydrology Surface Water international foot Length ft 48 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU32 Oxygen, dissolved Field Observation Average Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU33 Oxygen, dissolved percent of saturation Field Observation Average Water Quality Surface Water percent Dimensionless % 1 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU34 Specific conductance, unfiltered Field Observation Average Water Quality Surface Water microsiemens per centimeter Electrical Conductivity uS/cm 192 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Specific conductance measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU35 pH, unfiltered Field Observation Average Water Quality Surface Water dimensionless Dimensionless - 137 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 pH measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU36 Temperature Field Observation Average Water Quality Surface Water degree celcius Temperature degC 96 -9999 minute Time min 102 30 Not Applicable 7309 2007-11-05T14:30:00 2008-04-05T20:30:00 2007-11-05T21:30:00 2008-04-06T03:30:00 Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe. Utah State University Utah Water Research Laboratory Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Continuous monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 0 Raw data USU39 Phosphorus, total as P Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 12 2007-11-07T13:00:00 2008-02-12T14:40:00 2007-11-07T20:00:00 2008-02-12T21:40:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data USU40 Phosphorus, total as P, filtered Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 P 11 2007-11-07T13:00:00 2008-02-12T14:40:00 2007-11-07T20:00:00 2008-02-12T21:40:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data USU41 Solids, total Suspended Sample Sporadic Water Quality Surface Water milligrams per liter Concentration mg/L 199 -9999 second Time s 100 0 Not Applicable 9 2007-11-07T13:00:00 2008-02-12T14:40:00 2007-11-07T20:00:00 2008-02-12T21:40:00 Water chemistry grab sample collected by technicians in the field. Utah State University Utah Water Research Laboratory Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project. Water chemistry monitoring data collected by Jeff Horsburgh, David Stevens, David Tarboton, Nancy Mesner, Amber Spackman, and Sandra Gurrero at Utah State University as part of a National Science Foundation funded WATERS Network Test Bed project. 1 Quality controlled data OWSLib-0.16.0/tests/resources/eosdis-wmts-cap.xml000066400000000000000000001555111321706412000216160ustar00rootroot00000000000000 NASA Global Image Browse Services for EOSDIS Near real time imagery from multiple NASA instruments World Global OGC WMTS 1.0.0 none none National Aeronautics and Space Administration Jeff Schmaltz Principal Support Scientist Goddard Space Flight Center Greenbelt Maryland 20771 United States of America support@earthdata.nasa.gov KVP KVP AIRS_CO_Total_Column_Day -180 -90 180 90 AIRS_CO_Total_Column_Day image/png EPSG4326_2km AIRS_CO_Total_Column_Night -180 -90 180 90 AIRS_CO_Total_Column_Night image/png EPSG4326_2km AIRS_Dust_Score -180 -90 180 90 AIRS_Dust_Score image/png EPSG4326_2km AIRS_Prata_SO2_Index_Day -180 -90 180 90 AIRS_Prata_SO2_Index_Day image/png EPSG4326_2km AIRS_Prata_SO2_Index_Night -180 -90 180 90 AIRS_Prata_SO2_Index_Night image/png EPSG4326_2km AIRS_Precipitation_Day -180 -90 180 90 AIRS_Precipitation_Day image/png EPSG4326_2km AIRS_Precipitation_Night -180 -90 180 90 AIRS_Precipitation_Night image/png EPSG4326_2km MODIS_Land_Water_Mask -180 -90 180 90 MODIS_Land_Water_Mask image/png EPSG4326_250m MODIS_Terra_Snow_Cover -180 -90 180 90 MODIS_Terra_Snow_Cover image/png EPSG4326_500m MODIS_Terra_Land_Surface_Temp_Day -180 -90 180 90 MODIS_Terra_Land_Surface_Temp_Day image/png EPSG4326_1km MODIS_Terra_Land_Surface_Temp_Night -180 -90 180 90 MODIS_Terra_Land_Surface_Temp_Night image/png EPSG4326_1km MODIS_Terra_Sea_Ice -180 -90 180 90 MODIS_Terra_Sea_Ice image/png EPSG4326_1km MODIS_Terra_Brightness_Temp_Band31_Day -180 -90 180 90 MODIS_Terra_Brightness_Temp_Band31_Day image/png EPSG4326_1km MODIS_Terra_Brightness_Temp_Band31_Night -180 -90 180 90 MODIS_Terra_Brightness_Temp_Band31_Night image/png EPSG4326_1km MODIS_Terra_Aerosol -180 -90 180 90 MODIS_Terra_Aerosol image/png EPSG4326_2km MODIS_Terra_Water_Vapor_5km_Day -180 -90 180 90 MODIS_Terra_Water_Vapor_5km_Day image/png EPSG4326_2km MODIS_Terra_Water_Vapor_5km_Night -180 -90 180 90 MODIS_Terra_Water_Vapor_5km_Night image/png EPSG4326_2km MODIS_Terra_Cloud_Top_Pressure_Day -180 -90 180 90 MODIS_Terra_Cloud_Top_Pressure_Day image/png EPSG4326_2km MODIS_Terra_Cloud_Top_Pressure_Night -180 -90 180 90 MODIS_Terra_Cloud_Top_Pressure_Night image/png EPSG4326_2km MODIS_Terra_Cloud_Top_Temp_Day -180 -90 180 90 MODIS_Terra_Cloud_Top_Temp_Day image/png EPSG4326_2km MODIS_Terra_Cloud_Top_Temp_Night -180 -90 180 90 MODIS_Terra_Cloud_Top_Temp_Night image/png EPSG4326_2km MODIS_Terra_SurfaceReflectance_Bands121 -180 -90 180 90 MODIS_Terra_SurfaceReflectance_Bands121 image/jpeg EPSG4326_250m MODIS_Terra_SurfaceReflectance_Bands143 -180 -90 180 90 MODIS_Terra_SurfaceReflectance_Bands143 image/jpeg EPSG4326_500m MODIS_Terra_SurfaceReflectance_Bands721 -180 -90 180 90 MODIS_Terra_SurfaceReflectance_Bands721 image/jpeg EPSG4326_500m MODIS_Terra_CorrectedReflectance_TrueColor -180 -90 180 90 MODIS_Terra_CorrectedReflectance_TrueColor image/jpeg EPSG4326_250m MODIS_Terra_CorrectedReflectance_Bands367 -180 -90 180 90 MODIS_Terra_CorrectedReflectance_Bands367 image/jpeg EPSG4326_250m MODIS_Terra_CorrectedReflectance_Bands721 -180 -90 180 90 MODIS_Terra_CorrectedReflectance_Bands721 image/jpeg EPSG4326_250m MODIS_Terra_Data_No_Data -180 -90 180 90 MODIS_Terra_Data_No_Data image/png EPSG4326_250m MODIS_Aqua_Snow_Cover -180 -90 180 90 MODIS_Aqua_Snow_Cover image/png EPSG4326_500m MODIS_Aqua_Land_Surface_Temp_Day -180 -90 180 90 MODIS_Aqua_Land_Surface_Temp_Day image/png EPSG4326_1km MODIS_Aqua_Land_Surface_Temp_Night -180 -90 180 90 MODIS_Aqua_Land_Surface_Temp_Night image/png EPSG4326_1km MODIS_Aqua_Sea_Ice -180 -90 180 90 MODIS_Aqua_Sea_Ice image/png EPSG4326_1km MODIS_Aqua_Brightness_Temp_Band31_Day -180 -90 180 90 MODIS_Aqua_Brightness_Temp_Band31_Day image/png EPSG4326_1km MODIS_Aqua_Brightness_Temp_Band31_Night -180 -90 180 90 MODIS_Aqua_Brightness_Temp_Band31_Night image/png EPSG4326_1km MODIS_Aqua_Aerosol -180 -90 180 90 MODIS_Aqua_Aerosol image/png EPSG4326_2km MODIS_Aqua_Water_Vapor_5km_Day -180 -90 180 90 MODIS_Aqua_Water_Vapor_5km_Day image/png EPSG4326_2km MODIS_Aqua_Water_Vapor_5km_Night -180 -90 180 90 MODIS_Aqua_Water_Vapor_5km_Night image/png EPSG4326_2km MODIS_Aqua_Cloud_Top_Pressure_Day -180 -90 180 90 MODIS_Aqua_Cloud_Top_Pressure_Day image/png EPSG4326_2km MODIS_Aqua_Cloud_Top_Pressure_Night -180 -90 180 90 MODIS_Aqua_Cloud_Top_Pressure_Night image/png EPSG4326_2km MODIS_Aqua_Cloud_Top_Temp_Day -180 -90 180 90 MODIS_Aqua_Cloud_Top_Temp_Day image/png EPSG4326_2km MODIS_Aqua_Cloud_Top_Temp_Night -180 -90 180 90 MODIS_Aqua_Cloud_Top_Temp_Night image/png EPSG4326_2km MODIS_Aqua_SurfaceReflectance_Bands121 -180 -90 180 90 MODIS_Aqua_SurfaceReflectance_Bands121 image/jpeg EPSG4326_250m MODIS_Aqua_SurfaceReflectance_Bands143 -180 -90 180 90 MODIS_Aqua_SurfaceReflectance_Bands143 image/jpeg EPSG4326_500m MODIS_Aqua_SurfaceReflectance_Bands721 -180 -90 180 90 MODIS_Aqua_SurfaceReflectance_Bands721 image/jpeg EPSG4326_500m MODIS_Aqua_CorrectedReflectance_TrueColor -180 -90 180 90 MODIS_Aqua_CorrectedReflectance_TrueColor image/jpeg EPSG4326_250m MODIS_Aqua_CorrectedReflectance_Bands721 -180 -90 180 90 MODIS_Aqua_CorrectedReflectance_Bands721 image/jpeg EPSG4326_250m MODIS_Aqua_Data_No_Data -180 -90 180 90 MODIS_Aqua_Data_No_Data image/png EPSG4326_250m OMI_Absorbing_Aerosol_Optical_Depth -180 -90 180 90 OMI_Absorbing_Aerosol_Optical_Depth image/png EPSG4326_2km OMI_Aerosol_Index -180 -90 180 90 OMI_Aerosol_Index image/png EPSG4326_2km OMI_Aerosol_Optical_Depth -180 -90 180 90 OMI_Aerosol_Optical_Depth image/png EPSG4326_2km OMI_Cloud_Pressure -180 -90 180 90 OMI_Cloud_Pressure image/png EPSG4326_2km OMI_SO2_Upper_Troposphere_and_Stratosphere -180 -90 180 90 OMI_SO2_Upper_Troposphere_and_Stratosphere image/png EPSG4326_2km OMI_SO2_Planetary_Boundary_Layer -180 -90 180 90 OMI_SO2_Planetary_Boundary_Layer image/png EPSG4326_2km OMI_SO2_Lower_Troposphere -180 -90 180 90 OMI_SO2_Lower_Troposphere image/png EPSG4326_2km OMI_SO2_Middle_Troposphere -180 -90 180 90 OMI_SO2_Middle_Troposphere image/png EPSG4326_2km EPSG4326_2km urn:ogc:def:crs:OGC:1.3:CRS84 0 223382916.9173819721 -180 90 512 512 2 1 1 111691458.4586909860 -180 90 512 512 3 2 2 55845729.2293454930 -180 90 512 512 5 3 3 27922864.6146727465 -180 90 512 512 10 5 4 13961432.3073363733 -180 90 512 512 20 10 5 6980716.1536681866 -180 90 512 512 40 20 EPSG4326_1km urn:ogc:def:crs:OGC:1.3:CRS84 0 223382916.9173819721 -180 90 512 512 2 1 1 111691458.4586909860 -180 90 512 512 3 2 2 55845729.2293454930 -180 90 512 512 5 3 3 27922864.6146727465 -180 90 512 512 10 5 4 13961432.3073363733 -180 90 512 512 20 10 5 6980716.1536681866 -180 90 512 512 40 20 6 3490358.0768340933 -180 90 512 512 80 40 EPSG4326_500m urn:ogc:def:crs:OGC:1.3:CRS84 0 223382916.9173819721 -180 90 512 512 2 1 1 111691458.4586909860 -180 90 512 512 3 2 2 55845729.2293454930 -180 90 512 512 5 3 3 27922864.6146727465 -180 90 512 512 10 5 4 13961432.3073363733 -180 90 512 512 20 10 5 6980716.1536681866 -180 90 512 512 40 20 6 3490358.0768340933 -180 90 512 512 80 40 7 1745179.0384170467 -180 90 512 512 160 80 EPSG4326_250m urn:ogc:def:crs:OGC:1.3:CRS84 0 223382916.9173819721 -180 90 512 512 2 1 1 111691458.4586909860 -180 90 512 512 3 2 2 55845729.2293454930 -180 90 512 512 5 3 3 27922864.6146727465 -180 90 512 512 10 5 4 13961432.3073363733 -180 90 512 512 20 10 5 6980716.1536681866 -180 90 512 512 40 20 6 3490358.0768340933 -180 90 512 512 80 40 7 1745179.0384170467 -180 90 512 512 160 80 8 872589.5192085233 -180 90 512 512 320 160 OWSLib-0.16.0/tests/resources/erdas-iws-wmts-cap.xml000066400000000000000000002417251321706412000222310ustar00rootroot00000000000000Image Web Server WMTS sampleImage Web Server WMTS Sample servicesWMTSOTDFTile servingOGC WMTS1.0.0nonenoneIWS Sample ServerChris TweedieApollo IWS Product Manager+1 770 776 3400+1 770 776 3500Norcross, GA 30092-2500 USANorcrossGA30092-2500USAinfo@erdas.comKVPapplication/xmltext/xmlKVPFranklin.ecwfranklin.ecw-83.272616486848 39.788969241789-82.752666266401 40.148086946317image/pngimage/jpegogc:1.0:globalcrs84pixel000001000020000300114112252244655111171111222282323454594647909110140141272273112332354534551270170613601367131402141227202735142336235345344558157010706013602136751623368235364534045584177010470609136022136754ogc:1.0:globalcrs84scale00000100002001131133433665771515615153030730316060877771501519154155300302103093116006041177477915021510121548155930043020133096311960086041147742779715021151021515484155953004330205163096831191600876041017774207797815021815102518154840155956300436302051193096813119126008726041022077420377978015021821510257ogc:1.0:googlecrs84quad000001000020011311224224454488688171771717343483535686997071137138101411422752761128328555055312567571110011061311341142220122121422682285440244251545374570880488511690759140176081770317181501828135217354061836301365627043470813ogc:1.0:googlemapscompatible000001000021111333224664451212886242417177484834348969768699193194137138103873882752761177477655055312154815531100110613309631072201221214619362154402442515123871243088048851162477524860176081770317495504972135217354061899101994427043470813CharlestonCoSIDS-mosaicimages_charlestoncosids-mosaic.ecw-80.478475200510 32.404304145938-79.271648485203 33.244723102856image/pngimage/jpegogc:1.0:googlecrs84quad0000010000200113112242244555886101017177202035358404070719808114114310161163283286113223275665731264565511321146131291131022642292142582262145294584155165524290589168161033110484181171833717206632096936234366741841327419397246973348ogc:1.0:googlemapscompatible0000010000211113332246644512128862525171775151353581021037071920520714114310411414283286118238285665731216461657113211461332933315226422921465866631452945841513172132639058916816263442652618117183371752689530533623436674181053781061077246973348edinburghimages_edinburgh_edinburgh.ecw-3.464870982050 55.812000561767-3.065037540918 56.008328589172image/pngimage/jpegepsg:27700:images_edinburgh_edinburgh.ecw0000010101202033050640100125020024604104870830968016701929033403841006680769ogc:1.0:globalcrs84pixel00000100002001130022400445118863420207784141815168282931321651651095964964971115916082782912478480248224881395696149654976141593160282758293154780480724825248811615933160258275082938174780048076248252248814ogc:1.0:globalcrs84scale00000100112002231155422101055527276101054547212110910985253274274910510654854910211212109610991152753027412747121055106154835495132111212310966109911452785309274162747815105571061854832549561621115212371096641099121752789530942741602747811810557810618854832054956219211157212376109664010991242052789253094127416012747811ogc:1.0:googlecrs84quad000001000020011300334117753315156663131712126262824241251259484825125110969750250311193194100410061238638820082013137737774017402614154615558034805215309331111606816105166187622332137322101712375124476427464420182475124894128548128840ogc:1.0:googlemapscompatible00000100002111132233444775991515619193131739396262879791251259159159251251103183195025031163763910041006121275127920082013132550255840174026145101511780348052151020210234160681610516204042046832137322101740809409376427464420188161981874128548128840Landsat742landsat742.ecw-181.044000000000 -56.851110186916181.050090589420 80.063000000000image/pngimage/jpegogc:1.0:globalcrs84pixel00000100012010230104403085060166117042723408484680168991370337102741301012114668801687121392065050621327941300101251446568830168751513972065005062516465768836016875017139732065090506250ogc:1.0:globalcrs84scale0000110002202053040114090225122055634501117691022381522805599304560111810619120223611154228005590123084561011181136179122022363141543228060559081530864561201118161661729122402236321715432228060055908218308644561210111816419617289122420223632920154322228060605590822ogc:1.0:googlecrs84quad000001000120103303074060155013031612606373520127871040255914208051110284170102311568350204712113167004095132263341081911445266830163831590413366032767161808267330655351736175346601310711872351069330262143ogc:1.0:googlemapscompatible00000101012020330507411101553220316744063714880127828177025595635405111011370901023112271419020471245528380409513911567608191141822113520163831536452270403276716729045408065535171458190817013107118291631816340262143epsg:27700:images_edinburgh_edinburgh.ecw308749.999999999770 658593.749999999650333359.374999999940 679999.999999999770urn:ogc:def:crs:EPSG:6.3:277000457142.85714286308749.999999999770 679999.999999999770256256111228571.42857143308749.999999999770 679999.999999999770256256222114285.714285715308749.999999999770 679999.99999999977025625643357142.8571428575308749.999999999770 679999.99999999977025625676428571.42857142875308749.999999999770 679999.9999999997702562561311514285.71428571438308749.999999999770 679999.999999999770256256252167142.857142857188308749.999999999770 679999.999999999770256256494273571.428571428594308749.999999999770 679999.999999999770256256978481785.714285714297308749.999999999770 679999.9999999997702562561931689892.8571428571485308749.999999999770 679999.99999999977025625638533510446.4285714285742308749.999999999770 679999.999999999770256256770669ogc:1.0:globalcrs84pixel-180.000000000000 -90.000000000000180.000000000000 90.000000000000urn:ogc:def:crs:OGC:1.3:CRS84urn:ogc:def:wkss:OGC:1.0:GlobalCRS84Pixel0795139219.9519541-180.000000000000 90.000000000000256256111397569609.9759771-180.000000000000 90.000000000000256256212198784804.9879885-180.000000000000 90.000000000000256256323132523203.3253257-180.000000000000 90.00000000000025625653466261601.66266284-180.000000000000 90.00000000000025625695533130800.83133142-180.000000000000 90.000000000000256256179613252320.33253257-180.000000000000 90.000000000000256256432276626160.166266284-180.000000000000 90.000000000000256256854383313080.083133142-180.000000000000 90.0000000000002562561698591656540.041566571-180.000000000000 90.00000000000025625633816910552180.0138555236-180.000000000000 90.000000000000256256101350711331308.0083133142-180.000000000000 90.000000000000256256168884412110436.0027711047-180.000000000000 90.000000000000256256506325321355218.00138555237-180.000000000000 90.0000000000002562561012650631433130.80083133142-180.000000000000 90.0000000000002562561687684381511043.60027711047-180.000000000000 90.0000000000002562565062625313163313.080083133142-180.000000000000 90.00000000000025625616875184376171104.360027711047-180.000000000000 90.000000000000256256506251253126ogc:1.0:globalcrs84scale-180.000000000000 -90.000000000000180.000000000000 90.000000000000urn:ogc:def:crs:OGC:1.3:CRS84urn:ogc:def:wkss:OGC:1.0:GlobalCRS84Scale0500000000-180.000000000000 90.000000000000256256211250000000-180.000000000000 90.000000000000256256322100000000-180.000000000000 90.00000000000025625663350000000-180.000000000000 90.000000000000256256126425000000-180.000000000000 90.0000000000002562562312510000000-180.000000000000 90.000000000000256256562865000000-180.000000000000 90.0000000000002562561125672500000-180.000000000000 90.00000000000025625622411281000000-180.000000000000 90.0000000000002562565602809500000-180.000000000000 90.000000000000256256111956010250000-180.000000000000 90.0000000000002562562237111911100000-180.000000000000 90.000000000000256256559127961250000-180.000000000000 90.0000000000002562561118255911325000-180.000000000000 90.00000000000025625622364111821410000-180.000000000000 90.0000000000002562565590927955155000-180.000000000000 90.00000000000025625611181755909162500-180.000000000000 90.000000000000256256223633111817171000-180.000000000000 90.00000000000025625655908327954218500-180.000000000000 90.000000000000256256111816555908319250-180.000000000000 90.0000000000002562562236330111816520100-180.000000000000 90.00000000000025625655908232795412ogc:1.0:googlecrs84quad-180.000000000000 -90.000000000000180.000000000000 90.000000000000urn:ogc:def:crs:OGC:1.3:CRS84urn:ogc:def:wkss:OGC:1.0:GoogleCRS84Quad0559082264.0287178-180.000000000000 180.000000000000256256111279541132.0143589-180.000000000000 90.000000000000256256222139770566.0071794-180.000000000000 90.00000000000025625644369885283.00358972-180.000000000000 90.00000000000025625688434942641.50179486-180.000000000000 90.0000000000002562561616517471320.75089743-180.000000000000 90.000000000000256256323268735660.375448715-180.000000000000 90.000000000000256256646474367830.187724357-180.000000000000 90.00000000000025625612812882183915.093862179-180.000000000000 90.00000000000025625625625691091957.546931089-180.000000000000 90.00000000000025625651251210545978.7734655447-180.000000000000 90.0000000000002562561024102411272989.3867327723-180.000000000000 90.0000000000002562562048204812136494.6933663862-180.000000000000 90.000000000000256256409640961368247.34668319309-180.000000000000 90.000000000000256256819281921434123.67334159654-180.000000000000 90.00000000000025625616384163841517061.83667079827-180.000000000000 90.0000000000002562563276832768168530.918335399136-180.000000000000 90.0000000000002562566553665536174265.459167699568-180.000000000000 90.000000000000256256131072131072182132.729583849784-180.000000000000 90.000000000000256256262144262144ogc:1.0:googlemapscompatible-20037508.342790000000 -20037508.34278846500020037508.342788465000 20037508.342790000000urn:ogc:def:crs:EPSG:6.18:3:3857urn:ogc:def:wkss:OGC:1.0:GoogleMapsCompatible0559082264.0287178-20037508.342790000000 20037508.342790000000256256111279541132.0143589-20037508.342790000000 20037508.342790000000256256222139770566.0071794-20037508.342790000000 20037508.34279000000025625644369885283.00358972-20037508.342790000000 20037508.34279000000025625688434942641.50179486-20037508.342790000000 20037508.3427900000002562561616517471320.75089743-20037508.342790000000 20037508.342790000000256256323268735660.375448715-20037508.342790000000 20037508.342790000000256256646474367830.187724357-20037508.342790000000 20037508.34279000000025625612812882183915.093862179-20037508.342790000000 20037508.34279000000025625625625691091957.546931089-20037508.342790000000 20037508.34279000000025625651251210545978.7734655447-20037508.342790000000 20037508.3427900000002562561024102411272989.3867327723-20037508.342790000000 20037508.3427900000002562562048204812136494.6933663862-20037508.342790000000 20037508.342790000000256256409640961368247.34668319309-20037508.342790000000 20037508.342790000000256256819281921434123.67334159654-20037508.342790000000 20037508.34279000000025625616384163841517061.83667079827-20037508.342790000000 20037508.3427900000002562563276832768168530.918335399136-20037508.342790000000 20037508.3427900000002562566553665536174265.459167699568-20037508.342790000000 20037508.342790000000256256131072131072182132.729583849784-20037508.342790000000 20037508.342790000000256256262144262144 OWSLib-0.16.0/tests/resources/erdas-iws13-wmts-cap.xml000066400000000000000000002454341321706412000223760ustar00rootroot00000000000000Service powered by ERDAS APOLLO Essentials 2013Service powered by ERDAS APOLLO Essentials 2013, the fastest most efficient image server availableECWECWPODTFJPEG 2000OGC WMTS1.0.0NoneNoneIntergraph Geospatial ServerChris TweedieAPOLLO Essentials Product Owner+1 770 776 3400+1 770 776 3500Norcross, GA 30092-2500 USANorcrossGA30092-2500USAerdasinfo@intergraph.comKVPKVPCharlestonCoSIDS-mosaic.ecwECWJPEG 2000OTDFimages_CharlestonCoSIDS-mosaic.ecw-80.478475200510 32.404304145938-79.271648485203 33.244723102856image/pngimage/jpegimage/png8image/jpegxrimage/webpogc:1.0:globalcrs84pixel000001000020000300114112252244666111171313232382626464795353939410159161279283112662694664721279880913991416131596161927992832142660269946654721157981809913995141641626604269974665047216177981280993139952141649ogc:1.0:googlemapscompatible0000010000211113332246644512128862525171775151353581021037071920520714114310411414283286118238285665731216461657113211461332933315226422921465866631452945841513172132639058916816263442652618117183371752689530533623436674181053781061077246973348surdec-matched.ecwECWJPEG 2000OTDFimages_surdec-matched.ecw-117.670705286285 41.861087438687-116.333386904513 46.090287184527image/pngimage/jpegimage/png8image/jpegxrimage/webpogc:1.0:globalcrs84pixel0000010000200003000041111522226557771011141482022292994145585910123135175179112052252922981261767687689513123413531753179014205822562921298415617467698765895316205822256529216298431761748676958765089531ogc:1.0:googlemapscompatible00000100002110032211455225111155622231111745472222890954445918119088901036338017718111727761354362121455152270972413291130451418144814582260902836289715116451218156735795162329124362113461159017465834872422693231801893166974484538646360las_vegas_mosaic_epsg_32107.ecwECWJPEG 2000OTDFimages_vegas_las_vegas_mosaic_epsg_32107.ecw-115.331662787780 36.089104325775-115.145379425753 36.276758064006image/pngimage/jpegimage/png8image/jpegxrimage/webpogc:1.0:globalcrs84pixel0000010000200003000041111522336667771212151582525303095050606010151151181182112512523033041275575890991213151015161818182414251825273031304015755475819093912016251822527030313304001775548758129093991201ogc:1.0:globalcrs84scale00000100002001131122433445881010616162020733334040883831001009166167200201103333344014021183483710041007121668167420082014133337334840174028148343837210043100711516686167442008620143163337333489401724028717834328372310043010071918166865167447200860201439193337303348954017214028782083432583723910043031007196ogc:1.0:googlemapscompatible000001000021100333114662251212556252511117505022238100100454692002009192104014011831841180280336736812160416077357371332093214147114751464186428294329511512836128575886590316256722571411772118061751345514292354523612181026901028594709047225Landsat742.ecwThis 756 gigapixel input image compressed down to only 27gb and was generated in 2006ECWGigapixelJPEG 2000OTDFimages_world_Landsat742.ecw-181.044000000000 -56.851110186916181.050090589420 80.063000000000image/pngimage/jpegimage/png8image/jpegxrimage/webpgooglemapscompatibleext2:epsg:3857000001010120203305074111015532203167440637148801278281770255956354051110113709010231122714190204712455283804095139115676081911418221135201638315364522704032767167290454080655351714581908170131071182916318163402621431958326363269052428720116652726539010485752123330414530780209715122466609290615704194303239332195812315083886072418664391162463001677721525373287823249260033554431ogc:1.0:globalcrs84pixel00000100012010230104403085060166117042723408484680168991370337102741301012114668801687121392065050621327941300101251446568830168751513972065005062516465768836016875017139732065090506250ogc:1.0:globalcrs84scale0000110002202053040114090225122055634501117691022381522805599304560111810619120223611154228005590123084561011181136179122022363141543228060559081530864561201118161661729122402236321715432228060055908218308644561210111816419617289122420223632920154322228060605590822ogc:1.0:googlecrs84quad000001000120103303074060155013031612606373520127871040255914208051110284170102311568350204712113167004095132263341081911445266830163831590413366032767161808267330655351736175346601310711872351069330262143ogc:1.0:googlemapscompatible00000101012020330507411101553220316744063714880127828177025595635405111011370901023112271419020471245528380409513911567608191141822113520163831536452270403276716729045408065535171458190817013107118291631816340262143worldgeodemo.ecwECWJPEG 2000OTDFsampleiws_images_geodetic_worldgeodemo.ecw-180.000000000000 -89.999999999992179.999999999985 90.000000000000image/pngimage/jpegimage/png8image/jpegxrimage/webpogc:1.0:googlemapscompatible0000010101203033070740150155031031606306370127012780255025590511051110110220102311320440204712640890409513138178081911426163570163831553327140327671610765428065535172141308570131071184292617140262143googlemapscompatibleext2:epsg:3857-7729747.578286225900 -20037508.34267792500015579224.549163515000 20037508.342677925000urn:ogc:def:crs:EPSG:6.3:38570559082264.028669600000020037508.342790000000 -20037508.342790000000256256111279541132.014334800000020037508.342790000000 -20037508.342790000000256256222139770566.007167400000020037508.342790000000 -20037508.34279000000025625644369885283.003583699000020037508.342790000000 -20037508.34279000000025625688434942641.501791850000020037508.342790000000 -20037508.3427900000002562561616517471320.750895925000020037508.342790000000 -20037508.342790000000256256323268735660.375447962400020037508.342790000000 -20037508.342790000000256256646474367830.187723981200020037508.342790000000 -20037508.34279000000025625612812882183915.093861990600020037508.342790000000 -20037508.34279000000025625625625691091957.546930995300020037508.342790000000 -20037508.34279000000025625651251210545978.773465497650020037508.342790000000 -20037508.3427900000002562561024102411272989.386732748830020037508.342790000000 -20037508.3427900000002562562048204812136494.693366374410020037508.342790000000 -20037508.342790000000256256409640961368247.346683187207020037508.342790000000 -20037508.342790000000256256819281921434123.673341593603020037508.342790000000 -20037508.34279000000025625616384163841517061.836670796802020037508.342790000000 -20037508.3427900000002562563276832768168530.918335398400820037508.342790000000 -20037508.3427900000002562566553665536174265.459167699200420037508.342790000000 -20037508.342790000000256256131072131072182132.729583849600220037508.342790000000 -20037508.342790000000256256262144262144191066.364791924800120037508.342790000000 -20037508.34279000000025625652428852428820533.182395962400120037508.342790000000 -20037508.3427900000002562561048576104857621266.591197981200020037508.342790000000 -20037508.3427900000002562562097152209715222133.295598990600020037508.342790000000 -20037508.342790000000256256419430441943042366.647799495300020037508.342790000000 -20037508.342790000000256256838860883886082433.323899747650020037508.342790000000 -20037508.34279000000025625616777216167772162516.661949873825020037508.342790000000 -20037508.3427900000002562563355443233554432ogc:1.0:globalcrs84pixel41.861087438687 -117.67070528628546.090287184527 -116.333386904513urn:ogc:def:crs:OGC:1.3:CRS840795139219.951954130000090.000000000000 -180.000000000000256256111397569609.975977120000090.000000000000 -180.000000000000256256212198784804.987988500000090.000000000000 -180.000000000000256256323132523203.325325700000090.000000000000 -180.00000000000025625653466261601.662662841000090.000000000000 -180.00000000000025625695533130800.831331421000090.000000000000 -180.000000000000256256179613252320.332532570000090.000000000000 -180.000000000000256256432276626160.166266284000090.000000000000 -180.000000000000256256854383313080.083133142000090.000000000000 -180.0000000000002562561698591656540.041566571000090.000000000000 -180.00000000000025625633816910552180.013855523550090.000000000000 -180.000000000000256256101350711331308.008313314170090.000000000000 -180.000000000000256256168884412110436.002771104700090.000000000000 -180.000000000000256256506325321355218.001385552372090.000000000000 -180.0000000000002562561012650631433130.800831331420090.000000000000 -180.0000000000002562561687684381511043.600277110470090.000000000000 -180.0000000000002562565062625313163313.080083133142190.000000000000 -180.00000000000025625616875184376171104.360027711047090.000000000000 -180.000000000000256256506251253126ogc:1.0:globalcrs84scale-56.851110186916 -181.04400000000080.063000000000 181.050090589420urn:ogc:def:crs:OGC:1.3:CRS840500000000.000000000000090.000000000000 -180.000000000000256256211250000000.000000000000090.000000000000 -180.000000000000256256322100000000.000000000000090.000000000000 -180.00000000000025625663350000000.000000000000090.000000000000 -180.000000000000256256126425000000.000000000000090.000000000000 -180.0000000000002562562312510000000.000000000000090.000000000000 -180.000000000000256256562865000000.000000000000090.000000000000 -180.0000000000002562561125672500000.000000000000090.000000000000 -180.00000000000025625622411281000000.000000000000090.000000000000 -180.0000000000002562565602809500000.000000000000090.000000000000 -180.000000000000256256111956010250000.000000000000090.000000000000 -180.0000000000002562562237111911100000.000000000000090.000000000000 -180.000000000000256256559127961250000.000000000000090.000000000000 -180.0000000000002562561118255911325000.000000000000090.000000000000 -180.00000000000025625622364111821410000.000000000000090.000000000000 -180.0000000000002562565590927955155000.000000000000090.000000000000 -180.00000000000025625611181755909162500.000000000000090.000000000000 -180.000000000000256256223633111817171000.000000000000090.000000000000 -180.00000000000025625655908327954218500.000000000000090.000000000000 -180.000000000000256256111816555908319250.000000000000090.000000000000 -180.0000000000002562562236330111816520100.000000000000090.000000000000 -180.00000000000025625655908232795412ogc:1.0:googlecrs84quad-56.851110186916 -181.04400000000080.063000000000 181.050090589420urn:ogc:def:crs:OGC:1.3:CRS840559082264.0287177600000180.000000000000 -180.000000000000256256111279541132.014358880000090.000000000000 -180.000000000000256256222139770566.007179410000090.000000000000 -180.00000000000025625644369885283.003589720000090.000000000000 -180.00000000000025625688434942641.501794860000090.000000000000 -180.0000000000002562561616517471320.750897430000090.000000000000 -180.000000000000256256323268735660.375448714900090.000000000000 -180.000000000000256256646474367830.187724356500090.000000000000 -180.00000000000025625612812882183915.093862179200090.000000000000 -180.00000000000025625625625691091957.546931088900090.000000000000 -180.00000000000025625651251210545978.773465544680090.000000000000 -180.0000000000002562561024102411272989.386732772280090.000000000000 -180.0000000000002562562048204812136494.693366386200090.000000000000 -180.000000000000256256409640961368247.346683193085090.000000000000 -180.000000000000256256819281921434123.673341596543090.000000000000 -180.00000000000025625616384163841517061.836670798271090.000000000000 -180.0000000000002562563276832768168530.918335399135790.000000000000 -180.0000000000002562566553665536174265.459167699567890.000000000000 -180.000000000000256256131072131072182132.729583849783990.000000000000 -180.000000000000256256262144262144ogc:1.0:googlemapscompatible-13099042.993754653000 5140193.675259463500-12950173.392467234000 5794829.628623475300urn:ogc:def:crs:EPSG:6.18:3:38570559082264.0287177600000-20037508.342790000000 20037508.342790000000256256111279541132.0143588800000-20037508.342790000000 20037508.342790000000256256222139770566.0071794100000-20037508.342790000000 20037508.34279000000025625644369885283.0035897200000-20037508.342790000000 20037508.34279000000025625688434942641.5017948600000-20037508.342790000000 20037508.3427900000002562561616517471320.7508974300000-20037508.342790000000 20037508.342790000000256256323268735660.3754487149000-20037508.342790000000 20037508.342790000000256256646474367830.1877243565000-20037508.342790000000 20037508.34279000000025625612812882183915.0938621792000-20037508.342790000000 20037508.34279000000025625625625691091957.5469310889000-20037508.342790000000 20037508.34279000000025625651251210545978.7734655446800-20037508.342790000000 20037508.3427900000002562561024102411272989.3867327722800-20037508.342790000000 20037508.3427900000002562562048204812136494.6933663862000-20037508.342790000000 20037508.342790000000256256409640961368247.3466831930850-20037508.342790000000 20037508.342790000000256256819281921434123.6733415965430-20037508.342790000000 20037508.34279000000025625616384163841517061.8366707982710-20037508.342790000000 20037508.3427900000002562563276832768168530.9183353991357-20037508.342790000000 20037508.3427900000002562566553665536174265.4591676995678-20037508.342790000000 20037508.342790000000256256131072131072182132.7295838497839-20037508.342790000000 20037508.342790000000256256262144262144 OWSLib-0.16.0/tests/resources/geoserver21-wmts-cap.xml000066400000000000000000034301171321706412000224750ustar00rootroot00000000000000 Web Map Tile Service - GeoWebCache OGC WMTS 1.0.0 http://geonode.iwlearn.org/geoserver/gwc/service/wmts GeoWebCache User KVP KVP KVP LMEs US Large Marine Ecosystem Program Publication_Date: 2002 64 Large Marine Ecosystems of the World http://www.lme.noaa.gov/index.php?option=com_content&view=article&id=177&Itemid=75 -180.000000000079 -85.4702835081022 179.999999999874 82.8930358882265 geonode:LMEs_64 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 -1 1 EPSG:4326:1 1 2 -1 3 EPSG:4326:2 1 4 -1 7 EPSG:4326:3 1 8 -1 15 EPSG:4326:4 1 16 -1 31 EPSG:4326:5 2 32 -1 63 EPSG:4326:6 3 63 -1 127 EPSG:4326:7 6 125 -1 255 EPSG:4326:8 11 250 -1 511 EPSG:4326:9 21 500 -1 1023 EPSG:4326:10 41 999 -1 2047 EPSG:4326:11 81 1997 -1 4095 EPSG:4326:12 162 3993 -1 8191 EPSG:4326:13 324 7986 -1 16383 EPSG:4326:14 647 15972 -1 32767 EPSG:4326:15 1294 31944 -1 65535 EPSG:4326:16 2588 63887 -1 131071 EPSG:4326:17 5176 127774 -1 262143 EPSG:4326:18 10351 255548 -1 524287 EPSG:4326:19 20701 511095 -1 1048575 EPSG:4326:20 41402 1022189 -1 2097151 null 82803 2044377 -1 4194303 EPSG:900913 EPSG:900913:0 1 1 -1 0 EPSG:900913:1 1 2 -1 1 EPSG:900913:2 1 4 -1 3 EPSG:900913:3 1 8 -1 7 EPSG:900913:4 1 16 -1 15 EPSG:900913:5 2 32 -1 31 EPSG:900913:6 4 64 -1 63 EPSG:900913:7 8 128 -1 127 EPSG:900913:8 15 256 -1 255 EPSG:900913:9 30 512 -1 511 EPSG:900913:10 60 1024 -1 1023 EPSG:900913:11 119 2048 -1 2047 EPSG:900913:12 237 4096 -1 4095 EPSG:900913:13 473 8192 -1 8191 EPSG:900913:14 946 16384 -1 16383 EPSG:900913:15 1891 32768 -1 32767 EPSG:900913:16 3782 65536 -1 65535 EPSG:900913:17 7564 131072 -1 131071 EPSG:900913:18 15128 262144 -1 262143 EPSG:900913:19 30255 524288 -1 524287 EPSG:900913:20 60510 1048576 -1 1048575 EPSG:900913:21 121019 2097152 -1 2097151 EPSG:900913:22 242037 4194303 -1 4194303 EPSG:900913:23 484073 8388606 -1 8388607 EPSG:900913:24 968145 16777212 -1 16777215 EPSG:900913:25 1936290 33554423 -1 33554431 EPSG:900913:26 3872579 67108846 -1 67108863 EPSG:900913:27 7745158 134217691 -1 134217727 EPSG:900913:28 15490315 268435381 -1 268435455 EPSG:900913:29 30980630 536870761 -1 536870911 null 61961259 1073741521 -1 1073741823 Hotspots Revisited 2004 Polygons The biodiversity hotspots are regions known to hold especially high numbers of species found nowhere else, yet their remaining habitat combined covers a little more than two percent of Earth's land surface. According to the criteria developed by Myers et al. (2000), a hotspot must meet two thresholds in order to qualify: 1) it must have at least 1500 endemic, native vascular plant species, and 2) it must have already lost at least 70% of its primary, native vegetation. In the updated analysis, Mittermeier et al. (2004) recognize 34 hotspots which together hold 50% of the world's plant species and 42% of all terrestrial vertebrates as endemics. As evidence of their urgency for global conservation, hotspots also hold exceptionally high numbers of threatened vertebrates, including 50% of threatened mammals, 73% of threatened birds and 79% of threatened amphibians as endemics. There are an estimated two billion people living in the hotspots, with 300 million people within less than 10 km of existing protected areas. -180.0 -57.2103296175916 180.0 47.262476 geonode:hotspots_revisited_2004_polygons image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 2 7 0 15 EPSG:4326:4 4 14 0 31 EPSG:4326:5 8 27 0 63 EPSG:4326:6 16 53 0 127 EPSG:4326:7 31 105 0 255 EPSG:4326:8 61 210 0 511 EPSG:4326:9 122 419 0 1023 EPSG:4326:10 244 838 0 2047 EPSG:4326:11 487 1675 0 4095 EPSG:4326:12 973 3350 0 8191 EPSG:4326:13 1946 6700 0 16383 EPSG:4326:14 3891 13400 0 32767 EPSG:4326:15 7781 26799 0 65535 EPSG:4326:16 15561 53598 0 131071 EPSG:4326:17 31121 107196 0 262143 EPSG:4326:18 62242 214391 0 524287 EPSG:4326:19 124483 428782 0 1048575 EPSG:4326:20 248965 857563 0 2097151 null 497929 1715125 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 2 3 0 3 EPSG:900913:3 3 6 0 7 EPSG:900913:4 6 12 0 15 EPSG:900913:5 12 23 0 31 EPSG:900913:6 23 45 0 63 EPSG:900913:7 45 89 0 127 EPSG:900913:8 90 178 0 255 EPSG:900913:9 180 356 0 511 EPSG:900913:10 360 712 0 1023 EPSG:900913:11 719 1423 0 2047 EPSG:900913:12 1437 2846 0 4095 EPSG:900913:13 2873 5692 0 8191 EPSG:900913:14 5746 11383 0 16383 EPSG:900913:15 11491 22765 0 32767 EPSG:900913:16 22981 45529 0 65535 EPSG:900913:17 45961 91058 0 131071 EPSG:900913:18 91922 182116 0 262143 EPSG:900913:19 183844 364232 0 524287 EPSG:900913:20 367688 728463 0 1048575 EPSG:900913:21 735376 1456925 0 2097151 EPSG:900913:22 1470752 2913849 0 4194303 EPSG:900913:23 2941504 5827697 0 8388607 EPSG:900913:24 5883007 11655394 0 16777215 EPSG:900913:25 11766014 23310787 0 33554431 EPSG:900913:26 23532027 46621574 0 67108863 EPSG:900913:27 47064054 93243148 0 134217727 EPSG:900913:28 94128107 186486295 0 268435455 EPSG:900913:29 188256213 372972590 0 536870911 null 376512425 745945179 0 1073741823 Asfalto No abstract provided -73.0082509941895 -54.926884020476 -53.6397060154901 -21.949338979524 geonode:asfalto image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 2 2 1 1 EPSG:4326:2 3 4 2 2 EPSG:4326:3 5 7 4 5 EPSG:4326:4 10 13 9 11 EPSG:4326:5 20 26 19 22 EPSG:4326:6 40 52 38 44 EPSG:4326:7 80 104 76 89 EPSG:4326:8 160 207 152 179 EPSG:4326:9 319 413 304 359 EPSG:4326:10 637 825 608 718 EPSG:4326:11 1274 1649 1217 1437 EPSG:4326:12 2548 3298 2434 2875 EPSG:4326:13 5095 6596 4869 5750 EPSG:4326:14 10190 13192 9738 11501 EPSG:4326:15 20380 26384 19477 23003 EPSG:4326:16 40760 52767 38954 46006 EPSG:4326:17 81520 105533 77909 92012 EPSG:4326:18 163039 211066 155818 184025 EPSG:4326:19 326077 422131 311636 368051 EPSG:4326:20 652153 844261 623272 736102 null 1304305 1688521 1246544 1472204 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 2 2 0 0 EPSG:900913:2 3 3 1 1 EPSG:900913:3 5 6 2 2 EPSG:900913:4 10 11 4 5 EPSG:900913:5 19 22 9 11 EPSG:900913:6 37 44 19 22 EPSG:900913:7 73 88 38 44 EPSG:900913:8 145 175 76 89 EPSG:900913:9 289 350 152 179 EPSG:900913:10 577 700 304 359 EPSG:900913:11 1153 1400 608 718 EPSG:900913:12 2305 2799 1217 1437 EPSG:900913:13 4609 5598 2434 2875 EPSG:900913:14 9217 11196 4869 5750 EPSG:900913:15 18433 22392 9738 11501 EPSG:900913:16 36866 44784 19477 23003 EPSG:900913:17 73731 89568 38954 46006 EPSG:900913:18 147461 179136 77909 92012 EPSG:900913:19 294922 358272 155818 184025 EPSG:900913:20 589844 716543 311636 368051 EPSG:900913:21 1179688 1433086 623272 736102 EPSG:900913:22 2359376 2866171 1246544 1472204 EPSG:900913:23 4718751 5732342 2493088 2944408 EPSG:900913:24 9437501 11464684 4986176 5888816 EPSG:900913:25 18875001 22929367 9972353 11777633 EPSG:900913:26 37750001 45858733 19944707 23555266 EPSG:900913:27 75500002 91717465 39889415 47110532 EPSG:900913:28 151000004 183434930 79778830 94221064 EPSG:900913:29 302000007 366869859 159557660 188442128 null 604000014 733739718 319115321 376884257 GOH Areas Protegidas No abstract provided -92.1708755499344 12.9867324851599 -84.2739865773823 18.4886492579626 geonode:GH_Areas_Protegidas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 17 EPSG:4326:6 26 28 31 34 EPSG:4326:7 51 55 62 68 EPSG:4326:8 102 110 124 136 EPSG:4326:9 204 220 249 272 EPSG:4326:10 407 439 499 544 EPSG:4326:11 814 877 999 1089 EPSG:4326:12 1628 1753 1998 2178 EPSG:4326:13 3255 3505 3997 4356 EPSG:4326:14 6510 7010 7994 8713 EPSG:4326:15 13019 14020 15988 17426 EPSG:4326:16 26037 28040 31977 34852 EPSG:4326:17 52073 56080 63955 69705 EPSG:4326:18 104146 112159 127910 139411 EPSG:4326:19 208292 224318 255820 278822 EPSG:4326:20 416584 448635 511641 557644 null 833168 897270 1023283 1115288 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 17 EPSG:900913:7 58 60 31 34 EPSG:900913:8 115 119 62 68 EPSG:900913:9 230 238 124 136 EPSG:900913:10 459 475 249 272 EPSG:900913:11 917 950 499 544 EPSG:900913:12 1834 1899 999 1089 EPSG:900913:13 3668 3798 1998 2178 EPSG:900913:14 7336 7596 3997 4356 EPSG:900913:15 14672 15192 7994 8713 EPSG:900913:16 29343 30384 15988 17426 EPSG:900913:17 58685 60767 31977 34852 EPSG:900913:18 117370 121534 63955 69705 EPSG:900913:19 234739 243067 127910 139411 EPSG:900913:20 469477 486134 255820 278822 EPSG:900913:21 938953 972267 511641 557644 EPSG:900913:22 1877905 1944534 1023283 1115288 EPSG:900913:23 3755810 3889067 2046566 2230577 EPSG:900913:24 7511620 7778133 4093133 4461155 EPSG:900913:25 15023240 15556266 8186267 8922311 EPSG:900913:26 30046480 31112531 16372535 17844622 EPSG:900913:27 60092959 62225061 32745070 35689244 EPSG:900913:28 120185917 124450121 65490141 71378489 EPSG:900913:29 240371833 248900242 130980283 142756978 null 480743666 497800484 261960567 285513956 GOH Limites Administrativos Pol No abstract provided -91.5491561886513 13.6825897531336 -85.9409430240659 18.2425100374545 geonode:GH_Limites_Administrativos_Pol4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 16 EPSG:4326:6 26 28 31 33 EPSG:4326:7 52 55 62 66 EPSG:4326:8 103 109 125 133 EPSG:4326:9 205 218 251 267 EPSG:4326:10 409 435 503 535 EPSG:4326:11 817 869 1006 1070 EPSG:4326:12 1633 1737 2012 2140 EPSG:4326:13 3266 3474 4025 4280 EPSG:4326:14 6532 6947 8050 8561 EPSG:4326:15 13064 13894 16101 17122 EPSG:4326:16 26127 27787 32203 34245 EPSG:4326:17 52253 55573 64407 68491 EPSG:4326:18 104505 111146 128815 136983 EPSG:4326:19 209009 222291 257631 273966 EPSG:4326:20 418018 444582 515263 547933 null 836036 889163 1030527 1095867 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 16 EPSG:900913:7 58 60 31 33 EPSG:900913:8 115 119 62 66 EPSG:900913:9 230 237 125 133 EPSG:900913:10 460 473 251 267 EPSG:900913:11 919 946 503 535 EPSG:900913:12 1837 1891 1006 1070 EPSG:900913:13 3674 3782 2012 2140 EPSG:900913:14 7348 7564 4025 4280 EPSG:900913:15 14695 15127 8050 8561 EPSG:900913:16 29390 30254 16101 17122 EPSG:900913:17 58779 60507 32203 34245 EPSG:900913:18 117558 121013 64407 68491 EPSG:900913:19 235116 242026 128815 136983 EPSG:900913:20 470232 484051 257631 273966 EPSG:900913:21 940464 968101 515263 547933 EPSG:900913:22 1880927 1936202 1030527 1095867 EPSG:900913:23 3761854 3872403 2061054 2191734 EPSG:900913:24 7523707 7744805 4122108 4383469 EPSG:900913:25 15047413 15489609 8244216 8766939 EPSG:900913:26 30094826 30979218 16488432 17533879 EPSG:900913:27 60189651 61958436 32976864 35067758 EPSG:900913:28 120379302 123916872 65953729 70135516 EPSG:900913:29 240758603 247833744 131907458 140271032 null 481517206 495667488 263814917 280542065 GOH Ecosistemas Maritimos Manglares No abstract provided -89.0876077064601 15.7186393192374 -86.8776474039516 18.1505888521312 geonode:GH_Manglares4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 52 53 64 66 EPSG:4326:8 103 106 129 132 EPSG:4326:9 205 212 258 264 EPSG:4326:10 409 423 517 529 EPSG:4326:11 818 846 1034 1059 EPSG:4326:12 1635 1691 2068 2119 EPSG:4326:13 3270 3381 4137 4238 EPSG:4326:14 6540 6762 8275 8476 EPSG:4326:15 13080 13523 16550 16952 EPSG:4326:16 26160 27046 33100 33904 EPSG:4326:17 52320 54091 66200 67809 EPSG:4326:18 104639 108181 132400 135619 EPSG:4326:19 209277 216361 264801 271238 EPSG:4326:20 418554 432721 529603 542477 null 837107 865441 1059206 1084954 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 64 66 EPSG:900913:9 230 234 129 132 EPSG:900913:10 460 467 258 264 EPSG:900913:11 919 934 517 529 EPSG:900913:12 1838 1867 1034 1059 EPSG:900913:13 3676 3734 2068 2119 EPSG:900913:14 7352 7468 4137 4238 EPSG:900913:15 14704 14935 8275 8476 EPSG:900913:16 29408 29870 16550 16952 EPSG:900913:17 58815 59740 33100 33904 EPSG:900913:18 117629 119480 66200 67809 EPSG:900913:19 235257 238960 132400 135619 EPSG:900913:20 470514 477919 264801 271238 EPSG:900913:21 941027 955838 529603 542477 EPSG:900913:22 1882054 1911676 1059206 1084954 EPSG:900913:23 3764108 3823351 2118412 2169908 EPSG:900913:24 7528216 7646701 4236824 4339816 EPSG:900913:25 15056432 15293402 8473649 8679632 EPSG:900913:26 30112863 30586803 16947298 17359264 EPSG:900913:27 60225726 61173605 33894596 34718529 EPSG:900913:28 120451451 122347210 67789193 69437058 EPSG:900913:29 240902902 244694420 135578386 138874117 null 481805804 489388839 271156772 277748235 CASPECO: Gas and Oil tanks and wells in the Caspian No abstract provided 40.0419500000007 35.0063800000007 64.9717299999993 48.5551699999996 geonode:GIS_OTHER_VEC_CASP_OIL_PNT image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 1 2 4 5 EPSG:4326:3 2 3 9 10 EPSG:4326:4 4 5 19 21 EPSG:4326:5 8 10 39 43 EPSG:4326:6 15 20 78 87 EPSG:4326:7 30 40 156 174 EPSG:4326:8 59 79 312 348 EPSG:4326:9 118 157 625 696 EPSG:4326:10 236 313 1251 1393 EPSG:4326:11 472 626 2503 2787 EPSG:4326:12 944 1252 5007 5574 EPSG:4326:13 1887 2503 10014 11148 EPSG:4326:14 3773 5006 20028 22297 EPSG:4326:15 7545 10012 40057 44595 EPSG:4326:16 15090 20023 80114 89191 EPSG:4326:17 30180 40046 160229 178382 EPSG:4326:18 60359 80091 320459 356765 EPSG:4326:19 120717 160181 640918 713531 EPSG:4326:20 241434 320362 1281837 1427063 null 482868 640723 2563674 2854127 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 4 4 5 EPSG:900913:4 6 7 9 10 EPSG:900913:5 12 13 19 21 EPSG:900913:6 23 26 39 43 EPSG:900913:7 45 51 78 87 EPSG:900913:8 89 102 156 174 EPSG:900913:9 177 203 312 348 EPSG:900913:10 354 406 625 696 EPSG:900913:11 708 812 1251 1393 EPSG:900913:12 1415 1623 2503 2787 EPSG:900913:13 2829 3245 5007 5574 EPSG:900913:14 5658 6490 10014 11148 EPSG:900913:15 11315 12979 20028 22297 EPSG:900913:16 22630 25958 40057 44595 EPSG:900913:17 45259 51915 80114 89191 EPSG:900913:18 90518 103829 160229 178382 EPSG:900913:19 181036 207658 320459 356765 EPSG:900913:20 362071 415316 640918 713531 EPSG:900913:21 724141 830632 1281837 1427063 EPSG:900913:22 1448282 1661264 2563674 2854127 EPSG:900913:23 2896563 3322528 5127349 5708255 EPSG:900913:24 5793126 6645056 10254698 11416510 EPSG:900913:25 11586252 13290112 20509396 22833020 EPSG:900913:26 23172503 26580224 41018792 45666040 EPSG:900913:27 46345006 53160448 82037584 91332080 EPSG:900913:28 92690011 106320895 164075169 182664161 EPSG:900913:29 185380022 212641789 328150339 365328322 null 370760044 425283577 656300679 730656644 GOH Ecosistemas Maritimos Arrecifes Coralinos No abstract provided -88.8016940057223 15.8007859749312 -85.8126303980002 19.1160338627881 geonode:GH_Arrecifes_Coralinos4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 51 53 64 66 EPSG:4326:8 101 106 129 133 EPSG:4326:9 202 212 259 267 EPSG:4326:10 404 423 518 535 EPSG:4326:11 807 845 1037 1071 EPSG:4326:12 1614 1689 2075 2143 EPSG:4326:13 3227 3377 4150 4286 EPSG:4326:14 6453 6754 8301 8573 EPSG:4326:15 12905 13508 16602 17146 EPSG:4326:16 25809 27016 33204 34292 EPSG:4326:17 51617 54031 66408 68585 EPSG:4326:18 103233 108061 132817 137170 EPSG:4326:19 206465 216121 265634 274340 EPSG:4326:20 412930 432242 531268 548681 null 825859 864484 1062537 1097362 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 64 66 EPSG:900913:9 229 234 129 133 EPSG:900913:10 457 467 259 267 EPSG:900913:11 914 933 518 535 EPSG:900913:12 1827 1866 1037 1071 EPSG:900913:13 3653 3732 2075 2143 EPSG:900913:14 7306 7464 4150 4286 EPSG:900913:15 14611 14928 8301 8573 EPSG:900913:16 29222 29855 16602 17146 EPSG:900913:17 58444 59709 33204 34292 EPSG:900913:18 116887 119418 66408 68585 EPSG:900913:19 233773 238836 132817 137170 EPSG:900913:20 467546 477671 265634 274340 EPSG:900913:21 935092 955341 531268 548681 EPSG:900913:22 1870184 1910681 1062537 1097362 EPSG:900913:23 3740367 3821362 2125074 2194724 EPSG:900913:24 7480734 7642723 4250149 4389449 EPSG:900913:25 14961467 15285446 8500298 8778899 EPSG:900913:26 29922933 30570892 17000596 17557798 EPSG:900913:27 59845866 61141783 34001192 35115596 EPSG:900913:28 119691731 122283565 68002385 70231193 EPSG:900913:29 239383461 244567129 136004771 140462386 null 478766921 489134257 272009542 280924772 CASPECO: Oil and Gas Pipelines in the Caspian Region No abstract provided 39.9984499999991 35.0 65.0008300000009 50.0 geonode:GIS_OTHER_VEC_CASP_PIPELIN image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 1 2 4 5 EPSG:4326:3 2 3 9 10 EPSG:4326:4 4 5 19 21 EPSG:4326:5 8 10 39 43 EPSG:4326:6 15 20 78 87 EPSG:4326:7 29 40 156 174 EPSG:4326:8 57 79 312 348 EPSG:4326:9 114 157 625 696 EPSG:4326:10 228 313 1251 1393 EPSG:4326:11 456 626 2503 2787 EPSG:4326:12 911 1252 5006 5575 EPSG:4326:13 1821 2504 10012 11150 EPSG:4326:14 3641 5007 20024 22300 EPSG:4326:15 7282 10013 40049 44601 EPSG:4326:16 14564 20025 80098 89202 EPSG:4326:17 29128 40050 160197 178404 EPSG:4326:18 58255 80100 320395 356808 EPSG:4326:19 116509 160200 640791 713616 EPSG:4326:20 233017 320399 1281583 1427233 null 466034 640797 2563167 2854466 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 4 4 5 EPSG:900913:4 6 7 9 10 EPSG:900913:5 11 13 19 21 EPSG:900913:6 22 26 39 43 EPSG:900913:7 44 51 78 87 EPSG:900913:8 87 102 156 174 EPSG:900913:9 174 203 312 348 EPSG:900913:10 348 406 625 696 EPSG:900913:11 695 812 1251 1393 EPSG:900913:12 1390 1623 2503 2787 EPSG:900913:13 2779 3245 5006 5575 EPSG:900913:14 5557 6490 10012 11150 EPSG:900913:15 11114 12980 20024 22300 EPSG:900913:16 22227 25959 40049 44601 EPSG:900913:17 44453 51918 80098 89202 EPSG:900913:18 88905 103835 160197 178404 EPSG:900913:19 177810 207670 320395 356808 EPSG:900913:20 355620 415339 640791 713616 EPSG:900913:21 711239 830678 1281583 1427233 EPSG:900913:22 1422477 1661355 2563167 2854466 EPSG:900913:23 2844953 3322710 5126335 5708933 EPSG:900913:24 5689906 6645419 10252670 11417866 EPSG:900913:25 11379811 13290838 20505341 22835732 EPSG:900913:26 22759621 26581676 41010683 45671464 EPSG:900913:27 45519242 53163351 82021367 91342929 EPSG:900913:28 91038483 106326702 164042734 182685859 EPSG:900913:29 182076965 212653404 328085468 365371719 null 364153929 425306808 656170936 730743439 GOH Ecosistemas Maritimos: Pastos Marinos No abstract provided -88.8228664730587 15.8338405431673 -87.6978282871073 17.9458901005546 geonode:GH_Pastos_Marinos4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 32 EPSG:4326:7 52 53 64 65 EPSG:4326:8 103 106 129 131 EPSG:4326:9 205 211 259 262 EPSG:4326:10 410 422 518 525 EPSG:4326:11 820 844 1037 1050 EPSG:4326:12 1640 1688 2074 2100 EPSG:4326:13 3280 3376 4149 4200 EPSG:4326:14 6559 6751 8299 8401 EPSG:4326:15 13118 13502 16598 16803 EPSG:4326:16 26235 27004 33196 33606 EPSG:4326:17 52469 54007 66393 67212 EPSG:4326:18 104937 108013 132786 134424 EPSG:4326:19 209873 216025 265572 268849 EPSG:4326:20 419746 432050 531145 537699 null 839492 864099 1062290 1075398 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 32 EPSG:900913:8 116 117 64 65 EPSG:900913:9 231 234 129 131 EPSG:900913:10 461 467 259 262 EPSG:900913:11 921 933 518 525 EPSG:900913:12 1841 1866 1037 1050 EPSG:900913:13 3681 3732 2074 2100 EPSG:900913:14 7362 7463 4149 4200 EPSG:900913:15 14724 14925 8299 8401 EPSG:900913:16 29447 29849 16598 16803 EPSG:900913:17 58893 59697 33196 33606 EPSG:900913:18 117786 119393 66393 67212 EPSG:900913:19 235571 238786 132786 134424 EPSG:900913:20 471141 477571 265572 268849 EPSG:900913:21 942282 955141 531145 537699 EPSG:900913:22 1884563 1910281 1062290 1075398 EPSG:900913:23 3769125 3820561 2124581 2150796 EPSG:900913:24 7538250 7641122 4249162 4301592 EPSG:900913:25 15076499 15282244 8498324 8603185 EPSG:900913:26 30152997 30564487 16996649 17206371 EPSG:900913:27 60305993 61128974 33993299 34412743 EPSG:900913:28 120611985 122257947 67986598 68825487 EPSG:900913:29 241223969 244515894 135973196 137650975 null 482447938 489031788 271946393 275301950 GOH Ecosistemas Maritimos: Estuarios y Lagunas No abstract provided -89.4133838185608 15.3559428521054 -85.4850113601971 19.719200129845 geonode:GH_Estuarios_y_Lagunas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 25 27 32 33 EPSG:4326:7 50 54 64 67 EPSG:4326:8 100 107 128 134 EPSG:4326:9 200 213 257 268 EPSG:4326:10 400 425 515 537 EPSG:4326:11 800 850 1030 1075 EPSG:4326:12 1600 1699 2061 2150 EPSG:4326:13 3199 3398 4122 4301 EPSG:4326:14 6398 6795 8245 8602 EPSG:4326:15 12795 13589 16490 17205 EPSG:4326:16 25589 27178 32981 34411 EPSG:4326:17 51177 54355 65963 68823 EPSG:4326:18 102354 108709 131926 137647 EPSG:4326:19 204708 217417 263852 275294 EPSG:4326:20 409416 434834 527705 550589 null 818831 869667 1055410 1101179 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 57 59 32 33 EPSG:900913:8 114 117 64 67 EPSG:900913:9 228 234 128 134 EPSG:900913:10 455 468 257 268 EPSG:900913:11 910 936 515 537 EPSG:900913:12 1820 1872 1030 1075 EPSG:900913:13 3639 3743 2061 2150 EPSG:900913:14 7277 7485 4122 4301 EPSG:900913:15 14553 14970 8245 8602 EPSG:900913:16 29106 29939 16490 17205 EPSG:900913:17 58211 59877 32981 34411 EPSG:900913:18 116421 119754 65963 68823 EPSG:900913:19 232842 239508 131926 137647 EPSG:900913:20 465684 479016 263852 275294 EPSG:900913:21 931367 958031 527705 550589 EPSG:900913:22 1862733 1916062 1055410 1101179 EPSG:900913:23 3725465 3832123 2110821 2202358 EPSG:900913:24 7450929 7664245 4221642 4404717 EPSG:900913:25 14901857 15328490 8443284 8809435 EPSG:900913:26 29803713 30656979 16886569 17618870 EPSG:900913:27 59607425 61313958 33773138 35237741 EPSG:900913:28 119214850 122627915 67546276 70475483 EPSG:900913:29 238429699 245255829 135092553 140950967 null 476859398 490511657 270185106 281901934 Marine Ecoregions of the World (MEOW) MEOW is a biogeographic classification of the world's coasts and shelves. It is the first ever comprehensive marine classification system with clearly defined boundaries and definitions and was developed to closely link to existing regional systems. The ecoregions nest within the broader biogeographic tiers of Realms and Provinces. -180.000000000079 -89.9000004650818 179.999999999874 86.919396288676 geonode:meow_ecos image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 -1 1 EPSG:4326:1 1 2 -1 3 EPSG:4326:2 1 4 -1 7 EPSG:4326:3 1 8 -1 15 EPSG:4326:4 1 16 -1 31 EPSG:4326:5 1 32 -1 63 EPSG:4326:6 2 64 -1 127 EPSG:4326:7 3 128 -1 255 EPSG:4326:8 5 256 -1 511 EPSG:4326:9 9 512 -1 1023 EPSG:4326:10 18 1024 -1 2047 EPSG:4326:11 36 2047 -1 4095 EPSG:4326:12 71 4094 -1 8191 EPSG:4326:13 141 8188 -1 16383 EPSG:4326:14 281 16375 -1 32767 EPSG:4326:15 561 32750 -1 65535 EPSG:4326:16 1122 65500 -1 131071 EPSG:4326:17 2244 131000 -1 262143 EPSG:4326:18 4487 261999 -1 524287 EPSG:4326:19 8973 523997 -1 1048575 EPSG:4326:20 17946 1047994 -1 2097151 null 35892 2095987 -1 4194303 EPSG:900913 EPSG:900913:0 1 1 -1 0 EPSG:900913:1 1 2 -1 1 EPSG:900913:2 1 4 -1 3 EPSG:900913:3 1 8 -1 7 EPSG:900913:4 1 16 -1 15 EPSG:900913:5 1 32 -1 31 EPSG:900913:6 1 64 -1 63 EPSG:900913:7 1 128 -1 127 EPSG:900913:8 1 256 -1 255 EPSG:900913:9 1 512 -1 511 EPSG:900913:10 1 1024 -1 1023 EPSG:900913:11 1 2048 -1 2047 EPSG:900913:12 1 4096 -1 4095 EPSG:900913:13 1 8192 -1 8191 EPSG:900913:14 1 16384 -1 16383 EPSG:900913:15 1 32768 -1 32767 EPSG:900913:16 1 65536 -1 65535 EPSG:900913:17 1 131072 -1 131071 EPSG:900913:18 1 262144 -1 262143 EPSG:900913:19 1 524288 -1 524287 EPSG:900913:20 1 1048576 -1 1048575 EPSG:900913:21 1 2097152 -1 2097151 EPSG:900913:22 2 4194303 -1 4194303 EPSG:900913:23 3 8388606 -1 8388607 EPSG:900913:24 5 16777212 -1 16777215 EPSG:900913:25 10 33554423 -1 33554431 EPSG:900913:26 19 67108846 -1 67108863 EPSG:900913:27 38 134217691 -1 134217727 EPSG:900913:28 76 268435381 -1 268435455 EPSG:900913:29 152 536870761 -1 536870911 null 304 1073741521 -1 1073741823 FREPLATA: Área de estudio del Proyecto Carta del área del Proyecto FREPLATA, realizada según levantamientos (2002). -59.45964 -39.52893 -50.88609 -33.7466 geonode:area_de_estudio_1 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 2 2 1 1 EPSG:4326:2 3 3 2 2 EPSG:4326:3 6 6 5 5 EPSG:4326:4 11 12 10 11 EPSG:4326:5 22 24 21 22 EPSG:4326:6 44 47 42 45 EPSG:4326:7 88 93 85 91 EPSG:4326:8 176 185 171 183 EPSG:4326:9 352 369 342 367 EPSG:4326:10 704 737 685 734 EPSG:4326:11 1408 1474 1371 1469 EPSG:4326:12 2816 2948 2742 2938 EPSG:4326:13 5632 5896 5485 5876 EPSG:4326:14 11264 11791 10971 11752 EPSG:4326:15 22528 23581 21943 23504 EPSG:4326:16 45055 47161 43887 47008 EPSG:4326:17 90110 94321 87774 94017 EPSG:4326:18 180220 188641 175549 188035 EPSG:4326:19 360439 377281 351099 376071 EPSG:4326:20 720877 754561 702198 752143 null 1441753 1509122 1404396 1504286 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 2 2 0 0 EPSG:900913:2 3 3 1 1 EPSG:900913:3 5 5 2 2 EPSG:900913:4 10 10 5 5 EPSG:900913:5 20 20 10 11 EPSG:900913:6 39 40 21 22 EPSG:900913:7 77 80 42 45 EPSG:900913:8 154 159 85 91 EPSG:900913:9 308 318 171 183 EPSG:900913:10 615 635 342 367 EPSG:900913:11 1229 1270 685 734 EPSG:900913:12 2457 2539 1371 1469 EPSG:900913:13 4913 5077 2742 2938 EPSG:900913:14 9826 10154 5485 5876 EPSG:900913:15 19651 20307 10971 11752 EPSG:900913:16 39301 40614 21943 23504 EPSG:900913:17 78602 81228 43887 47008 EPSG:900913:18 157204 162456 87774 94017 EPSG:900913:19 314407 324911 175549 188035 EPSG:900913:20 628814 649822 351099 376071 EPSG:900913:21 1257628 1299644 702198 752143 EPSG:900913:22 2515256 2599288 1404396 1504286 EPSG:900913:23 5030512 5198576 2808793 3008572 EPSG:900913:24 10061024 10397152 5617587 6017144 EPSG:900913:25 20122047 20794304 11235175 12034288 EPSG:900913:26 40244094 41588607 22470351 24068577 EPSG:900913:27 80488188 83177213 44940703 48137154 EPSG:900913:28 160976376 166354426 89881406 96274309 EPSG:900913:29 321952751 332708851 179762813 192548618 null 643905502 665417702 359525627 385097236 GOH Ecosistemas Terrestres No abstract provided -92.2402420036243 12.9833164215088 -83.13030242933 18.4958782196044 geonode:GH_ecosistemas_terrestres4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 17 EPSG:4326:6 26 28 31 34 EPSG:4326:7 51 55 62 68 EPSG:4326:8 102 110 124 137 EPSG:4326:9 204 220 249 275 EPSG:4326:10 407 439 499 551 EPSG:4326:11 814 877 998 1102 EPSG:4326:12 1628 1753 1997 2204 EPSG:4326:13 3255 3506 3994 4408 EPSG:4326:14 6509 7011 7988 8817 EPSG:4326:15 13017 14021 15976 17634 EPSG:4326:16 26034 28041 31952 35269 EPSG:4326:17 52068 56082 63904 70538 EPSG:4326:18 104136 112164 127809 141076 EPSG:4326:19 208271 224328 255618 282153 EPSG:4326:20 416542 448655 511237 564306 null 833084 897310 1022475 1128613 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 17 EPSG:900913:7 58 60 31 34 EPSG:900913:8 115 119 62 68 EPSG:900913:9 230 238 124 137 EPSG:900913:10 459 475 249 275 EPSG:900913:11 917 950 499 551 EPSG:900913:12 1834 1899 998 1102 EPSG:900913:13 3668 3798 1997 2204 EPSG:900913:14 7336 7596 3994 4408 EPSG:900913:15 14671 15192 7988 8817 EPSG:900913:16 29341 30384 15976 17634 EPSG:900913:17 58682 60768 31952 35269 EPSG:900913:18 117364 121536 63904 70538 EPSG:900913:19 234728 243072 127809 141076 EPSG:900913:20 469455 486144 255618 282153 EPSG:900913:21 938909 972287 511237 564306 EPSG:900913:22 1877817 1944574 1022475 1128613 EPSG:900913:23 3755633 3889148 2044950 2257227 EPSG:900913:24 7511265 7778296 4089901 4514455 EPSG:900913:25 15022530 15556592 8179802 9028910 EPSG:900913:26 30045059 31113184 16359604 18057820 EPSG:900913:27 60090117 62226368 32719209 36115640 EPSG:900913:28 120180233 124452735 65438418 72231281 EPSG:900913:29 240360466 248905470 130876836 144462563 null 480720931 497810940 261753673 288925127 Longhurst Biogeographical Provinces This dataset represents a partition of the world oceans into provinces as defined by Longhurst (1995; 1998; 2006), and are based on the prevailing role of physical forcing as a regulator of phytoplankton distribution. The dataset represents the initial static boundaries developed at the Bedford Institute of Oceanography, Canada. Note that the boundaries of these provinces are not fixed in time and space, but are dynamic and move under seasonal and interannual changes in physical forcing. At the first level of reduction, Longhurst recognised four principal biomes (also referred to as domains in earlier publications): the Polar Biome, the Westerlies Biome, the Trade-Winds Biome, and the Coastal Boundary Zone Biome. These four Biomes are recognisable in every major ocean basin. At the next level of reduction, the ocean basins are partitioned into provinces, roughly ten for each basin. These partitions provide a template for data analysis or for making parameter assignments on a global scale. Please refer to Longhurst's publications when using these shapefiles. -180.0 -78.5001564788404 180.0 90.0000019073487 geonode:Longhurst_world_v4_2010 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 0 1 0 1 EPSG:4326:1 0 2 0 3 EPSG:4326:2 0 4 0 7 EPSG:4326:3 0 8 0 15 EPSG:4326:4 0 15 0 31 EPSG:4326:5 0 30 0 63 EPSG:4326:6 0 60 0 127 EPSG:4326:7 0 120 0 255 EPSG:4326:8 0 240 0 511 EPSG:4326:9 0 480 0 1023 EPSG:4326:10 0 959 0 2047 EPSG:4326:11 0 1918 0 4095 EPSG:4326:12 0 3835 0 8191 EPSG:4326:13 0 7669 0 16383 EPSG:4326:14 0 15338 0 32767 EPSG:4326:15 0 30675 0 65535 EPSG:4326:16 0 61350 0 131071 EPSG:4326:17 0 122699 0 262143 EPSG:4326:18 0 245397 0 524287 EPSG:4326:19 0 490793 0 1048575 EPSG:4326:20 0 981585 0 2097151 null 0 1963170 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 7 0 7 EPSG:900913:4 1 14 0 15 EPSG:900913:5 1 28 0 31 EPSG:900913:6 1 56 0 63 EPSG:900913:7 1 111 0 127 EPSG:900913:8 1 222 0 255 EPSG:900913:9 1 444 0 511 EPSG:900913:10 1 887 0 1023 EPSG:900913:11 1 1773 0 2047 EPSG:900913:12 1 3545 0 4095 EPSG:900913:13 1 7090 0 8191 EPSG:900913:14 1 14179 0 16383 EPSG:900913:15 1 28357 0 32767 EPSG:900913:16 1 56713 0 65535 EPSG:900913:17 1 113426 0 131071 EPSG:900913:18 1 226852 0 262143 EPSG:900913:19 1 453703 0 524287 EPSG:900913:20 1 907405 0 1048575 EPSG:900913:21 1 1814809 0 2097151 EPSG:900913:22 2 3629618 0 4194303 EPSG:900913:23 3 7259235 0 8388607 EPSG:900913:24 5 14518469 0 16777215 EPSG:900913:25 10 29036937 0 33554431 EPSG:900913:26 19 58073874 0 67108863 EPSG:900913:27 38 116147747 0 134217727 EPSG:900913:28 76 232295493 0 268435455 EPSG:900913:29 152 464590986 0 536870911 null 304 929181971 0 1073741823 IHO Sea Areas This dataset represents the boundaries of the major oceans and seas of the world. The source for the boundaries is the publication 'Limits of Oceans & Seas, Special Publication No. 23' published by the IHO in 1953. The dataset was composed by the Flanders Marine Data and Information Centre. -180.0 -85.4702910362554 180.0 90.0 geonode:World_Seas image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 8 0 15 EPSG:4326:4 1 16 0 31 EPSG:4326:5 1 32 0 63 EPSG:4326:6 1 63 0 127 EPSG:4326:7 1 125 0 255 EPSG:4326:8 1 250 0 511 EPSG:4326:9 1 500 0 1023 EPSG:4326:10 1 999 0 2047 EPSG:4326:11 1 1997 0 4095 EPSG:4326:12 1 3993 0 8191 EPSG:4326:13 1 7986 0 16383 EPSG:4326:14 1 15972 0 32767 EPSG:4326:15 1 31944 0 65535 EPSG:4326:16 1 63887 0 131071 EPSG:4326:17 1 127774 0 262143 EPSG:4326:18 1 255548 0 524287 EPSG:4326:19 1 511095 0 1048575 EPSG:4326:20 1 1022189 0 2097151 null 1 2044378 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 8 0 7 EPSG:900913:4 1 16 0 15 EPSG:900913:5 1 32 0 31 EPSG:900913:6 1 64 0 63 EPSG:900913:7 1 128 0 127 EPSG:900913:8 1 256 0 255 EPSG:900913:9 1 512 0 511 EPSG:900913:10 1 1024 0 1023 EPSG:900913:11 1 2048 0 2047 EPSG:900913:12 1 4096 0 4095 EPSG:900913:13 1 8192 0 8191 EPSG:900913:14 1 16384 0 16383 EPSG:900913:15 1 32768 0 32767 EPSG:900913:16 1 65536 0 65535 EPSG:900913:17 1 131072 0 131071 EPSG:900913:18 1 262144 0 262143 EPSG:900913:19 1 524288 0 524287 EPSG:900913:20 1 1048576 0 1048575 EPSG:900913:21 1 2097152 0 2097151 EPSG:900913:22 2 4194303 0 4194303 EPSG:900913:23 3 8388606 0 8388607 EPSG:900913:24 5 16777212 0 16777215 EPSG:900913:25 10 33554423 0 33554431 EPSG:900913:26 19 67108846 0 67108863 EPSG:900913:27 38 134217691 0 134217727 EPSG:900913:28 76 268435381 0 268435455 EPSG:900913:29 152 536870761 0 536870911 null 304 1073741521 0 1073741823 GOH Geologia: mapa geologico fallas No abstract provided -93.0156326401891 7.03043760090527 -57.037708591725 24.0084641167461 geonode:mapa_geologico_fallas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 3 4 3 5 EPSG:4326:4 6 8 7 10 EPSG:4326:5 12 15 15 21 EPSG:4326:6 24 30 30 43 EPSG:4326:7 47 60 61 87 EPSG:4326:8 94 119 123 174 EPSG:4326:9 188 237 247 349 EPSG:4326:10 376 473 494 699 EPSG:4326:11 751 945 989 1399 EPSG:4326:12 1502 1889 1979 2798 EPSG:4326:13 3004 3777 3958 5596 EPSG:4326:14 6007 7553 7917 11192 EPSG:4326:15 12014 15105 15835 22384 EPSG:4326:16 24027 30209 31670 44769 EPSG:4326:17 48054 60417 63340 89538 EPSG:4326:18 96108 120834 126680 179076 EPSG:4326:19 192215 241667 253360 358153 EPSG:4326:20 384429 483333 506720 716307 null 768858 966666 1013441 1432614 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 7 8 3 5 EPSG:900913:5 14 16 7 10 EPSG:900913:6 28 31 15 21 EPSG:900913:7 56 62 30 43 EPSG:900913:8 111 123 61 87 EPSG:900913:9 221 246 123 174 EPSG:900913:10 442 492 247 349 EPSG:900913:11 884 984 494 699 EPSG:900913:12 1767 1968 989 1399 EPSG:900913:13 3533 3936 1979 2798 EPSG:900913:14 7066 7872 3958 5596 EPSG:900913:15 14132 15743 7917 11192 EPSG:900913:16 28264 31485 15835 22384 EPSG:900913:17 56528 62970 31670 44769 EPSG:900913:18 113055 125940 63340 89538 EPSG:900913:19 226109 251880 126680 179076 EPSG:900913:20 452218 503759 253360 358153 EPSG:900913:21 904435 1007518 506720 716307 EPSG:900913:22 1808869 2015036 1013441 1432614 EPSG:900913:23 3617738 4030071 2026882 2865229 EPSG:900913:24 7235475 8060141 4053765 5730458 EPSG:900913:25 14470950 16120282 8107530 11460916 EPSG:900913:26 28941900 32240563 16215061 22921832 EPSG:900913:27 57883800 64481125 32430122 45843664 EPSG:900913:28 115767599 128962250 64860245 91687329 EPSG:900913:29 231535198 257924499 129720490 183374659 null 463070396 515848997 259440981 366749319 GOH Ecosistemas Maritimos: Desove Peces No abstract provided -88.3555730469767 15.8374206048607 -86.5057424681379 18.2862583859164 geonode:GH_Desove_Peces4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 51 53 65 66 EPSG:4326:8 102 106 130 132 EPSG:4326:9 204 211 260 265 EPSG:4326:10 408 422 521 531 EPSG:4326:11 816 844 1042 1063 EPSG:4326:12 1632 1688 2085 2127 EPSG:4326:13 3264 3376 4170 4255 EPSG:4326:14 6528 6751 8341 8510 EPSG:4326:15 13056 13501 16683 17020 EPSG:4326:16 26111 27002 33366 34040 EPSG:4326:17 52221 54004 66733 68080 EPSG:4326:18 104441 108008 133466 136160 EPSG:4326:19 208882 216015 266933 272321 EPSG:4326:20 417763 432029 533867 544643 null 835526 864057 1067734 1089287 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 65 66 EPSG:900913:9 230 234 130 132 EPSG:900913:10 460 467 260 265 EPSG:900913:11 919 933 521 531 EPSG:900913:12 1837 1866 1042 1063 EPSG:900913:13 3673 3731 2085 2127 EPSG:900913:14 7346 7462 4170 4255 EPSG:900913:15 14691 14924 8341 8510 EPSG:900913:16 29382 29848 16683 17020 EPSG:900913:17 58763 59695 33366 34040 EPSG:900913:18 117525 119390 66733 68080 EPSG:900913:19 235049 238780 133466 136160 EPSG:900913:20 470098 477560 266933 272321 EPSG:900913:21 940195 955119 533867 544643 EPSG:900913:22 1880390 1910238 1067734 1089287 EPSG:900913:23 3760780 3820475 2135469 2178574 EPSG:900913:24 7521560 7640949 4270939 4357148 EPSG:900913:25 15043119 15281897 8541879 8714296 EPSG:900913:26 30086238 30563794 17083759 17428592 EPSG:900913:27 60172475 61127587 34167518 34857185 EPSG:900913:28 120344950 122255173 68335037 69714371 EPSG:900913:29 240689900 244510345 136670075 139428742 null 481379799 489020689 273340150 278857485 CASPECO: Caspian sea iso lines No abstract provided 47.5146299999997 36.5736500000003 53.9116799999993 46.5376500000002 geonode:GIS_OTHER_VEC_ISOLINES image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 1 2 5 5 EPSG:4326:3 2 3 10 10 EPSG:4326:4 4 5 20 20 EPSG:4326:5 8 10 40 41 EPSG:4326:6 16 19 80 83 EPSG:4326:7 31 38 161 166 EPSG:4326:8 62 76 323 332 EPSG:4326:9 124 152 647 665 EPSG:4326:10 248 304 1294 1330 EPSG:4326:11 495 608 2588 2661 EPSG:4326:12 990 1216 5177 5322 EPSG:4326:13 1979 2432 10354 10645 EPSG:4326:14 3957 4863 20708 21291 EPSG:4326:15 7913 9726 41417 42582 EPSG:4326:16 15825 19452 82835 85164 EPSG:4326:17 31649 38904 165671 170329 EPSG:4326:18 63297 77808 331342 340658 EPSG:4326:19 126594 155616 662684 681317 EPSG:4326:20 253187 311232 1325368 1362634 null 506374 622463 2650737 2725268 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 4 5 5 EPSG:900913:4 6 7 10 10 EPSG:900913:5 12 13 20 20 EPSG:900913:6 23 26 40 41 EPSG:900913:7 46 51 80 83 EPSG:900913:8 91 101 161 166 EPSG:900913:9 182 201 323 332 EPSG:900913:10 363 401 647 665 EPSG:900913:11 725 801 1294 1330 EPSG:900913:12 1449 1601 2588 2661 EPSG:900913:13 2897 3201 5177 5322 EPSG:900913:14 5794 6402 10354 10645 EPSG:900913:15 11587 12803 20708 21291 EPSG:900913:16 23174 25606 41417 42582 EPSG:900913:17 46348 51211 82835 85164 EPSG:900913:18 92695 102422 165671 170329 EPSG:900913:19 185389 204844 331342 340658 EPSG:900913:20 370778 409688 662684 681317 EPSG:900913:21 741556 819376 1325368 1362634 EPSG:900913:22 1483112 1638752 2650737 2725268 EPSG:900913:23 2966223 3277504 5301475 5450537 EPSG:900913:24 5932446 6555007 10602950 10901074 EPSG:900913:25 11864891 13110014 21205900 21802148 EPSG:900913:26 23729782 26220028 42411801 43604297 EPSG:900913:27 47459563 52440055 84823602 87208595 EPSG:900913:28 94919125 104880110 169647204 174417190 EPSG:900913:29 189838249 209760219 339294408 348834380 null 379676498 419520437 678588816 697668760 GOH Puntos de Muestreo: Est.. muestreo propuestas No abstract provided -88.9163611099957 15.6963888897851 -86.8977703496776 17.4944526165435 geonode:GH_Est_muestreo_propuestas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 52 53 64 66 EPSG:4326:8 104 106 129 132 EPSG:4326:9 207 212 259 264 EPSG:4326:10 413 423 518 529 EPSG:4326:11 825 846 1036 1059 EPSG:4326:12 1650 1691 2072 2118 EPSG:4326:13 3300 3382 4145 4237 EPSG:4326:14 6600 6764 8290 8474 EPSG:4326:15 13200 13527 16581 16948 EPSG:4326:16 26399 27054 33162 33897 EPSG:4326:17 52797 54107 66325 67794 EPSG:4326:18 105594 108213 132650 135589 EPSG:4326:19 211188 216425 265300 271179 EPSG:4326:20 422376 432850 530600 542359 null 844751 865700 1061201 1084719 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 116 117 64 66 EPSG:900913:9 231 234 129 132 EPSG:900913:10 462 467 259 264 EPSG:900913:11 923 934 518 529 EPSG:900913:12 1846 1868 1036 1059 EPSG:900913:13 3692 3735 2072 2118 EPSG:900913:14 7384 7469 4145 4237 EPSG:900913:15 14767 14938 8290 8474 EPSG:900913:16 29533 29875 16581 16948 EPSG:900913:17 59066 59749 33162 33897 EPSG:900913:18 118131 119497 66325 67794 EPSG:900913:19 236261 238994 132650 135589 EPSG:900913:20 472521 477987 265300 271179 EPSG:900913:21 945042 955973 530600 542359 EPSG:900913:22 1890084 1911945 1061201 1084719 EPSG:900913:23 3780168 3823889 2122402 2169439 EPSG:900913:24 7560336 7647778 4244805 4338878 EPSG:900913:25 15120672 15295556 8489610 8677756 EPSG:900913:26 30241343 30591112 16979220 17355513 EPSG:900913:27 60482685 61182223 33958441 34711027 EPSG:900913:28 120965369 122364445 67916883 69422054 EPSG:900913:29 241930737 244728889 135833767 138844108 null 483861473 489457778 271667534 277688216 GOH Limites Administrativos - Departamentos No abstract provided -91.5491561889648 13.6825895309448 -86.2266464233398 17.9723300933838 geonode:GH_Departamentos4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 16 EPSG:4326:6 26 28 31 33 EPSG:4326:7 52 55 62 66 EPSG:4326:8 103 109 125 133 EPSG:4326:9 205 218 251 266 EPSG:4326:10 410 435 503 533 EPSG:4326:11 820 869 1006 1066 EPSG:4326:12 1640 1737 2012 2133 EPSG:4326:13 3279 3474 4025 4267 EPSG:4326:14 6557 6947 8050 8535 EPSG:4326:15 13113 13894 16101 17070 EPSG:4326:16 26225 27787 32203 34141 EPSG:4326:17 52449 55573 64407 68283 EPSG:4326:18 104898 111146 128815 136567 EPSG:4326:19 209796 222291 257631 273134 EPSG:4326:20 419592 444582 515263 546269 null 839184 889163 1030527 1092538 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 16 EPSG:900913:7 58 60 31 33 EPSG:900913:8 116 119 62 66 EPSG:900913:9 231 237 125 133 EPSG:900913:10 461 473 251 266 EPSG:900913:11 921 946 503 533 EPSG:900913:12 1841 1891 1006 1066 EPSG:900913:13 3681 3782 2012 2133 EPSG:900913:14 7361 7564 4025 4267 EPSG:900913:15 14721 15127 8050 8535 EPSG:900913:16 29442 30254 16101 17070 EPSG:900913:17 58883 60507 32203 34141 EPSG:900913:18 117765 121013 64407 68283 EPSG:900913:19 235530 242026 128815 136567 EPSG:900913:20 471060 484051 257631 273134 EPSG:900913:21 942120 968101 515263 546269 EPSG:900913:22 1884239 1936202 1030527 1092538 EPSG:900913:23 3768477 3872403 2061054 2185077 EPSG:900913:24 7536954 7744805 4122108 4370155 EPSG:900913:25 15073908 15489610 8244216 8740310 EPSG:900913:26 30147815 30979219 16488432 17480620 EPSG:900913:27 60295630 61958437 32976864 34961240 EPSG:900913:28 120591260 123916873 65953729 69922480 EPSG:900913:29 241182519 247833745 131907458 139844960 null 482365038 495667489 263814917 279689921 GIWA Large Marine Ecosystem/Basin Delineation GIWA_LME: Global International Waters Assessment's Terrestrial WSs and Large Marine Ecosystems, a medium resolution WS delineation based on terrestrial modifications to the NOAA-URI Large Marine Ecosystems. The GIWA_LME shapefile data layer is comprised of 2936 derivative vector large marine ecosystems and terrestrial basins features derived based on ~100 000 cell data originally from GIWA - URI. The layer provides nominal analytical/mapping at 1:20 000 00. Data processing is complete and under revision globally. -179.804885864258 -89.2641143798828 179.919998168945 89.0321578979492 geonode:giwa_lme image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 8 0 15 EPSG:4326:4 1 16 0 31 EPSG:4326:5 1 32 0 63 EPSG:4326:6 1 64 0 127 EPSG:4326:7 1 128 0 255 EPSG:4326:8 2 255 0 511 EPSG:4326:9 3 510 0 1023 EPSG:4326:10 6 1020 1 2047 EPSG:4326:11 12 2040 2 4095 EPSG:4326:12 23 4080 4 8190 EPSG:4326:13 45 8159 8 16380 EPSG:4326:14 89 16318 17 32760 EPSG:4326:15 177 32635 35 65521 EPSG:4326:16 353 65269 71 131042 EPSG:4326:17 705 130537 142 262085 EPSG:4326:18 1410 261073 284 524171 EPSG:4326:19 2820 522145 568 1048342 EPSG:4326:20 5639 1044290 1136 2096685 null 11277 2088579 2273 4193371 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 8 0 7 EPSG:900913:4 1 16 0 15 EPSG:900913:5 1 32 0 31 EPSG:900913:6 1 64 0 63 EPSG:900913:7 1 128 0 127 EPSG:900913:8 1 256 0 255 EPSG:900913:9 1 512 0 511 EPSG:900913:10 1 1024 0 1023 EPSG:900913:11 1 2048 1 2047 EPSG:900913:12 1 4096 2 4095 EPSG:900913:13 1 8192 4 8190 EPSG:900913:14 1 16384 8 16380 EPSG:900913:15 1 32768 17 32760 EPSG:900913:16 1 65536 35 65521 EPSG:900913:17 1 131072 71 131042 EPSG:900913:18 1 262144 142 262085 EPSG:900913:19 1 524288 284 524171 EPSG:900913:20 1 1048576 568 1048342 EPSG:900913:21 1 2097152 1136 2096685 EPSG:900913:22 2 4194303 2273 4193371 EPSG:900913:23 3 8388606 4546 8386743 EPSG:900913:24 5 16777212 9092 16773487 EPSG:900913:25 10 33554423 18185 33546975 EPSG:900913:26 19 67108846 36371 67093950 EPSG:900913:27 38 134217691 72743 134187901 EPSG:900913:28 76 268435381 145487 268375802 EPSG:900913:29 152 536870761 290975 536751604 null 304 1073741521 581950 1073503209 FREPLATA: Red Hidrográfica Principales cursos de agua que confluyen directamente en el Río de la Plata y su Frente Marítimo. Fuente: Departamento de Hidrología de la Provincia de Buenos Aires - Atlas Digital de los Recursos Hídricos Superficiales de la República Argentina (2002, INA), Servicio Geográfico Militar (Uruguay) y FREPLATA -63.7230583439813 -40.9819279015473 -53.1590761467877 -32.9523277282715 geonode:red_hidrografica image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 2 2 1 1 EPSG:4326:2 3 3 2 2 EPSG:4326:3 6 6 5 5 EPSG:4326:4 11 12 10 11 EPSG:4326:5 22 24 20 22 EPSG:4326:6 44 47 41 45 EPSG:4326:7 88 94 82 90 EPSG:4326:8 175 187 165 180 EPSG:4326:9 350 373 330 360 EPSG:4326:10 700 746 661 721 EPSG:4326:11 1399 1491 1322 1443 EPSG:4326:12 2798 2981 2645 2886 EPSG:4326:13 5596 5962 5291 5772 EPSG:4326:14 11192 11923 10583 11545 EPSG:4326:15 22383 23845 21167 23090 EPSG:4326:16 44766 47690 42335 46181 EPSG:4326:17 89532 95379 84670 92362 EPSG:4326:18 179063 190757 169340 184725 EPSG:4326:19 358125 381513 338681 369450 EPSG:4326:20 716250 763026 677362 738901 null 1432499 1526051 1354724 1477803 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 2 2 0 0 EPSG:900913:2 3 3 1 1 EPSG:900913:3 5 6 2 2 EPSG:900913:4 10 11 5 5 EPSG:900913:5 20 21 10 11 EPSG:900913:6 39 41 20 22 EPSG:900913:7 77 81 41 45 EPSG:900913:8 153 161 82 90 EPSG:900913:9 306 321 165 180 EPSG:900913:10 612 641 330 360 EPSG:900913:11 1223 1281 661 721 EPSG:900913:12 2446 2561 1322 1443 EPSG:900913:13 4891 5121 2645 2886 EPSG:900913:14 9782 10241 5291 5772 EPSG:900913:15 19564 20481 10583 11545 EPSG:900913:16 39128 40961 21167 23090 EPSG:900913:17 78256 81921 42335 46181 EPSG:900913:18 156512 163842 84670 92362 EPSG:900913:19 313023 327684 169340 184725 EPSG:900913:20 626045 655368 338681 369450 EPSG:900913:21 1252089 1310736 677362 738901 EPSG:900913:22 2504178 2621472 1354724 1477803 EPSG:900913:23 5008356 5242943 2709449 2955607 EPSG:900913:24 10016711 10485886 5418898 5911215 EPSG:900913:25 20033421 20971771 10837796 11822430 EPSG:900913:26 40066841 41943542 21675592 23644861 EPSG:900913:27 80133682 83887083 43351185 47289723 EPSG:900913:28 160267364 167774165 86702371 94579447 EPSG:900913:29 320534727 335548330 173404743 189158895 null 641069454 671096660 346809487 378317791 GOH Ecosistemas Maritimos: Anidamiento de aves No abstract provided -88.5671340603623 15.9489730455407 -85.6974149846346 21.6030219156867 geonode:GH_Anidamiento_de_aves4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 25 27 32 33 EPSG:4326:7 49 53 65 67 EPSG:4326:8 98 106 130 134 EPSG:4326:9 195 211 260 268 EPSG:4326:10 390 422 520 536 EPSG:4326:11 779 843 1040 1072 EPSG:4326:12 1557 1686 2080 2145 EPSG:4326:13 3113 3371 4161 4291 EPSG:4326:14 6226 6741 8322 8583 EPSG:4326:15 12452 13481 16644 17167 EPSG:4326:16 24903 26962 33289 34334 EPSG:4326:17 49806 53923 66579 68669 EPSG:4326:18 99611 107845 133158 137338 EPSG:4326:19 199221 215690 266317 274676 EPSG:4326:20 398442 431379 532635 549352 null 796883 862757 1065270 1098704 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 57 59 32 33 EPSG:900913:8 113 117 65 67 EPSG:900913:9 225 234 130 134 EPSG:900913:10 450 467 260 268 EPSG:900913:11 899 933 520 536 EPSG:900913:12 1797 1865 1040 1072 EPSG:900913:13 3593 3729 2080 2145 EPSG:900913:14 7185 7457 4161 4291 EPSG:900913:15 14370 14914 8322 8583 EPSG:900913:16 28739 29827 16644 17167 EPSG:900913:17 57478 59653 33289 34334 EPSG:900913:18 114955 119306 66579 68669 EPSG:900913:19 229910 238611 133158 137338 EPSG:900913:20 459819 477222 266317 274676 EPSG:900913:21 919637 954443 532635 549352 EPSG:900913:22 1839274 1908886 1065270 1098704 EPSG:900913:23 3678548 3817772 2130540 2197409 EPSG:900913:24 7357096 7635543 4261080 4394818 EPSG:900913:25 14714192 15271086 8522160 8789637 EPSG:900913:26 29428383 30542172 17044321 17579275 EPSG:900913:27 58856765 61084344 34088643 35158551 EPSG:900913:28 117713530 122168687 68177286 70317103 EPSG:900913:29 235427059 244337373 136354572 140634207 null 470854118 488674746 272709145 281268415 GOH Ecosistemas Maritimos: Sitios Prioritarios TNC No abstract provided -88.9529163680857 15.6814292882699 -85.5486279939099 21.8087529016653 geonode:GH_Sitios_Prioritarios_TNC4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 25 27 32 33 EPSG:4326:7 49 53 64 67 EPSG:4326:8 97 106 129 134 EPSG:4326:9 194 212 258 268 EPSG:4326:10 388 423 517 537 EPSG:4326:11 776 846 1035 1074 EPSG:4326:12 1552 1692 2071 2149 EPSG:4326:13 3104 3383 4143 4298 EPSG:4326:14 6207 6765 8287 8597 EPSG:4326:15 12414 13530 16574 17194 EPSG:4326:16 24828 27059 33149 34388 EPSG:4326:17 49656 54118 66298 68777 EPSG:4326:18 99311 108235 132596 137554 EPSG:4326:19 198622 216469 265193 275109 EPSG:4326:20 397243 432938 530387 550219 null 794486 865875 1060775 1100438 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 57 59 32 33 EPSG:900913:8 113 117 64 67 EPSG:900913:9 225 234 129 134 EPSG:900913:10 449 467 258 268 EPSG:900913:11 897 934 517 537 EPSG:900913:12 1794 1868 1035 1074 EPSG:900913:13 3588 3735 2071 2149 EPSG:900913:14 7175 7470 4143 4298 EPSG:900913:15 14350 14939 8287 8597 EPSG:900913:16 28699 29877 16574 17194 EPSG:900913:17 57397 59754 33149 34388 EPSG:900913:18 114794 119508 66298 68777 EPSG:900913:19 229587 239016 132596 137554 EPSG:900913:20 459174 478032 265193 275109 EPSG:900913:21 918348 956063 530387 550219 EPSG:900913:22 1836695 1912126 1060775 1100438 EPSG:900913:23 3673389 3824251 2121550 2200876 EPSG:900913:24 7346777 7648502 4243101 4401752 EPSG:900913:25 14693553 15297004 8486203 8803505 EPSG:900913:26 29387105 30594008 16972406 17607011 EPSG:900913:27 58774209 61188016 33944813 35214023 EPSG:900913:28 117548418 122376031 67889626 70428047 EPSG:900913:29 235096836 244752062 135779252 140856095 null 470193672 489504123 271558504 281712190 Transboundary Aquifers No abstract provided -120.244532322726 -53.0339952815958 146.75737666939 70.4935162358848 geonode:igrac_tba_WL_201105_projected image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 1 7 EPSG:4326:3 1 7 2 14 EPSG:4326:4 2 13 5 29 EPSG:4326:5 4 26 10 58 EPSG:4326:6 7 51 21 116 EPSG:4326:7 14 102 42 232 EPSG:4326:8 28 204 84 464 EPSG:4326:9 56 407 169 929 EPSG:4326:10 111 814 339 1858 EPSG:4326:11 222 1628 679 3717 EPSG:4326:12 444 3255 1359 7435 EPSG:4326:13 888 6510 2719 14871 EPSG:4326:14 1776 13020 5439 29742 EPSG:4326:15 3552 26039 10878 59484 EPSG:4326:16 7103 52078 21756 118968 EPSG:4326:17 14205 104155 43512 237937 EPSG:4326:18 28409 208309 87025 475874 EPSG:4326:19 56817 416617 174050 951749 EPSG:4326:20 113634 833234 348100 1903499 null 227268 1666467 696201 3806999 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 3 0 3 EPSG:900913:3 2 6 1 7 EPSG:900913:4 4 11 2 14 EPSG:900913:5 8 22 5 29 EPSG:900913:6 15 44 10 58 EPSG:900913:7 29 87 21 116 EPSG:900913:8 57 173 42 232 EPSG:900913:9 113 346 84 464 EPSG:900913:10 226 691 169 929 EPSG:900913:11 451 1382 339 1858 EPSG:900913:12 901 2763 679 3717 EPSG:900913:13 1801 5525 1359 7435 EPSG:900913:14 3601 11050 2719 14871 EPSG:900913:15 7201 22099 5439 29742 EPSG:900913:16 14402 44198 10878 59484 EPSG:900913:17 28803 88396 21756 118968 EPSG:900913:18 57605 176792 43512 237937 EPSG:900913:19 115209 353583 87025 475874 EPSG:900913:20 230418 707166 174050 951749 EPSG:900913:21 460836 1414331 348100 1903499 EPSG:900913:22 921672 2828661 696201 3806999 EPSG:900913:23 1843344 5657321 1392403 7613998 EPSG:900913:24 3686688 11314641 2784806 15227997 EPSG:900913:25 7373375 22629282 5569613 30455994 EPSG:900913:26 14746749 45258563 11139226 60911989 EPSG:900913:27 29493498 90517125 22278453 121823979 EPSG:900913:28 58986995 181034250 44556906 243647959 EPSG:900913:29 117973989 362068499 89113812 487295918 null 235947978 724136998 178227624 974591837 test... No abstract provided -65.7498622505297 -24.9790595951527 -64.0712474878559 -22.0790354304454 geonode:abril image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 2 2 1 1 EPSG:4326:2 3 3 2 2 EPSG:4326:3 5 6 5 5 EPSG:4326:4 10 11 10 10 EPSG:4326:5 20 21 20 20 EPSG:4326:6 40 41 40 41 EPSG:4326:7 80 82 81 82 EPSG:4326:8 160 164 162 164 EPSG:4326:9 319 328 324 329 EPSG:4326:10 638 655 649 659 EPSG:4326:11 1276 1309 1299 1319 EPSG:4326:12 2551 2617 2599 2638 EPSG:4326:13 5101 5233 5199 5276 EPSG:4326:14 10202 10466 10399 10552 EPSG:4326:15 20404 20932 20798 21104 EPSG:4326:16 40807 41863 41597 42208 EPSG:4326:17 81614 83726 83194 84416 EPSG:4326:18 163227 167451 166388 168833 EPSG:4326:19 326454 334901 332777 337666 EPSG:4326:20 652908 669802 665555 675333 null 1305816 1339604 1331110 1350667 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 2 2 0 0 EPSG:900913:2 3 3 1 1 EPSG:900913:3 5 5 2 2 EPSG:900913:4 10 10 5 5 EPSG:900913:5 19 19 10 10 EPSG:900913:6 37 37 20 20 EPSG:900913:7 73 74 40 41 EPSG:900913:8 145 147 81 82 EPSG:900913:9 289 293 162 164 EPSG:900913:10 577 586 324 329 EPSG:900913:11 1153 1171 649 659 EPSG:900913:12 2306 2342 1299 1319 EPSG:900913:13 4612 4684 2599 2638 EPSG:900913:14 9223 9367 5199 5276 EPSG:900913:15 18446 18734 10399 10552 EPSG:900913:16 36891 37467 20798 21104 EPSG:900913:17 73782 74934 41597 42208 EPSG:900913:18 147563 149867 83194 84416 EPSG:900913:19 295126 299733 166388 168833 EPSG:900913:20 590252 599466 332777 337666 EPSG:900913:21 1180503 1198932 665555 675333 EPSG:900913:22 2361005 2397863 1331110 1350667 EPSG:900913:23 4722010 4795725 2662221 2701335 EPSG:900913:24 9444020 9591449 5324442 5402671 EPSG:900913:25 18888040 19182897 10648884 10805342 EPSG:900913:26 37776080 38365793 21297769 21610685 EPSG:900913:27 75552159 76731586 42595538 43221371 EPSG:900913:28 151104318 153463171 85191077 86442743 EPSG:900913:29 302208636 306926342 170382154 172885486 null 604417271 613852684 340764309 345770972 GOH Geologia: mapa geologico provincias No abstract provided -93.0159661409384 7.02614085056831 -57.0375476811808 27.9999996191496 geonode:mapa_geologico_provincias4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 3 4 3 5 EPSG:4326:4 6 8 7 10 EPSG:4326:5 12 15 15 21 EPSG:4326:6 23 30 30 43 EPSG:4326:7 45 60 61 87 EPSG:4326:8 89 119 123 174 EPSG:4326:9 177 237 247 349 EPSG:4326:10 353 473 494 699 EPSG:4326:11 706 945 989 1399 EPSG:4326:12 1411 1889 1979 2798 EPSG:4326:13 2822 3777 3958 5596 EPSG:4326:14 5644 7553 7917 11192 EPSG:4326:15 11287 15105 15834 22384 EPSG:4326:16 22574 30210 31669 44769 EPSG:4326:17 45148 60420 63339 89538 EPSG:4326:18 90295 120840 126679 179077 EPSG:4326:19 180589 241679 253359 358154 EPSG:4326:20 361177 483358 506718 716308 null 722353 966716 1013437 1432616 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 7 8 3 5 EPSG:900913:5 14 16 7 10 EPSG:900913:6 27 31 15 21 EPSG:900913:7 54 62 30 43 EPSG:900913:8 108 123 61 87 EPSG:900913:9 215 246 123 174 EPSG:900913:10 429 492 247 349 EPSG:900913:11 858 984 494 699 EPSG:900913:12 1716 1968 989 1399 EPSG:900913:13 3432 3936 1979 2798 EPSG:900913:14 6864 7872 3958 5596 EPSG:900913:15 13728 15743 7917 11192 EPSG:900913:16 27455 31486 15834 22384 EPSG:900913:17 54910 62972 31669 44769 EPSG:900913:18 109820 125943 63339 89538 EPSG:900913:19 219639 251886 126679 179077 EPSG:900913:20 439278 503772 253359 358154 EPSG:900913:21 878556 1007543 506718 716308 EPSG:900913:22 1757111 2015086 1013437 1432616 EPSG:900913:23 3514221 4030172 2026874 2865232 EPSG:900913:24 7028441 8060343 4053749 5730465 EPSG:900913:25 14056882 16120685 8107499 11460931 EPSG:900913:26 28113763 32241370 16214999 22921862 EPSG:900913:27 56227525 64482739 32429998 45843724 EPSG:900913:28 112455049 128965478 64859996 91687449 EPSG:900913:29 224910097 257930955 129719993 183374899 null 449820194 515861910 259439986 366749799 Water Pollution Levels 2000 iu, C., Kroeze, C., Hoekstra, A.Y. and Gerbens-Leenes, W. (2012) Past and future trends in grey water footprints of anthropogenic nitrogen and phosphorus inputs to major world rivers, Ecological Indicators, 18: 42-49 -180.140388190746 -55.5 180.0 83.5 geonode:Basins image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 -1 1 EPSG:4326:1 1 2 -1 3 EPSG:4326:2 1 4 -1 7 EPSG:4326:3 1 7 -1 15 EPSG:4326:4 1 13 -1 31 EPSG:4326:5 2 26 -1 63 EPSG:4326:6 3 52 -1 127 EPSG:4326:7 5 104 -1 255 EPSG:4326:8 10 207 -1 511 EPSG:4326:9 19 414 -1 1023 EPSG:4326:10 37 828 -1 2047 EPSG:4326:11 74 1656 -2 4095 EPSG:4326:12 148 3311 -4 8191 EPSG:4326:13 296 6622 -7 16383 EPSG:4326:14 592 13244 -13 32767 EPSG:4326:15 1184 26488 -26 65535 EPSG:4326:16 2367 52975 -52 131071 EPSG:4326:17 4734 105950 -103 262143 EPSG:4326:18 9467 211900 -205 524287 EPSG:4326:19 18933 423800 -409 1048575 EPSG:4326:20 37866 847599 -818 2097151 null 75731 1695198 -1636 4194303 EPSG:900913 EPSG:900913:0 1 1 -1 0 EPSG:900913:1 1 2 -1 1 EPSG:900913:2 1 3 -1 3 EPSG:900913:3 1 6 -1 7 EPSG:900913:4 1 11 -1 15 EPSG:900913:5 2 22 -1 31 EPSG:900913:6 3 44 -1 63 EPSG:900913:7 6 88 -1 127 EPSG:900913:8 12 176 -1 255 EPSG:900913:9 23 352 -1 511 EPSG:900913:10 45 703 -1 1023 EPSG:900913:11 90 1406 -1 2047 EPSG:900913:12 179 2811 -2 4095 EPSG:900913:13 357 5621 -4 8191 EPSG:900913:14 713 11242 -7 16383 EPSG:900913:15 1425 22484 -13 32767 EPSG:900913:16 2849 44967 -26 65535 EPSG:900913:17 5697 89934 -52 131071 EPSG:900913:18 11394 179868 -103 262143 EPSG:900913:19 22788 359735 -205 524287 EPSG:900913:20 45576 719469 -409 1048575 EPSG:900913:21 91152 1438938 -818 2097151 EPSG:900913:22 182303 2877875 -1636 4194303 EPSG:900913:23 364605 5755750 -3272 8388607 EPSG:900913:24 729210 11511500 -6543 16777215 EPSG:900913:25 1458419 23022999 -13086 33554431 EPSG:900913:26 2916838 46045998 -26171 67108863 EPSG:900913:27 5833675 92091996 -52341 134217727 EPSG:900913:28 11667349 184183992 -104682 268435455 EPSG:900913:29 23334697 368367983 -209363 536870911 null 46669394 736735965 -418725 1073741823 GOH Cargas Contaminantes: Descargas 2007 No abstract provided -91.2615509030893 14.0708630086835 -86.8842458947485 17.9482355116755 geonode:GH_Descargas_2007_4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 16 EPSG:4326:6 26 27 31 33 EPSG:4326:7 52 54 63 66 EPSG:4326:8 103 108 126 132 EPSG:4326:9 205 216 252 264 EPSG:4326:10 410 432 504 529 EPSG:4326:11 820 864 1009 1059 EPSG:4326:12 1640 1728 2019 2118 EPSG:4326:13 3280 3456 4038 4237 EPSG:4326:14 6559 6912 8077 8475 EPSG:4326:15 13117 13823 16154 16951 EPSG:4326:16 26234 27645 32308 33902 EPSG:4326:17 52467 55290 64617 67804 EPSG:4326:18 104933 110580 129234 135609 EPSG:4326:19 209866 221160 258469 271219 EPSG:4326:20 419732 442320 516938 542438 null 839464 884639 1033877 1084877 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 16 EPSG:900913:7 58 59 31 33 EPSG:900913:8 116 118 63 66 EPSG:900913:9 231 236 126 132 EPSG:900913:10 461 472 252 264 EPSG:900913:11 921 944 504 529 EPSG:900913:12 1841 1887 1009 1059 EPSG:900913:13 3681 3773 2019 2118 EPSG:900913:14 7362 7546 4038 4237 EPSG:900913:15 14723 15091 8077 8475 EPSG:900913:16 29446 30181 16154 16951 EPSG:900913:17 58892 60361 32308 33902 EPSG:900913:18 117784 120722 64617 67804 EPSG:900913:19 235567 241443 129234 135609 EPSG:900913:20 471134 482886 258469 271219 EPSG:900913:21 942267 965771 516938 542438 EPSG:900913:22 1884534 1931542 1033877 1084877 EPSG:900913:23 3769068 3863083 2067755 2169754 EPSG:900913:24 7538135 7726166 4135511 4339508 EPSG:900913:25 15076269 15452332 8271022 8679017 EPSG:900913:26 30152537 30904663 16542045 17358034 EPSG:900913:27 60305073 61809325 33084091 34716069 EPSG:900913:28 120610146 123618650 66168183 69432138 EPSG:900913:29 241220292 247237300 132336366 138864277 null 482440584 494474600 264672733 277728554 The SeaVoX Salt and Fresh Water Body Gazetteer The data set consists of a polygon file defining the limits of water bodies from the SeaVoX Salt and Fresh Water Body Gazetteer. SeaVoX is a combined SeaDataNet and MarineXML vocabulary content governance group, it is moderated by BODC. This data set defines the geographic extent of the terms specified by the SeaVoX vocabulary governance to describe coherent regions of the hydrosphere. Includes land masses enclosing freshwater bodies. The coastline data set used in the shapefile is taken from the World Vector Shoreline data set (scale 1:250,000). The data set was developed as a means of defining the geographic extent of the water bodies defined in the SeaVoX salt and fresh water gazetteer. -180.000198364 -78.5702819819999 180.0 90.0000534060001 geonode:seaVoX_sea_area_polygons image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 0 1 -1 1 EPSG:4326:1 0 2 -1 3 EPSG:4326:2 0 4 -1 7 EPSG:4326:3 0 8 -1 15 EPSG:4326:4 0 15 -1 31 EPSG:4326:5 0 30 -1 63 EPSG:4326:6 0 60 -1 127 EPSG:4326:7 0 120 -1 255 EPSG:4326:8 0 240 -1 511 EPSG:4326:9 0 480 -1 1023 EPSG:4326:10 0 959 -1 2047 EPSG:4326:11 0 1918 -1 4095 EPSG:4326:12 0 3836 -1 8191 EPSG:4326:13 0 7672 -1 16383 EPSG:4326:14 0 15344 -1 32767 EPSG:4326:15 0 30688 -1 65535 EPSG:4326:16 0 61375 -1 131071 EPSG:4326:17 0 122750 -1 262143 EPSG:4326:18 0 245499 -1 524287 EPSG:4326:19 0 490997 -1 1048575 EPSG:4326:20 0 981994 -2 2097151 null 0 1963987 -3 4194303 EPSG:900913 EPSG:900913:0 1 1 -1 0 EPSG:900913:1 1 2 -1 1 EPSG:900913:2 1 4 -1 3 EPSG:900913:3 1 7 -1 7 EPSG:900913:4 1 14 -1 15 EPSG:900913:5 1 28 -1 31 EPSG:900913:6 1 56 -1 63 EPSG:900913:7 1 111 -1 127 EPSG:900913:8 1 222 -1 255 EPSG:900913:9 1 444 -1 511 EPSG:900913:10 1 888 -1 1023 EPSG:900913:11 1 1775 -1 2047 EPSG:900913:12 1 3549 -1 4095 EPSG:900913:13 1 7098 -1 8191 EPSG:900913:14 1 14195 -1 16383 EPSG:900913:15 1 28389 -1 32767 EPSG:900913:16 1 56777 -1 65535 EPSG:900913:17 1 113554 -1 131071 EPSG:900913:18 1 227108 -1 262143 EPSG:900913:19 1 454216 -1 524287 EPSG:900913:20 1 908432 -1 1048575 EPSG:900913:21 1 1816864 -2 2097151 EPSG:900913:22 2 3633728 -3 4194303 EPSG:900913:23 3 7267456 -5 8388607 EPSG:900913:24 5 14534911 -10 16777215 EPSG:900913:25 10 29069821 -19 33554431 EPSG:900913:26 19 58139641 -37 67108863 EPSG:900913:27 38 116279282 -74 134217727 EPSG:900913:28 76 232558564 -148 268435455 EPSG:900913:29 152 465117128 -296 536870911 null 304 930234256 -592 1073741823 Seagrasses - higher taxonomy and Red List status Seagrasses - higher taxonomy and Red List status. The list presented as a Red List search result with links to each species fact sheet can also be found on this permalink: http://www.iucnredlist.org/search/link/4c80c0ba-03c9fcbe. -180.0 -56.94936843 180.0 74.1257537350001 geonode:SEAGRASSES image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 7 0 15 EPSG:4326:4 2 14 0 31 EPSG:4326:5 3 27 0 63 EPSG:4326:6 6 53 0 127 EPSG:4326:7 12 105 0 255 EPSG:4326:8 23 209 0 511 EPSG:4326:9 46 418 0 1023 EPSG:4326:10 91 836 0 2047 EPSG:4326:11 181 1672 0 4095 EPSG:4326:12 362 3344 0 8191 EPSG:4326:13 723 6688 0 16383 EPSG:4326:14 1445 13376 0 32767 EPSG:4326:15 2890 26752 0 65535 EPSG:4326:16 5780 53503 0 131071 EPSG:4326:17 11560 107006 0 262143 EPSG:4326:18 23119 214011 0 524287 EPSG:4326:19 46238 428022 0 1048575 EPSG:4326:20 92475 856043 0 2097151 null 184949 1712085 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 3 0 3 EPSG:900913:3 2 6 0 7 EPSG:900913:4 3 12 0 15 EPSG:900913:5 6 23 0 31 EPSG:900913:6 12 45 0 63 EPSG:900913:7 24 89 0 127 EPSG:900913:8 48 178 0 255 EPSG:900913:9 96 356 0 511 EPSG:900913:10 191 711 0 1023 EPSG:900913:11 382 1421 0 2047 EPSG:900913:12 764 2841 0 4095 EPSG:900913:13 1528 5681 0 8191 EPSG:900913:14 3055 11361 0 16383 EPSG:900913:15 6109 22721 0 32767 EPSG:900913:16 12218 45442 0 65535 EPSG:900913:17 24436 90883 0 131071 EPSG:900913:18 48871 181766 0 262143 EPSG:900913:19 97741 363532 0 524287 EPSG:900913:20 195481 727064 0 1048575 EPSG:900913:21 390962 1454127 0 2097151 EPSG:900913:22 781923 2908254 0 4194303 EPSG:900913:23 1563846 5816508 0 8388607 EPSG:900913:24 3127691 11633016 0 16777215 EPSG:900913:25 6255382 23266031 0 33554431 EPSG:900913:26 12510763 46532062 0 67108863 EPSG:900913:27 25021526 93064124 0 134217727 EPSG:900913:28 50043051 186128248 0 268435455 EPSG:900913:29 100086101 372256496 0 536870911 null 200172201 744512991 0 1073741823 GOH Ecosistemas Maritimos: Blanqueamiento Corales No abstract provided -88.5666999999685 15.9315999998471 -86.4010999999734 18.0333329998336 geonode:GH_Blanqueamiento_Corales4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 52 53 65 66 EPSG:4326:8 103 106 130 133 EPSG:4326:9 205 211 260 266 EPSG:4326:10 410 422 520 532 EPSG:4326:11 819 843 1040 1064 EPSG:4326:12 1638 1686 2080 2129 EPSG:4326:13 3276 3371 4161 4259 EPSG:4326:14 6551 6742 8322 8519 EPSG:4326:15 13102 13484 16644 17039 EPSG:4326:16 26203 26968 33289 34078 EPSG:4326:17 52405 53935 66579 68156 EPSG:4326:18 104810 107870 133159 136313 EPSG:4326:19 209619 215740 266318 272626 EPSG:4326:20 419237 431480 532637 545253 null 838473 862960 1065275 1090506 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 65 66 EPSG:900913:9 230 234 130 133 EPSG:900913:10 460 467 260 266 EPSG:900913:11 920 933 520 532 EPSG:900913:12 1840 1865 1040 1064 EPSG:900913:13 3679 3729 2080 2129 EPSG:900913:14 7358 7458 4161 4259 EPSG:900913:15 14715 14915 8322 8519 EPSG:900913:16 29430 29830 16644 17039 EPSG:900913:17 58860 59660 33289 34078 EPSG:900913:18 117719 119319 66579 68156 EPSG:900913:19 235437 238638 133159 136313 EPSG:900913:20 470873 477275 266318 272626 EPSG:900913:21 941746 954549 532637 545253 EPSG:900913:22 1883492 1909097 1065275 1090506 EPSG:900913:23 3766983 3818193 2130550 2181012 EPSG:900913:24 7533965 7636385 4261100 4362024 EPSG:900913:25 15067929 15272770 8522201 8724049 EPSG:900913:26 30135858 30545540 17044402 17448099 EPSG:900913:27 60271716 61091080 34088804 34896199 EPSG:900913:28 120543431 122182159 68177609 69792398 EPSG:900913:29 241086862 244364318 136355219 139584796 null 482173723 488728636 272710439 279169593 GOH Ecosistemas Maritimos: Playas arenosas No abstract provided -88.8636543600319 15.6812386684199 -85.0070543943805 22.0714602073962 geonode:GH_Playas_arenosas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 25 27 32 33 EPSG:4326:7 49 53 64 67 EPSG:4326:8 97 106 129 135 EPSG:4326:9 194 212 259 270 EPSG:4326:10 387 423 518 540 EPSG:4326:11 773 846 1036 1080 EPSG:4326:12 1546 1692 2073 2161 EPSG:4326:13 3092 3383 4147 4323 EPSG:4326:14 6184 6765 8295 8646 EPSG:4326:15 12367 13530 16590 17292 EPSG:4326:16 24733 27059 33181 34585 EPSG:4326:17 49465 54118 66363 69171 EPSG:4326:18 98929 108235 132726 138343 EPSG:4326:19 197857 216470 265453 276687 EPSG:4326:20 395713 432939 530907 553374 null 791425 865877 1061815 1106748 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 7 8 4 4 EPSG:900913:5 14 15 8 8 EPSG:900913:6 28 30 16 16 EPSG:900913:7 56 59 32 33 EPSG:900913:8 112 117 64 67 EPSG:900913:9 224 234 129 135 EPSG:900913:10 448 467 259 270 EPSG:900913:11 896 934 518 540 EPSG:900913:12 1791 1868 1036 1080 EPSG:900913:13 3581 3735 2073 2161 EPSG:900913:14 7162 7470 4147 4323 EPSG:900913:15 14324 14939 8295 8646 EPSG:900913:16 28647 29877 16590 17292 EPSG:900913:17 57294 59754 33181 34585 EPSG:900913:18 114588 119508 66363 69171 EPSG:900913:19 229175 239016 132726 138343 EPSG:900913:20 458349 478032 265453 276687 EPSG:900913:21 916698 956064 530907 553374 EPSG:900913:22 1833395 1912128 1061815 1106748 EPSG:900913:23 3666789 3824256 2123630 2213496 EPSG:900913:24 7333578 7648512 4247261 4426992 EPSG:900913:25 14667155 15297023 8494523 8853984 EPSG:900913:26 29334309 30594045 16989046 17707968 EPSG:900913:27 58668617 61188090 33978092 35415937 EPSG:900913:28 117337234 122376179 67956184 70831874 EPSG:900913:29 234674468 244752357 135912369 141663748 null 469348936 489504714 271824738 283327496 GOH Geologia: mapa geologico No abstract provided -93.0156326415091 7.02613968163325 -58.4761927696491 28.0000001203202 geonode:mapa_geologico4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 3 4 3 5 EPSG:4326:4 6 8 7 10 EPSG:4326:5 12 15 15 21 EPSG:4326:6 23 30 30 43 EPSG:4326:7 45 60 61 86 EPSG:4326:8 89 119 123 172 EPSG:4326:9 177 237 247 345 EPSG:4326:10 353 473 494 691 EPSG:4326:11 706 945 989 1382 EPSG:4326:12 1411 1889 1979 2765 EPSG:4326:13 2822 3777 3958 5530 EPSG:4326:14 5644 7553 7917 11061 EPSG:4326:15 11287 15105 15835 22122 EPSG:4326:16 22574 30210 31670 44245 EPSG:4326:17 45148 60420 63340 88490 EPSG:4326:18 90295 120840 126680 176981 EPSG:4326:19 180589 241679 253360 353963 EPSG:4326:20 361177 483358 506720 707927 null 722353 966716 1013441 1415854 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 7 8 3 5 EPSG:900913:5 14 16 7 10 EPSG:900913:6 27 31 15 21 EPSG:900913:7 54 62 30 43 EPSG:900913:8 108 123 61 86 EPSG:900913:9 215 246 123 172 EPSG:900913:10 429 492 247 345 EPSG:900913:11 858 984 494 691 EPSG:900913:12 1716 1968 989 1382 EPSG:900913:13 3432 3936 1979 2765 EPSG:900913:14 6864 7872 3958 5530 EPSG:900913:15 13728 15743 7917 11061 EPSG:900913:16 27455 31486 15835 22122 EPSG:900913:17 54910 62972 31670 44245 EPSG:900913:18 109820 125943 63340 88490 EPSG:900913:19 219639 251886 126680 176981 EPSG:900913:20 439278 503772 253360 353963 EPSG:900913:21 878556 1007543 506720 707927 EPSG:900913:22 1757111 2015086 1013441 1415854 EPSG:900913:23 3514221 4030172 2026882 2831709 EPSG:900913:24 7028441 8060343 4053765 5663419 EPSG:900913:25 14056881 16120685 8107530 11326839 EPSG:900913:26 28113762 32241370 16215061 22653679 EPSG:900913:27 56227524 64482740 32430122 45307359 EPSG:900913:28 112455048 128965479 64860245 90614718 EPSG:900913:29 224910096 257930957 129720490 181229436 null 449820192 515861913 259440981 362458873 Freshwater Ecoregions of the World (FEOW) Freshwater Ecoregions of the World, (FEOW) provides a new global biogeographic regionalization of the Earth's freshwater biodiversity. Covering virtually all freshwater habitats on Earth, this first-ever ecoregion map, together with associated species data, is a useful tool for underpinning global and regional conservation planning efforts, particularly to identify outstanding and imperiled freshwater systems; for serving as a logical framework for large-scale conservation strategies; and for providing a global-scale knowledge base for increasing freshwater biogeographic literacy. -180.0 -89.9999999639999 180.0 83.6235961560001 geonode:FEOWv1_TNC image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 8 0 15 EPSG:4326:4 1 16 0 31 EPSG:4326:5 2 32 0 63 EPSG:4326:6 3 64 0 127 EPSG:4326:7 5 128 0 255 EPSG:4326:8 10 256 0 511 EPSG:4326:9 19 512 0 1023 EPSG:4326:10 37 1024 0 2047 EPSG:4326:11 73 2048 0 4095 EPSG:4326:12 146 4096 0 8191 EPSG:4326:13 291 8192 0 16383 EPSG:4326:14 581 16384 0 32767 EPSG:4326:15 1161 32768 0 65535 EPSG:4326:16 2322 65536 0 131071 EPSG:4326:17 4644 131072 0 262143 EPSG:4326:18 9287 262144 0 524287 EPSG:4326:19 18573 524288 0 1048575 EPSG:4326:20 37146 1048576 0 2097151 null 74291 2097152 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 8 0 7 EPSG:900913:4 1 16 0 15 EPSG:900913:5 2 32 0 31 EPSG:900913:6 3 64 0 63 EPSG:900913:7 6 128 0 127 EPSG:900913:8 11 256 0 255 EPSG:900913:9 21 512 0 511 EPSG:900913:10 42 1024 0 1023 EPSG:900913:11 83 2048 0 2047 EPSG:900913:12 166 4096 0 4095 EPSG:900913:13 331 8192 0 8191 EPSG:900913:14 662 16384 0 16383 EPSG:900913:15 1324 32768 0 32767 EPSG:900913:16 2648 65536 0 65535 EPSG:900913:17 5296 131072 0 131071 EPSG:900913:18 10592 262144 0 262143 EPSG:900913:19 21183 524288 0 524287 EPSG:900913:20 42365 1048576 0 1048575 EPSG:900913:21 84730 2097152 0 2097151 EPSG:900913:22 169460 4194303 0 4194303 EPSG:900913:23 338920 8388606 0 8388607 EPSG:900913:24 677840 16777212 0 16777215 EPSG:900913:25 1355679 33554423 0 33554431 EPSG:900913:26 2711358 67108846 0 67108863 EPSG:900913:27 5422716 134217691 0 134217727 EPSG:900913:28 10845432 268435381 0 268435455 EPSG:900913:29 21690863 536870761 0 536870911 null 43381726 1073741521 0 1073741823 Lakes Drawing upon a variety of existing maps, data and information, a new Global Lakes and Wetlands Database (GLWD) has been created. The combination of best available sources for lakes and wetlands on a global scale (1:1 to 1:3 million resolution), and the application of GIS functionality enabled the generation of a database which focuses in three coordinated levels on (1) large lakes and reservoirs, (2) smaller water bodies, and (3) wetlands. Level 1 (GLWD-1) comprises the shoreline polygons of the 3067 largest lakes (area ≥ 50 km 2 ) and 654 largest reservoirs (storage capacity ≥ 0.5 km 3 ) worldwide, and includes extensive attribute data. Level 2 (GLWD-2) comprises the shoreline polygons of permanent open water bodies with a surface area ≥ 0.1 km 2 excluding the water bodies contained in GLWD-1. The approx. 250,000 polygons of GLWD-2 are attributed as lakes, reservoirs and rivers. Level 3 (GLWD-3) comprises lakes, reservoirs, rivers and different wetland types in the form of a global raster map at 30-second resolution. For GLWD-3, the polygons of GLWD-1 and GLWD-2 were combined with additional information on the maximum extents and types of wetlands. Class ‘lake’ in both GLWD-2 and GLWD-3 also includes man-made reservoirs, as only the largest reservoirs have been distinguished from natural lakes. GLWD-2 and GLWD-3 do not provide detailed descriptive attributes such as names or volumes. In a validation against documented data GLWD proved to represent a comprehensive database of global lakes ≥ 1 km 2 and to provide a good representation of the maximum global wetland extent. GLWD-1 and GLWD-2 constitute two global polygon maps to which existing lake registers, compilations or remote sensing data can be linked in order to allow for further analyses in a GIS environment. GLWD-3 may serve as an estimate of wetland extents for global hydrology and climatology models, or to identify large-scale wetland distributions and important wetland complexes. According to GLWD, lakes and reservoirs cover a total of approx. 2.7 million km 2 or 2.0% of the global land surface area (except Antarctica and glaciated Greenland), while wetlands are estimated to reach about 8-10 million km 2 , or 6.2-7.6%. An extrapolation of GLWD data suggests that the total number of global lakes may reach or even exceed 1.5 million for lakes ≥ 10 ha, and 15 million for lakes ≥ 1 ha. With these numbers, lakes may cover about 3.2 million km 2 , or 2.4% of the total global land surface. The data is available for free download (for non-commercial scientific, conservation and educational purposes) at: http://www.wwfus.org/science/data.cfm -178.87109375 -54.6059036254883 179.994995117188 81.9817886352539 geonode:glwd_1 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 7 0 15 EPSG:4326:4 1 13 0 31 EPSG:4326:5 2 26 0 63 EPSG:4326:6 3 52 0 127 EPSG:4326:7 6 103 0 255 EPSG:4326:8 12 206 1 511 EPSG:4326:9 23 412 3 1023 EPSG:4326:10 46 823 6 2047 EPSG:4326:11 92 1646 12 4095 EPSG:4326:12 183 3291 25 8191 EPSG:4326:13 365 6582 51 16383 EPSG:4326:14 730 13163 102 32767 EPSG:4326:15 1460 26325 205 65535 EPSG:4326:16 2920 52650 411 131070 EPSG:4326:17 5839 105299 822 262140 EPSG:4326:18 11678 210598 1644 524280 EPSG:4326:19 23355 421196 3288 1048561 EPSG:4326:20 46710 842391 6576 2097122 null 93419 1684781 13152 4194245 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 3 0 3 EPSG:900913:3 1 6 0 7 EPSG:900913:4 2 11 0 15 EPSG:900913:5 3 22 0 31 EPSG:900913:6 5 44 0 63 EPSG:900913:7 10 88 0 127 EPSG:900913:8 20 175 0 255 EPSG:900913:9 40 350 1 511 EPSG:900913:10 79 699 3 1023 EPSG:900913:11 158 1397 6 2047 EPSG:900913:12 316 2793 12 4095 EPSG:900913:13 631 5586 25 8191 EPSG:900913:14 1261 11171 51 16383 EPSG:900913:15 2522 22342 102 32767 EPSG:900913:16 5044 44683 205 65535 EPSG:900913:17 10088 89366 411 131070 EPSG:900913:18 20176 178731 822 262140 EPSG:900913:19 40351 357462 1644 524280 EPSG:900913:20 80701 714923 3288 1048561 EPSG:900913:21 161402 1429845 6576 2097122 EPSG:900913:22 322803 2859689 13152 4194245 EPSG:900913:23 645606 5719377 26305 8388491 EPSG:900913:24 1291212 11438754 52610 16776982 EPSG:900913:25 2582423 22877508 105221 33553965 EPSG:900913:26 5164846 45755016 210443 67107931 EPSG:900913:27 10329692 91510031 420886 134215862 EPSG:900913:28 20659384 183020062 841773 268431724 EPSG:900913:29 41318768 366040124 1683547 536863448 null 82637536 732080248 3367094 1073726896 GOH Ecosistemas Maritimos: Anidamiento de Tortugas Marinas No abstract provided -88.5895462386536 15.7135848928796 -86.4725534656995 18.2960238753809 geonode:GH_Anidamiento_de_Tortugas_Marinas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 51 53 65 66 EPSG:4326:8 102 106 130 133 EPSG:4326:9 204 212 260 266 EPSG:4326:10 408 423 520 532 EPSG:4326:11 816 846 1040 1064 EPSG:4326:12 1632 1691 2080 2128 EPSG:4326:13 3264 3381 4160 4256 EPSG:4326:14 6527 6762 8320 8513 EPSG:4326:15 13054 13524 16640 17026 EPSG:4326:16 26107 27047 33281 34052 EPSG:4326:17 52214 54094 66563 68104 EPSG:4326:18 104427 108188 133126 136209 EPSG:4326:19 208853 216375 266252 272418 EPSG:4326:20 417706 432750 532504 544836 null 835412 865500 1065008 1089673 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 65 66 EPSG:900913:9 230 234 130 133 EPSG:900913:10 460 467 260 266 EPSG:900913:11 919 934 520 532 EPSG:900913:12 1837 1867 1040 1064 EPSG:900913:13 3673 3734 2080 2128 EPSG:900913:14 7345 7468 4160 4256 EPSG:900913:15 14690 14936 8320 8513 EPSG:900913:16 29380 29871 16640 17026 EPSG:900913:17 58759 59742 33281 34052 EPSG:900913:18 117517 119484 66563 68104 EPSG:900913:19 235034 238968 133126 136209 EPSG:900913:20 470068 477935 266252 272418 EPSG:900913:21 940136 955869 532504 544836 EPSG:900913:22 1880271 1911737 1065008 1089673 EPSG:900913:23 3760541 3823473 2130017 2179347 EPSG:900913:24 7521081 7646946 4260035 4358694 EPSG:900913:25 15042161 15293891 8520071 8717389 EPSG:900913:26 30084321 30587782 17040143 17434779 EPSG:900913:27 60168641 61175563 34080287 34869559 EPSG:900913:28 120337281 122351125 68160574 69739118 EPSG:900913:29 240674561 244702250 136321149 139478237 null 481349122 489404500 272642298 278956475 WRI MAJOR WATERSHEDS OF THE WORLD DELINEATION WRIBASIN: Watersheds of the World published by the World Resources Institute, a cleaned version of this watershed delineation enhanced to include WRI's original publication attributes. The WRIBASIN shapefile data layer is comprised of 254 derivative vector major river basins features derived based on ~250 000 cell data originally from WRI-Rutgers. Data processing is complete globally, this is an African subset. -164.680801391602 -54.4699783325195 169.292907714844 72.9696273803711 geonode:wribasin image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 7 0 15 EPSG:4326:4 2 13 1 31 EPSG:4326:5 4 26 2 62 EPSG:4326:6 7 52 5 124 EPSG:4326:7 13 103 10 248 EPSG:4326:8 25 206 21 496 EPSG:4326:9 49 411 43 993 EPSG:4326:10 97 822 87 1987 EPSG:4326:11 194 1644 174 3974 EPSG:4326:12 388 3288 348 7948 EPSG:4326:13 776 6575 697 15896 EPSG:4326:14 1551 13150 1394 31793 EPSG:4326:15 3101 26300 2788 63586 EPSG:4326:16 6201 52600 5577 127173 EPSG:4326:17 12402 105200 11155 254347 EPSG:4326:18 24803 210400 22310 508694 EPSG:4326:19 49605 420800 44620 1017389 EPSG:4326:20 99210 841599 89240 2034778 null 198419 1683198 178481 4069557 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 3 0 3 EPSG:900913:3 2 6 0 7 EPSG:900913:4 4 11 0 15 EPSG:900913:5 7 22 1 31 EPSG:900913:6 13 44 2 62 EPSG:900913:7 26 88 5 124 EPSG:900913:8 51 175 10 248 EPSG:900913:9 102 349 21 496 EPSG:900913:10 203 698 43 993 EPSG:900913:11 406 1395 87 1987 EPSG:900913:12 811 2790 174 3974 EPSG:900913:13 1621 5580 348 7948 EPSG:900913:14 3241 11160 697 15896 EPSG:900913:15 6481 22320 1394 31793 EPSG:900913:16 12961 44640 2788 63586 EPSG:900913:17 25922 89280 5577 127173 EPSG:900913:18 51844 178560 11155 254347 EPSG:900913:19 103688 357120 22310 508694 EPSG:900913:20 207376 714240 44620 1017389 EPSG:900913:21 414752 1428480 89240 2034778 EPSG:900913:22 829503 2856959 178481 4069557 EPSG:900913:23 1659005 5713918 356963 8139114 EPSG:900913:24 3318009 11427836 713926 16278229 EPSG:900913:25 6636018 22855671 1427852 32556458 EPSG:900913:26 13272035 45711341 2855705 65112917 EPSG:900913:27 26544069 91422682 5711411 130225834 EPSG:900913:28 53088137 182845364 11422822 260451669 EPSG:900913:29 106176273 365690728 22845644 520903338 null 212352545 731381456 45691289 1041806677 GOH Ecosistemas Maritimos: Otras enfermedades Corales No abstract provided -88.1666999999717 14.9999999998543 -85.9999999999739 20.5829999998248 geonode:GH_Otras_enfermedades_Corales4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 25 27 32 33 EPSG:4326:7 50 54 65 66 EPSG:4326:8 99 107 130 133 EPSG:4326:9 198 214 261 267 EPSG:4326:10 395 427 522 534 EPSG:4326:11 790 854 1044 1069 EPSG:4326:12 1580 1707 2089 2139 EPSG:4326:13 3160 3414 4179 4278 EPSG:4326:14 6319 6827 8358 8556 EPSG:4326:15 12637 13654 16717 17112 EPSG:4326:16 25274 27307 33435 34224 EPSG:4326:17 50548 54614 66870 68448 EPSG:4326:18 101096 109227 133741 136897 EPSG:4326:19 202192 218454 267483 273794 EPSG:4326:20 404384 436907 534967 547589 null 808767 873814 1069935 1095179 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 57 59 32 33 EPSG:900913:8 114 118 65 66 EPSG:900913:9 227 235 130 133 EPSG:900913:10 453 469 261 267 EPSG:900913:11 905 938 522 534 EPSG:900913:12 1809 1876 1044 1069 EPSG:900913:13 3618 3751 2089 2139 EPSG:900913:14 7235 7502 4179 4278 EPSG:900913:15 14469 15003 8358 8556 EPSG:900913:16 28938 30006 16717 17112 EPSG:900913:17 57876 60012 33435 34224 EPSG:900913:18 115751 120023 66870 68448 EPSG:900913:19 231502 240045 133741 136897 EPSG:900913:20 463003 480090 267483 273794 EPSG:900913:21 926006 960180 534967 547589 EPSG:900913:22 1852012 1920359 1069935 1095179 EPSG:900913:23 3704024 3840717 2139870 2190358 EPSG:900913:24 7408047 7681433 4279741 4380717 EPSG:900913:25 14816094 15362865 8559483 8761435 EPSG:900913:26 29632187 30725730 17118967 17522870 EPSG:900913:27 59264374 61451459 34237935 35045740 EPSG:900913:28 118528748 122902918 68475871 70091480 EPSG:900913:29 237057496 245805836 136951743 140182960 null 474114991 491611671 273903486 280365920 GOH Usos de Suelo No abstract provided -102.008884975966 9.97619152036661 -75.3324741667702 26.0662053092345 geonode:GH_Usos_suelo_SOTERLAC4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 3 4 3 4 EPSG:4326:4 6 8 6 9 EPSG:4326:5 12 15 13 18 EPSG:4326:6 23 29 27 37 EPSG:4326:7 46 57 55 74 EPSG:4326:8 91 114 110 148 EPSG:4326:9 182 228 221 297 EPSG:4326:10 364 456 443 595 EPSG:4326:11 728 911 887 1190 EPSG:4326:12 1455 1821 1774 2381 EPSG:4326:13 2910 3642 3549 4763 EPSG:4326:14 5820 7284 7098 9527 EPSG:4326:15 11639 14568 14197 19054 EPSG:4326:16 23278 29136 28395 38108 EPSG:4326:17 46556 58272 56791 76216 EPSG:4326:18 93111 116544 113582 152433 EPSG:4326:19 186221 233087 227165 304866 EPSG:4326:20 372442 466173 454331 609732 null 744883 932345 908662 1219465 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 7 8 3 4 EPSG:900913:5 14 16 6 9 EPSG:900913:6 28 31 13 18 EPSG:900913:7 55 61 27 37 EPSG:900913:8 109 121 55 74 EPSG:900913:9 218 242 110 148 EPSG:900913:10 436 484 221 297 EPSG:900913:11 871 967 443 595 EPSG:900913:12 1741 1934 887 1190 EPSG:900913:13 3482 3868 1774 2381 EPSG:900913:14 6963 7736 3549 4763 EPSG:900913:15 13926 15472 7098 9527 EPSG:900913:16 27851 30943 14197 19054 EPSG:900913:17 55701 61886 28395 38108 EPSG:900913:18 111401 123771 56791 76216 EPSG:900913:19 222801 247542 113582 152433 EPSG:900913:20 445602 495083 227165 304866 EPSG:900913:21 891203 990165 454331 609732 EPSG:900913:22 1782406 1980330 908662 1219465 EPSG:900913:23 3564812 3960659 1817324 2438930 EPSG:900913:24 7129624 7921317 3634649 4877860 EPSG:900913:25 14259247 15842634 7269298 9755720 EPSG:900913:26 28518493 31685267 14538597 19511440 EPSG:900913:27 57036986 63370534 29077195 39022881 EPSG:900913:28 114073971 126741067 58154390 78045763 EPSG:900913:29 228147942 253482133 116308780 156091527 null 456295884 506964265 232617561 312183055 GOH Limites Administrativos Paises Region Pol No abstract provided -84.9529260000013 12.411087882377 -69.8748773746737 26.9291609084487 geonode:GH_Paises_Region_Pol4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 3 4 4 4 EPSG:4326:4 6 7 8 9 EPSG:4326:5 12 14 16 19 EPSG:4326:6 23 28 33 39 EPSG:4326:7 45 56 67 78 EPSG:4326:8 90 111 135 156 EPSG:4326:9 180 221 270 313 EPSG:4326:10 359 442 540 626 EPSG:4326:11 718 883 1081 1252 EPSG:4326:12 1436 1766 2162 2505 EPSG:4326:13 2871 3532 4325 5011 EPSG:4326:14 5741 7063 8651 10023 EPSG:4326:15 11482 14125 17302 20047 EPSG:4326:16 22964 28250 34605 40095 EPSG:4326:17 45927 56499 69211 80190 EPSG:4326:18 91854 112998 138422 160381 EPSG:4326:19 183708 225995 276844 320762 EPSG:4326:20 367415 451989 553689 641525 null 734829 903977 1107378 1283050 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 7 8 4 4 EPSG:900913:5 14 15 8 9 EPSG:900913:6 28 30 16 19 EPSG:900913:7 55 60 33 39 EPSG:900913:8 109 120 67 78 EPSG:900913:9 217 239 135 156 EPSG:900913:10 433 477 270 313 EPSG:900913:11 865 953 540 626 EPSG:900913:12 1730 1906 1081 1252 EPSG:900913:13 3460 3812 2162 2505 EPSG:900913:14 6919 7623 4325 5011 EPSG:900913:15 13838 15246 8651 10023 EPSG:900913:16 27675 30491 17302 20047 EPSG:900913:17 55350 60982 34605 40095 EPSG:900913:18 110699 121964 69211 80190 EPSG:900913:19 221397 243927 138422 160381 EPSG:900913:20 442793 487853 276844 320762 EPSG:900913:21 885586 975705 553689 641525 EPSG:900913:22 1771172 1951409 1107378 1283050 EPSG:900913:23 3542343 3902817 2214757 2566101 EPSG:900913:24 7084686 7805633 4429514 5132202 EPSG:900913:25 14169371 15611265 8859029 10264405 EPSG:900913:26 28338742 31222530 17718058 20528810 EPSG:900913:27 56677483 62445059 35436117 41057621 EPSG:900913:28 113354966 124890118 70872235 82115243 EPSG:900913:29 226709932 249780235 141744470 164230486 null 453419863 499560470 283488940 328460972 Mangroves - higher taxonomy and Red List status. The ranges are available as a single data set (File Geodatabase) for most plant species that considered to form part of the mangrove ecosystem. -179.999981394 -39.986161339 180.000018606 32.893938661 geonode:MANGROVES image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 2 EPSG:4326:1 1 2 0 4 EPSG:4326:2 2 3 0 8 EPSG:4326:3 3 6 0 16 EPSG:4326:4 6 12 0 32 EPSG:4326:5 11 24 0 64 EPSG:4326:6 21 47 0 128 EPSG:4326:7 41 93 0 256 EPSG:4326:8 82 185 0 512 EPSG:4326:9 163 370 0 1024 EPSG:4326:10 325 740 0 2048 EPSG:4326:11 650 1479 0 4096 EPSG:4326:12 1300 2958 0 8192 EPSG:4326:13 2599 5916 0 16384 EPSG:4326:14 5198 11832 0 32768 EPSG:4326:15 10396 23664 0 65536 EPSG:4326:16 20792 47327 0 131072 EPSG:4326:17 41584 94654 0 262144 EPSG:4326:18 83167 189307 0 524288 EPSG:4326:19 166334 378613 0 1048576 EPSG:4326:20 332667 757225 0 2097152 null 665334 1514449 0 4194304 EPSG:900913 EPSG:900913:0 1 1 0 1 EPSG:900913:1 1 2 0 2 EPSG:900913:2 2 3 0 4 EPSG:900913:3 4 5 0 8 EPSG:900913:4 7 10 0 16 EPSG:900913:5 13 20 0 32 EPSG:900913:6 26 40 0 64 EPSG:900913:7 52 80 0 128 EPSG:900913:8 104 160 0 256 EPSG:900913:9 207 319 0 512 EPSG:900913:10 413 637 0 1024 EPSG:900913:11 826 1273 0 2048 EPSG:900913:12 1652 2546 0 4096 EPSG:900913:13 3303 5091 0 8192 EPSG:900913:14 6606 10181 0 16384 EPSG:900913:15 13211 20362 0 32768 EPSG:900913:16 26421 40723 0 65536 EPSG:900913:17 52842 81445 0 131072 EPSG:900913:18 105684 162889 0 262144 EPSG:900913:19 211368 325778 0 524288 EPSG:900913:20 422735 651555 0 1048576 EPSG:900913:21 845469 1303109 0 2097152 EPSG:900913:22 1690937 2606218 0 4194304 EPSG:900913:23 3381874 5212435 0 8388608 EPSG:900913:24 6763748 10424870 0 16777216 EPSG:900913:25 13527496 20849740 1 33554433 EPSG:900913:26 27054991 41699480 3 67108867 EPSG:900913:27 54109981 83398960 6 134217734 EPSG:900913:28 108219961 166797919 13 268435469 EPSG:900913:29 216439922 333595837 27 536870939 null 432879843 667191673 55 1073741879 GOH Cargas Contaminantes: Descargas No abstract provided -91.2615509030893 14.0708630086835 -86.8842458947485 17.9482355116755 geonode:GH_Descargas4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 4 4 3 4 EPSG:4326:4 7 7 7 8 EPSG:4326:5 13 14 15 16 EPSG:4326:6 26 27 31 33 EPSG:4326:7 52 54 63 66 EPSG:4326:8 103 108 126 132 EPSG:4326:9 205 216 252 264 EPSG:4326:10 410 432 504 529 EPSG:4326:11 820 864 1009 1059 EPSG:4326:12 1640 1728 2019 2118 EPSG:4326:13 3280 3456 4038 4237 EPSG:4326:14 6559 6912 8077 8475 EPSG:4326:15 13117 13823 16154 16951 EPSG:4326:16 26234 27645 32308 33902 EPSG:4326:17 52467 55290 64617 67804 EPSG:4326:18 104933 110580 129234 135609 EPSG:4326:19 209866 221160 258469 271219 EPSG:4326:20 419732 442320 516938 542438 null 839464 884639 1033877 1084877 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 8 8 3 4 EPSG:900913:5 15 15 7 8 EPSG:900913:6 29 30 15 16 EPSG:900913:7 58 59 31 33 EPSG:900913:8 116 118 63 66 EPSG:900913:9 231 236 126 132 EPSG:900913:10 461 472 252 264 EPSG:900913:11 921 944 504 529 EPSG:900913:12 1841 1887 1009 1059 EPSG:900913:13 3681 3773 2019 2118 EPSG:900913:14 7362 7546 4038 4237 EPSG:900913:15 14723 15091 8077 8475 EPSG:900913:16 29446 30181 16154 16951 EPSG:900913:17 58892 60361 32308 33902 EPSG:900913:18 117784 120722 64617 67804 EPSG:900913:19 235567 241443 129234 135609 EPSG:900913:20 471134 482886 258469 271219 EPSG:900913:21 942267 965771 516938 542438 EPSG:900913:22 1884534 1931542 1033877 1084877 EPSG:900913:23 3769068 3863083 2067755 2169754 EPSG:900913:24 7538135 7726166 4135511 4339508 EPSG:900913:25 15076269 15452332 8271022 8679017 EPSG:900913:26 30152537 30904663 16542045 17358034 EPSG:900913:27 60305073 61809325 33084091 34716069 EPSG:900913:28 120610146 123618650 66168183 69432138 EPSG:900913:29 241220292 247237300 132336366 138864277 null 482440584 494474600 264672733 277728554 Undersea feature names The undersea feature names shown on sheets and products of GEBCO and Regional International Bathymetric Charts (IBC) projects, and on international (INT) nautical charts are selected by the GEBCO Sub-Committee on Undersea Feature Names (SCUFN). -180.0 -78.5 180.0 89.33333 geonode:undersea_features_2008 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 8 0 15 EPSG:4326:4 1 15 0 31 EPSG:4326:5 1 30 0 63 EPSG:4326:6 1 60 0 127 EPSG:4326:7 1 120 0 255 EPSG:4326:8 1 240 0 511 EPSG:4326:9 2 480 0 1023 EPSG:4326:10 4 959 0 2047 EPSG:4326:11 8 1918 0 4095 EPSG:4326:12 16 3835 0 8191 EPSG:4326:13 31 7669 0 16383 EPSG:4326:14 61 15338 0 32767 EPSG:4326:15 122 30675 0 65535 EPSG:4326:16 243 61349 0 131071 EPSG:4326:17 486 122698 0 262143 EPSG:4326:18 971 245396 0 524287 EPSG:4326:19 1942 490792 0 1048575 EPSG:4326:20 3884 981584 0 2097151 null 7768 1963168 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 7 0 7 EPSG:900913:4 1 14 0 15 EPSG:900913:5 1 28 0 31 EPSG:900913:6 1 56 0 63 EPSG:900913:7 1 111 0 127 EPSG:900913:8 1 222 0 255 EPSG:900913:9 1 444 0 511 EPSG:900913:10 1 887 0 1023 EPSG:900913:11 1 1773 0 2047 EPSG:900913:12 1 3545 0 4095 EPSG:900913:13 1 7090 0 8191 EPSG:900913:14 1 14179 0 16383 EPSG:900913:15 1 28357 0 32767 EPSG:900913:16 1 56713 0 65535 EPSG:900913:17 1 113426 0 131071 EPSG:900913:18 1 226851 0 262143 EPSG:900913:19 1 453701 0 524287 EPSG:900913:20 1 907402 0 1048575 EPSG:900913:21 1 1814804 0 2097151 EPSG:900913:22 2 3629608 0 4194303 EPSG:900913:23 3 7259216 0 8388607 EPSG:900913:24 5 14518432 0 16777215 EPSG:900913:25 10 29036864 0 33554431 EPSG:900913:26 19 58073727 0 67108863 EPSG:900913:27 38 116147454 0 134217727 EPSG:900913:28 76 232294908 0 268435455 EPSG:900913:29 152 464589815 0 536870911 null 304 929179630 0 1073741823 Continental margins between 140m and 3500m depth (IFREMER - COMARGE, 2009) This shapefile has been prepared in the framework of COMARGE, one of the field project of the Census of Marine Life. It is intended to represent continental margins worldwide, with the exclusion of the continental shelf. The continental margins have been defined based on bathymetry and expert opinion. The upper margin of the boundary has been set at 140 m depth, which is the average depth of the shelf break, except in Antarctica where the shelf break goes deeper and the upper boundary has been set up at 500 m. The lower boundary has been set at 3500 m depth. Both isobaths were extracted from S2004 Bathymetry (a global bathymetry at 1 arc-minute resolution). The upper and lower boundaries were manually edited to follow the contour of continental margins in particular cases. Please note that some but not all margins around island are included in this shapefile. http://www.ifremer.fr/comarge/ -179.999988786051 -78.4229638428662 179.999988754693 84.8446715025928 geonode:ContinentalMargins image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 8 0 15 EPSG:4326:4 1 15 0 31 EPSG:4326:5 1 30 0 63 EPSG:4326:6 2 60 0 127 EPSG:4326:7 4 120 0 255 EPSG:4326:8 8 240 0 511 EPSG:4326:9 15 480 0 1023 EPSG:4326:10 30 959 0 2047 EPSG:4326:11 59 1917 0 4095 EPSG:4326:12 118 3833 0 8191 EPSG:4326:13 235 7666 0 16383 EPSG:4326:14 470 15331 0 32767 EPSG:4326:15 939 30661 0 65535 EPSG:4326:16 1877 61321 0 131071 EPSG:4326:17 3754 122642 0 262143 EPSG:4326:18 7508 245284 0 524287 EPSG:4326:19 15016 490568 0 1048575 EPSG:4326:20 30032 981135 0 2097151 null 60064 1962270 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 7 0 7 EPSG:900913:4 1 14 0 15 EPSG:900913:5 1 28 0 31 EPSG:900913:6 1 56 0 63 EPSG:900913:7 1 111 0 127 EPSG:900913:8 2 222 0 255 EPSG:900913:9 4 443 0 511 EPSG:900913:10 7 886 0 1023 EPSG:900913:11 14 1771 0 2047 EPSG:900913:12 27 3541 0 4095 EPSG:900913:13 54 7081 0 8191 EPSG:900913:14 107 14161 0 16383 EPSG:900913:15 214 28322 0 32767 EPSG:900913:16 427 56643 0 65535 EPSG:900913:17 854 113286 0 131071 EPSG:900913:18 1708 226571 0 262143 EPSG:900913:19 3415 453141 0 524287 EPSG:900913:20 6830 906281 0 1048575 EPSG:900913:21 13660 1812561 0 2097151 EPSG:900913:22 27319 3625121 0 4194303 EPSG:900913:23 54638 7250242 0 8388607 EPSG:900913:24 109276 14500484 0 16777215 EPSG:900913:25 218551 29000967 1 33554430 EPSG:900913:26 437101 58001934 2 67108861 EPSG:900913:27 874202 116003867 4 134217723 EPSG:900913:28 1748404 232007733 8 268435447 EPSG:900913:29 3496807 464015466 16 536870895 null 6993613 928030932 33 1073741790 Transboundary Freshwater Dispute Database Product of the Transboundary Freshwater Dispute Database, Department of Geosciences, Oregon State University. Additional information about the TFDD can be found at: <http://www.transboundarywaters.orst.edu> -164.672409057617 -54.7486381530762 145.207183837891 71.4400024414062 geonode:bcp_wgs84_0511 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 1 EPSG:4326:1 1 2 0 3 EPSG:4326:2 1 4 0 7 EPSG:4326:3 1 7 0 14 EPSG:4326:4 2 13 1 28 EPSG:4326:5 4 26 2 57 EPSG:4326:6 7 52 5 115 EPSG:4326:7 14 103 10 231 EPSG:4326:8 27 206 21 462 EPSG:4326:9 53 412 43 925 EPSG:4326:10 106 824 87 1850 EPSG:4326:11 212 1647 174 3700 EPSG:4326:12 423 3294 348 7400 EPSG:4326:13 845 6588 697 14800 EPSG:4326:14 1690 13176 1395 29601 EPSG:4326:15 3379 26351 2790 59202 EPSG:4326:16 6758 52702 5580 118404 EPSG:4326:17 13515 105403 11161 236808 EPSG:4326:18 27030 210806 22322 473617 EPSG:4326:19 54060 421611 44644 947234 EPSG:4326:20 108120 843222 89289 1894469 null 216240 1686444 178579 3788938 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 3 0 3 EPSG:900913:3 2 6 0 7 EPSG:900913:4 4 11 0 14 EPSG:900913:5 7 22 1 28 EPSG:900913:6 14 44 2 57 EPSG:900913:7 28 88 5 115 EPSG:900913:8 55 175 10 231 EPSG:900913:9 109 350 21 462 EPSG:900913:10 217 699 43 925 EPSG:900913:11 434 1398 87 1850 EPSG:900913:12 868 2796 174 3700 EPSG:900913:13 1735 5591 348 7400 EPSG:900913:14 3469 11182 697 14800 EPSG:900913:15 6937 22364 1395 29601 EPSG:900913:16 13873 44728 2790 59202 EPSG:900913:17 27746 89456 5580 118404 EPSG:900913:18 55491 178911 11161 236808 EPSG:900913:19 110982 357821 22322 473617 EPSG:900913:20 221963 715642 44644 947234 EPSG:900913:21 443926 1431283 89289 1894469 EPSG:900913:22 887851 2862565 178579 3788938 EPSG:900913:23 1775702 5725130 357158 7577876 EPSG:900913:24 3551404 11450259 714317 15155753 EPSG:900913:25 7102807 22900518 1428635 30311506 EPSG:900913:26 14205613 45801036 2857270 60623012 EPSG:900913:27 28411225 91602071 5714540 121246025 EPSG:900913:28 56822450 183204141 11429080 242492051 EPSG:900913:29 113644899 366408281 22858160 484984103 null 227289797 732816561 45716320 969968207 FAO Fishing Areas The dataset represents the boundaries of the FAO Fishing Areas. The source for the boundaries is the description that can be found on the FAO website. The dataset was composed by the Flanders Marine Data and Information Centre. -180.0 -85.4702906995037 180.0 90.0000004906574 geonode:World_Fao_Zones image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 0 1 0 1 EPSG:4326:1 0 2 0 3 EPSG:4326:2 0 4 0 7 EPSG:4326:3 0 8 0 15 EPSG:4326:4 0 16 0 31 EPSG:4326:5 0 32 0 63 EPSG:4326:6 0 63 0 127 EPSG:4326:7 0 125 0 255 EPSG:4326:8 0 250 0 511 EPSG:4326:9 0 500 0 1023 EPSG:4326:10 0 999 0 2047 EPSG:4326:11 0 1997 0 4095 EPSG:4326:12 0 3993 0 8191 EPSG:4326:13 0 7986 0 16383 EPSG:4326:14 0 15972 0 32767 EPSG:4326:15 0 31944 0 65535 EPSG:4326:16 0 63887 0 131071 EPSG:4326:17 0 127774 0 262143 EPSG:4326:18 0 255548 0 524287 EPSG:4326:19 0 511095 0 1048575 EPSG:4326:20 0 1022189 0 2097151 null 0 2044378 0 4194303 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 2 0 1 EPSG:900913:2 1 4 0 3 EPSG:900913:3 1 8 0 7 EPSG:900913:4 1 16 0 15 EPSG:900913:5 1 32 0 31 EPSG:900913:6 1 64 0 63 EPSG:900913:7 1 128 0 127 EPSG:900913:8 1 256 0 255 EPSG:900913:9 1 512 0 511 EPSG:900913:10 1 1024 0 1023 EPSG:900913:11 1 2048 0 2047 EPSG:900913:12 1 4096 0 4095 EPSG:900913:13 1 8192 0 8191 EPSG:900913:14 1 16384 0 16383 EPSG:900913:15 1 32768 0 32767 EPSG:900913:16 1 65536 0 65535 EPSG:900913:17 1 131072 0 131071 EPSG:900913:18 1 262144 0 262143 EPSG:900913:19 1 524288 0 524287 EPSG:900913:20 1 1048576 0 1048575 EPSG:900913:21 1 2097152 0 2097151 EPSG:900913:22 2 4194303 0 4194303 EPSG:900913:23 3 8388606 0 8388607 EPSG:900913:24 5 16777212 0 16777215 EPSG:900913:25 10 33554423 0 33554431 EPSG:900913:26 19 67108846 0 67108863 EPSG:900913:27 38 134217691 0 134217727 EPSG:900913:28 76 268435381 0 268435455 EPSG:900913:29 152 536870761 0 536870911 null 304 1073741521 0 1073741823 World maritime boundaries The data is provided "as is", and no warranty express, implied or otherwise is offered as to the data's accuracy. The developers do not imply any opinion concerning the legal status of any country, territory or area, or concerning the delimitation of its frontiers or boundaries. The data can be used for educational, scientific or research purposes but should not be used for legal, commercial/economical (exploration of natural resources) or navigational purposes. Anyone can download this data but it is for the sole use of the organisation or individual downloading the data. The geodata may not be redistributed without the permission of the Flanders Marine Institute (VLIZ). The geodata may be used in a Value-Added Software Application (like webservices), on condition that the Flanders Marine Institute is acknowledged as the source of the data. Redistribution rights are granted for hard-copy renditions or static, electronic map images (e.g. jpeg, gif, etc.) that are plotted, printed or publicly displayed with reference to the Flanders Marine Institute. For redistribution rights of derived products, please contact us. Acknowledgements VLIZ (2012). Maritime Boundaries Geodatabase, version 6.1. Available online at http://www.vliz.be/vmdcdata/marbound. Consulted on 2012-07-09 -180.004022988029 -75.1186949450678 180.0 87.0239435158392 geonode:World_Maritime_Boundaries_v6_1_20110512 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 -1 1 EPSG:4326:1 1 2 -1 3 EPSG:4326:2 1 4 -1 7 EPSG:4326:3 1 8 -1 15 EPSG:4326:4 1 15 -1 31 EPSG:4326:5 1 30 -1 63 EPSG:4326:6 2 59 -1 127 EPSG:4326:7 3 118 -1 255 EPSG:4326:8 5 235 -1 511 EPSG:4326:9 9 470 -1 1023 EPSG:4326:10 17 940 -1 2047 EPSG:4326:11 34 1879 -1 4095 EPSG:4326:12 68 3758 -1 8191 EPSG:4326:13 136 7515 -1 16383 EPSG:4326:14 271 15030 -1 32767 EPSG:4326:15 542 30059 -1 65535 EPSG:4326:16 1084 60118 -2 131071 EPSG:4326:17 2168 120236 -3 262143 EPSG:4326:18 4335 240472 -6 524287 EPSG:4326:19 8669 480944 -12 1048575 EPSG:4326:20 17337 961887 -24 2097151 null 34674 1923773 -47 4194303 EPSG:900913 EPSG:900913:0 1 1 -1 0 EPSG:900913:1 1 2 -1 1 EPSG:900913:2 1 4 -1 3 EPSG:900913:3 1 7 -1 7 EPSG:900913:4 1 14 -1 15 EPSG:900913:5 1 27 -1 31 EPSG:900913:6 1 53 -1 63 EPSG:900913:7 1 106 -1 127 EPSG:900913:8 1 211 -1 255 EPSG:900913:9 1 422 -1 511 EPSG:900913:10 1 844 -1 1023 EPSG:900913:11 1 1688 -1 2047 EPSG:900913:12 1 3376 -1 4095 EPSG:900913:13 1 6751 -1 8191 EPSG:900913:14 1 13501 -1 16383 EPSG:900913:15 1 27001 -1 32767 EPSG:900913:16 1 54001 -1 65535 EPSG:900913:17 1 108001 -2 131071 EPSG:900913:18 1 216002 -3 262143 EPSG:900913:19 1 432003 -6 524287 EPSG:900913:20 1 864006 -12 1048575 EPSG:900913:21 1 1728011 -24 2097151 EPSG:900913:22 2 3456022 -47 4194303 EPSG:900913:23 3 6912043 -94 8388607 EPSG:900913:24 5 13824086 -188 16777215 EPSG:900913:25 10 27648172 -375 33554431 EPSG:900913:26 19 55296344 -750 67108863 EPSG:900913:27 38 110592687 -1500 134217727 EPSG:900913:28 76 221185374 -3000 268435455 EPSG:900913:29 152 442370747 -6000 536870911 null 304 884741493 -12000 1073741823 GOH Ecosistemas Maritimos: Distribucion de Manati No abstract provided -88.9569080458292 15.6720908086544 -86.4948106053288 18.7692259353796 geonode:GH_Distribucion_de_Manati4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 33 EPSG:4326:7 51 53 64 66 EPSG:4326:8 102 106 129 132 EPSG:4326:9 203 212 258 265 EPSG:4326:10 406 423 517 531 EPSG:4326:11 811 846 1035 1063 EPSG:4326:12 1621 1692 2071 2127 EPSG:4326:13 3242 3383 4143 4255 EPSG:4326:14 6484 6766 8286 8511 EPSG:4326:15 12968 13531 16573 17022 EPSG:4326:16 25935 27062 33147 34044 EPSG:4326:17 51869 54124 66295 68088 EPSG:4326:18 103738 108248 132591 136176 EPSG:4326:19 207475 216496 265182 272353 EPSG:4326:20 414950 432992 530364 544707 null 829899 865983 1060728 1089414 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 33 EPSG:900913:8 115 117 64 66 EPSG:900913:9 229 234 129 132 EPSG:900913:10 458 467 258 265 EPSG:900913:11 916 934 517 531 EPSG:900913:12 1831 1868 1035 1063 EPSG:900913:13 3662 3735 2071 2127 EPSG:900913:14 7323 7470 4143 4255 EPSG:900913:15 14645 14940 8286 8511 EPSG:900913:16 29289 29879 16573 17022 EPSG:900913:17 58577 59758 33147 34044 EPSG:900913:18 117154 119515 66295 68088 EPSG:900913:19 234307 239030 132591 136176 EPSG:900913:20 468614 478060 265182 272353 EPSG:900913:21 937228 956120 530364 544707 EPSG:900913:22 1874456 1912239 1060728 1089414 EPSG:900913:23 3748911 3824477 2121457 2178828 EPSG:900913:24 7497821 7648954 4242915 4357657 EPSG:900913:25 14995642 15297908 8485831 8715315 EPSG:900913:26 29991284 30595816 16971662 17430630 EPSG:900913:27 59982568 61191632 33943324 34861261 EPSG:900913:28 119965136 122383263 67886649 69722522 EPSG:900913:29 239930272 244766526 135773299 139445045 null 479860544 489533052 271546598 278890090 GOH Puntos de Muestreo: Est. muestreo No abstract provided -88.9000388899959 15.6961944397851 -87.7256111099996 17.4668333297632 geonode:GH_Est_muestreo4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 1 1 EPSG:4326:2 2 2 2 2 EPSG:4326:3 4 4 4 4 EPSG:4326:4 7 7 8 8 EPSG:4326:5 13 14 16 16 EPSG:4326:6 26 27 32 32 EPSG:4326:7 52 53 64 65 EPSG:4326:8 104 106 129 131 EPSG:4326:9 207 212 259 262 EPSG:4326:10 413 423 518 524 EPSG:4326:11 826 846 1036 1049 EPSG:4326:12 1651 1691 2073 2099 EPSG:4326:13 3302 3382 4146 4199 EPSG:4326:14 6603 6764 8292 8399 EPSG:4326:15 13205 13527 16584 16798 EPSG:4326:16 26409 27054 33168 33596 EPSG:4326:17 52818 54107 66336 67192 EPSG:4326:18 105635 108213 132673 134384 EPSG:4326:19 211269 216426 265347 268768 EPSG:4326:20 422537 432852 530695 537537 null 845073 865703 1061391 1075074 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 1 1 EPSG:900913:3 4 4 2 2 EPSG:900913:4 8 8 4 4 EPSG:900913:5 15 15 8 8 EPSG:900913:6 29 30 16 16 EPSG:900913:7 58 59 32 32 EPSG:900913:8 116 117 64 65 EPSG:900913:9 231 234 129 131 EPSG:900913:10 462 467 259 262 EPSG:900913:11 924 934 518 524 EPSG:900913:12 1847 1868 1036 1049 EPSG:900913:13 3693 3735 2073 2099 EPSG:900913:14 7385 7469 4146 4199 EPSG:900913:15 14769 14938 8292 8399 EPSG:900913:16 29538 29875 16584 16798 EPSG:900913:17 59076 59749 33168 33596 EPSG:900913:18 118152 119497 66336 67192 EPSG:900913:19 236303 238994 132673 134384 EPSG:900913:20 472606 477987 265347 268768 EPSG:900913:21 945211 955974 530695 537537 EPSG:900913:22 1890422 1911947 1061391 1075074 EPSG:900913:23 3780843 3823894 2122782 2150149 EPSG:900913:24 7561685 7647788 4245565 4300298 EPSG:900913:25 15123370 15295575 8491131 8600596 EPSG:900913:26 30246740 30591149 16982263 17201192 EPSG:900913:27 60493480 61182298 33964527 34402385 EPSG:900913:28 120986960 122364595 67929054 68804771 EPSG:900913:29 241973920 244729190 135858108 137609542 null 483947839 489458380 271716217 275219085 GOH Limites Administrativos Paises Pol No abstract provided -117.119887510467 10.7096939998239 -83.1318570001352 32.7187580594824 geonode:GH_Paises_Pol4326 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 0 0 EPSG:4326:1 1 1 0 1 EPSG:4326:2 2 2 1 2 EPSG:4326:3 3 4 2 4 EPSG:4326:4 6 8 5 8 EPSG:4326:5 11 15 11 17 EPSG:4326:6 21 29 22 34 EPSG:4326:7 41 57 44 68 EPSG:4326:8 82 113 89 137 EPSG:4326:9 163 226 178 275 EPSG:4326:10 326 452 357 551 EPSG:4326:11 652 903 715 1102 EPSG:4326:12 1304 1805 1430 2204 EPSG:4326:13 2607 3609 2861 4408 EPSG:4326:14 5214 7218 5723 8817 EPSG:4326:15 10428 14435 11446 17634 EPSG:4326:16 20856 28869 22893 35268 EPSG:4326:17 41711 57738 45787 70537 EPSG:4326:18 83422 115475 91575 141074 EPSG:4326:19 166844 230950 183151 282148 EPSG:4326:20 333688 461900 366303 564297 null 667375 923800 732606 1128595 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 0 0 EPSG:900913:2 2 2 0 1 EPSG:900913:3 4 4 1 2 EPSG:900913:4 7 8 2 4 EPSG:900913:5 13 16 5 8 EPSG:900913:6 26 31 11 17 EPSG:900913:7 52 61 22 34 EPSG:900913:8 104 121 44 68 EPSG:900913:9 207 241 89 137 EPSG:900913:10 414 482 178 275 EPSG:900913:11 827 963 357 551 EPSG:900913:12 1654 1926 715 1102 EPSG:900913:13 3308 3851 1430 2204 EPSG:900913:14 6615 7702 2861 4408 EPSG:900913:15 13230 15404 5723 8817 EPSG:900913:16 26459 30807 11446 17634 EPSG:900913:17 52918 61614 22893 35268 EPSG:900913:18 105836 123228 45787 70537 EPSG:900913:19 211671 246456 91575 141074 EPSG:900913:20 423342 492911 183151 282148 EPSG:900913:21 846683 985822 366303 564297 EPSG:900913:22 1693366 1971643 732606 1128595 EPSG:900913:23 3386731 3943285 1465212 2257191 EPSG:900913:24 6773461 7886569 2930425 4514382 EPSG:900913:25 13546922 15773137 5860851 9028765 EPSG:900913:26 27093843 31546273 11721702 18057530 EPSG:900913:27 54187686 63092545 23443405 36115061 EPSG:900913:28 108375372 126185089 46886810 72230122 EPSG:900913:29 216750744 252370178 93773620 144460245 null 433501488 504740356 187547240 288920490 Djibouti No abstract provided 39.5 10.266667 43.451944 19.0 geonode:XYDjibouti image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 2 2 4 4 EPSG:4326:3 4 4 9 9 EPSG:4326:4 7 8 19 19 EPSG:4326:5 13 15 39 39 EPSG:4326:6 26 29 78 79 EPSG:4326:7 51 57 156 158 EPSG:4326:8 101 114 312 317 EPSG:4326:9 202 227 624 635 EPSG:4326:10 404 454 1248 1271 EPSG:4326:11 808 908 2497 2542 EPSG:4326:12 1616 1815 4994 5084 EPSG:4326:13 3232 3629 9989 10169 EPSG:4326:14 6463 7258 19979 20339 EPSG:4326:15 12926 14516 39958 40678 EPSG:4326:16 25851 29031 79917 81356 EPSG:4326:17 51701 58061 159835 162712 EPSG:4326:18 103402 116121 319670 325425 EPSG:4326:19 206803 232241 639340 650850 EPSG:4326:20 413605 464481 1278680 1301701 null 827210 928961 2557360 2603403 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 4 4 4 4 EPSG:900913:4 8 8 9 9 EPSG:900913:5 15 16 19 19 EPSG:900913:6 29 31 39 39 EPSG:900913:7 58 61 78 79 EPSG:900913:8 115 121 156 158 EPSG:900913:9 229 242 312 317 EPSG:900913:10 457 483 624 635 EPSG:900913:11 914 966 1248 1271 EPSG:900913:12 1828 1931 2497 2542 EPSG:900913:13 3656 3862 4994 5084 EPSG:900913:14 7311 7723 9989 10169 EPSG:900913:15 14622 15445 19979 20339 EPSG:900913:16 29244 30889 39958 40678 EPSG:900913:17 58488 61778 79917 81356 EPSG:900913:18 116976 123556 159835 162712 EPSG:900913:19 233952 247112 319670 325425 EPSG:900913:20 467904 494223 639340 650850 EPSG:900913:21 935807 988446 1278680 1301701 EPSG:900913:22 1871614 1976892 2557360 2603403 EPSG:900913:23 3743228 3953783 5114720 5206807 EPSG:900913:24 7486455 7907566 10229441 10413615 EPSG:900913:25 14972909 15815131 20458882 20827230 EPSG:900913:26 29945818 31630262 40917765 41654461 EPSG:900913:27 59891635 63260524 81835531 83308922 EPSG:900913:28 119783269 126521048 163671062 166617845 EPSG:900913:29 239566538 253042096 327342125 333235691 null 479133075 506084192 654684251 666471383 Sudan No abstract provided 18.783333 3.516667 38.8467 27.166667 geonode:XYSudan image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 2 2 4 4 EPSG:4326:3 3 4 8 9 EPSG:4326:4 6 8 17 19 EPSG:4326:5 12 16 35 38 EPSG:4326:6 23 31 70 77 EPSG:4326:7 45 62 141 155 EPSG:4326:8 90 123 282 311 EPSG:4326:9 179 246 565 622 EPSG:4326:10 358 492 1130 1244 EPSG:4326:11 715 984 2261 2489 EPSG:4326:12 1430 1968 4523 4979 EPSG:4326:13 2860 3936 9046 9959 EPSG:4326:14 5720 7872 18093 19919 EPSG:4326:15 11439 15744 36187 39839 EPSG:4326:16 22877 31488 72374 79679 EPSG:4326:17 45754 62976 144749 159359 EPSG:4326:18 91508 125951 289499 318718 EPSG:4326:19 183016 251901 578998 637437 EPSG:4326:20 366031 503802 1157996 1274874 null 732062 1007604 2315993 2549748 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 4 4 4 4 EPSG:900913:4 7 8 8 9 EPSG:900913:5 14 16 17 19 EPSG:900913:6 27 32 35 38 EPSG:900913:7 54 63 70 77 EPSG:900913:8 108 126 141 155 EPSG:900913:9 216 251 282 311 EPSG:900913:10 432 502 565 622 EPSG:900913:11 864 1004 1130 1244 EPSG:900913:12 1727 2008 2261 2489 EPSG:900913:13 3454 4016 4523 4979 EPSG:900913:14 6907 8032 9046 9959 EPSG:900913:15 13814 16064 18093 19919 EPSG:900913:16 27627 32128 36187 39839 EPSG:900913:17 55253 64255 72374 79679 EPSG:900913:18 110505 128510 144749 159359 EPSG:900913:19 221009 257020 289499 318718 EPSG:900913:20 442017 514039 578998 637437 EPSG:900913:21 884033 1028078 1157996 1274874 EPSG:900913:22 1768065 2056155 2315993 2549748 EPSG:900913:23 3536129 4112309 4631987 5099497 EPSG:900913:24 7072258 8224617 9263974 10198995 EPSG:900913:25 14144515 16449233 18527949 20397990 EPSG:900913:26 28289030 32898466 37055899 40795981 EPSG:900913:27 56578060 65796932 74111798 81591963 EPSG:900913:28 113156120 131593864 148223596 163183926 EPSG:900913:29 226312240 263187727 296447192 326367853 null 452624479 526375453 592894384 652735707 Yemen No abstract provided 39.5 12.1 65.0 27.695278 geonode:XYYemen image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 2 2 4 5 EPSG:4326:3 3 4 9 10 EPSG:4326:4 6 7 19 21 EPSG:4326:5 12 14 39 43 EPSG:4326:6 23 28 78 87 EPSG:4326:7 45 56 156 174 EPSG:4326:8 89 111 312 348 EPSG:4326:9 178 222 624 696 EPSG:4326:10 355 444 1248 1393 EPSG:4326:11 709 887 2497 2787 EPSG:4326:12 1418 1773 4994 5575 EPSG:4326:13 2836 3546 9989 11150 EPSG:4326:14 5672 7091 19979 22300 EPSG:4326:15 11343 14182 39958 44600 EPSG:4326:16 22685 28363 79917 89201 EPSG:4326:17 45369 56726 159835 178403 EPSG:4326:18 90738 113451 319670 356807 EPSG:4326:19 181476 226901 639340 713614 EPSG:4326:20 362952 453801 1278680 1427228 null 725903 907601 2557360 2854456 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 4 4 4 5 EPSG:900913:4 7 8 9 10 EPSG:900913:5 14 15 19 21 EPSG:900913:6 27 30 39 43 EPSG:900913:7 54 60 78 87 EPSG:900913:8 108 120 156 174 EPSG:900913:9 215 239 312 348 EPSG:900913:10 430 478 624 696 EPSG:900913:11 860 955 1248 1393 EPSG:900913:12 1720 1910 2497 2787 EPSG:900913:13 3440 3819 4994 5575 EPSG:900913:14 6880 7638 9989 11150 EPSG:900913:15 13759 15275 19979 22300 EPSG:900913:16 27518 30549 39958 44600 EPSG:900913:17 55036 61098 79917 89201 EPSG:900913:18 110071 122195 159835 178403 EPSG:900913:19 220141 244390 319670 356807 EPSG:900913:20 440282 488780 639340 713614 EPSG:900913:21 880563 977559 1278680 1427228 EPSG:900913:22 1761126 1955118 2557360 2854456 EPSG:900913:23 3522251 3910235 5114720 5708913 EPSG:900913:24 7044502 7820469 10229441 11417827 EPSG:900913:25 14089004 15640937 20458882 22835655 EPSG:900913:26 28178007 31281873 40917765 45671310 EPSG:900913:27 56356013 62563746 81835531 91342620 EPSG:900913:28 112712026 125127492 163671062 182685240 EPSG:900913:29 225424052 250254983 327342125 365370481 null 450848103 500509966 654684251 730740963 TBA No abstract provided 15.416662476991903 41.13795904405102 20.179198496008198 45.90049506306732 geonode:TB_Aquifers_New image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 1 2 4 4 EPSG:4326:3 2 3 8 8 EPSG:4326:4 4 5 17 17 EPSG:4326:5 8 9 34 35 EPSG:4326:6 16 18 69 71 EPSG:4326:7 32 35 138 142 EPSG:4326:8 63 70 277 284 EPSG:4326:9 126 139 555 569 EPSG:4326:10 251 278 1111 1138 EPSG:4326:11 502 556 2223 2277 EPSG:4326:12 1004 1112 4446 4555 EPSG:4326:13 2008 2224 8893 9110 EPSG:4326:14 4015 4448 17787 18220 EPSG:4326:15 8029 8896 35574 36441 EPSG:4326:16 16057 17791 71149 72883 EPSG:4326:17 32113 35581 142298 145766 EPSG:4326:18 64225 71161 284596 291532 EPSG:4326:19 128450 142322 569192 583064 EPSG:4326:20 256899 284643 1138384 1166128 null 513797 569285 2276769 2332256 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 3 4 4 EPSG:900913:4 6 6 8 8 EPSG:900913:5 12 12 17 17 EPSG:900913:6 23 24 34 35 EPSG:900913:7 46 48 69 71 EPSG:900913:8 92 96 138 142 EPSG:900913:9 183 192 277 284 EPSG:900913:10 365 384 555 569 EPSG:900913:11 730 767 1111 1138 EPSG:900913:12 1459 1534 2223 2277 EPSG:900913:13 2918 3068 4446 4555 EPSG:900913:14 5836 6135 8893 9110 EPSG:900913:15 11671 12269 17787 18220 EPSG:900913:16 23342 24538 35574 36441 EPSG:900913:17 46683 49076 71149 72883 EPSG:900913:18 93366 98152 142298 145766 EPSG:900913:19 186731 196303 284596 291532 EPSG:900913:20 373461 392606 569192 583064 EPSG:900913:21 746921 785211 1138384 1166128 EPSG:900913:22 1493841 1570422 2276769 2332256 EPSG:900913:23 2987681 3140844 4553538 4664513 EPSG:900913:24 5975362 6281687 9107076 9329026 EPSG:900913:25 11950724 12563374 18214153 18658053 EPSG:900913:26 23901448 25126748 36428306 37316107 EPSG:900913:27 47802895 50253496 72856612 74632214 EPSG:900913:28 95605789 100506992 145713224 149264428 EPSG:900913:29 191211577 201013984 291426449 298528857 null 382423154 402027967 582852898 597057715 Diktas Project Area No abstract provided 13.343634279042298 38.77691994860723 21.1131551319579 46.54644080152283 geonode:Diktas_Project_Area_1 image/png image/jpeg text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 1 2 4 4 EPSG:4326:3 2 3 8 8 EPSG:4326:4 4 5 17 17 EPSG:4326:5 8 10 34 35 EPSG:4326:6 16 19 68 71 EPSG:4326:7 31 37 137 143 EPSG:4326:8 62 73 274 286 EPSG:4326:9 124 146 549 572 EPSG:4326:10 248 292 1099 1144 EPSG:4326:11 495 583 2199 2288 EPSG:4326:12 989 1166 4399 4576 EPSG:4326:13 1978 2332 8799 9152 EPSG:4326:14 3956 4663 17598 18305 EPSG:4326:15 7911 9325 35197 36611 EPSG:4326:16 15821 18650 70394 73223 EPSG:4326:17 31642 37300 140788 146446 EPSG:4326:18 63284 74600 281577 292892 EPSG:4326:19 126568 149199 563154 585784 EPSG:4326:20 253136 298397 1126308 1171569 null 506271 596793 2252616 2343138 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 4 4 4 EPSG:900913:4 6 7 8 8 EPSG:900913:5 12 13 17 17 EPSG:900913:6 23 25 34 35 EPSG:900913:7 46 50 68 71 EPSG:900913:8 91 99 137 143 EPSG:900913:9 182 197 274 286 EPSG:900913:10 363 393 549 572 EPSG:900913:11 725 785 1099 1144 EPSG:900913:12 1449 1569 2199 2288 EPSG:900913:13 2897 3138 4399 4576 EPSG:900913:14 5793 6275 8799 9152 EPSG:900913:15 11586 12550 17598 18305 EPSG:900913:16 23172 25099 35197 36611 EPSG:900913:17 46343 50198 70394 73223 EPSG:900913:18 92686 100395 140788 146446 EPSG:900913:19 185371 200790 281577 292892 EPSG:900913:20 370741 401579 563154 585784 EPSG:900913:21 741482 803158 1126308 1171569 EPSG:900913:22 1482963 1606315 2252616 2343138 EPSG:900913:23 2965925 3212630 4505233 4686276 EPSG:900913:24 5931850 6425260 9010466 9372552 EPSG:900913:25 11863700 12850519 18020932 18745104 EPSG:900913:26 23727399 25701037 36041865 37490209 EPSG:900913:27 47454798 51402073 72083731 74980418 EPSG:900913:28 94909595 102804145 144167462 149960837 EPSG:900913:29 189819189 205608290 288334925 299921675 null 379638378 411216580 576669851 599843350 abc1 No abstract provided 15.5091300160001 42.08990478406148 20.086730957 44.94854932305686 geonode:abc1 image/png image/jpeg image/gif text/plain text/html application/vnd.ogc.gml EPSG:4326 EPSG:4326:0 1 1 1 1 EPSG:4326:1 1 1 2 2 EPSG:4326:2 2 2 4 4 EPSG:4326:3 3 3 8 8 EPSG:4326:4 5 5 17 17 EPSG:4326:5 9 9 34 35 EPSG:4326:6 17 18 69 71 EPSG:4326:7 33 35 139 142 EPSG:4326:8 65 69 278 284 EPSG:4326:9 129 137 556 569 EPSG:4326:10 257 273 1112 1138 EPSG:4326:11 513 546 2224 2276 EPSG:4326:12 1026 1091 4448 4553 EPSG:4326:13 2051 2181 8897 9106 EPSG:4326:14 4101 4361 17795 18212 EPSG:4326:15 8202 8722 35591 36424 EPSG:4326:16 16403 17444 71182 72849 EPSG:4326:17 32806 34888 142365 145698 EPSG:4326:18 65611 69775 284730 291397 EPSG:4326:19 131222 139549 569461 582794 EPSG:4326:20 262444 279097 1138923 1165589 null 524888 558194 2277846 2331179 EPSG:900913 EPSG:900913:0 1 1 0 0 EPSG:900913:1 1 1 1 1 EPSG:900913:2 2 2 2 2 EPSG:900913:3 3 3 4 4 EPSG:900913:4 6 6 8 8 EPSG:900913:5 12 12 17 17 EPSG:900913:6 24 24 34 35 EPSG:900913:7 47 48 69 71 EPSG:900913:8 93 95 139 142 EPSG:900913:9 185 190 278 284 EPSG:900913:10 369 380 556 569 EPSG:900913:11 738 760 1112 1138 EPSG:900913:12 1475 1520 2224 2276 EPSG:900913:13 2949 3039 4448 4553 EPSG:900913:14 5898 6077 8897 9106 EPSG:900913:15 11795 12154 17795 18212 EPSG:900913:16 23589 24307 35591 36424 EPSG:900913:17 47177 48613 71182 72849 EPSG:900913:18 94353 97225 142365 145698 EPSG:900913:19 188706 194449 284730 291397 EPSG:900913:20 377411 388897 569461 582794 EPSG:900913:21 754822 777794 1138923 1165589 EPSG:900913:22 1509644 1555587 2277846 2331179 EPSG:900913:23 3019288 3111174 4555692 4662358 EPSG:900913:24 6038575 6222347 9111385 9324717 EPSG:900913:25 12077149 12444693 18222771 18649435 EPSG:900913:26 24154297 24889386 36445543 37298870 EPSG:900913:27 48308593 49778772 72891086 74597740 EPSG:900913:28 96617186 99557543 145782173 149195480 EPSG:900913:29 193234371 199115085 291564347 298390960 null 386468742 398230169 583128694 596781920 GlobalCRS84Scale urn:ogc:def:crs:EPSG::4326 GlobalCRS84Scale:0 5.0E8 90.0 -180.0 256 256 2 1 GlobalCRS84Scale:1 2.5E8 90.0 -180.0 256 256 3 2 GlobalCRS84Scale:2 1.0E8 90.0 -180.0 256 256 6 3 GlobalCRS84Scale:3 5.0E7 90.0 -180.0 256 256 12 6 GlobalCRS84Scale:4 2.5E7 90.0 -180.0 256 256 23 12 GlobalCRS84Scale:5 1.0E7 90.0 -180.0 256 256 56 28 GlobalCRS84Scale:6 5000000.0 90.0 -180.0 256 256 112 56 GlobalCRS84Scale:7 2500000.0 90.0 -180.0 256 256 224 112 GlobalCRS84Scale:8 1000000.0 90.0 -180.0 256 256 560 280 GlobalCRS84Scale:9 500000.0 90.0 -180.0 256 256 1119 560 GlobalCRS84Scale:10 250000.0 90.0 -180.0 256 256 2237 1119 GlobalCRS84Scale:11 100000.0 90.0 -180.0 256 256 5591 2796 GlobalCRS84Scale:12 50000.0 90.0 -180.0 256 256 11182 5591 GlobalCRS84Scale:13 25000.0 90.0 -180.0 256 256 22364 11182 GlobalCRS84Scale:14 10000.0 90.0 -180.0 256 256 55909 27955 GlobalCRS84Scale:15 5000.0 90.0 -180.0 256 256 111817 55909 GlobalCRS84Scale:16 2500.0 90.0 -180.0 256 256 223633 111817 GlobalCRS84Scale:17 1000.0 90.0 -180.0 256 256 559083 279542 GlobalCRS84Scale:18 500.0 90.0 -180.0 256 256 1118165 559083 GlobalCRS84Scale:19 250.0 90.0 -180.0 256 256 2236330 1118165 GlobalCRS84Scale:20 100.0 90.0 -180.0 256 256 5590823 2795412 EPSG:4326 urn:ogc:def:crs:EPSG::4326 EPSG:4326:0 2.795411320143589E8 90.0 -180.0 256 256 2 1 EPSG:4326:1 1.3977056600717944E8 90.0 -180.0 256 256 4 2 EPSG:4326:2 6.988528300358972E7 90.0 -180.0 256 256 8 4 EPSG:4326:3 3.494264150179486E7 90.0 -180.0 256 256 16 8 EPSG:4326:4 1.747132075089743E7 90.0 -180.0 256 256 32 16 EPSG:4326:5 8735660.375448715 90.0 -180.0 256 256 64 32 EPSG:4326:6 4367830.1877243575 90.0 -180.0 256 256 128 64 EPSG:4326:7 2183915.0938621787 90.0 -180.0 256 256 256 128 EPSG:4326:8 1091957.5469310894 90.0 -180.0 256 256 512 256 EPSG:4326:9 545978.7734655447 90.0 -180.0 256 256 1024 512 EPSG:4326:10 272989.38673277234 90.0 -180.0 256 256 2048 1024 EPSG:4326:11 136494.69336638617 90.0 -180.0 256 256 4096 2048 EPSG:4326:12 68247.34668319309 90.0 -180.0 256 256 8192 4096 EPSG:4326:13 34123.67334159654 90.0 -180.0 256 256 16384 8192 EPSG:4326:14 17061.83667079827 90.0 -180.0 256 256 32768 16384 EPSG:4326:15 8530.918335399136 90.0 -180.0 256 256 65536 32768 EPSG:4326:16 4265.459167699568 90.0 -180.0 256 256 131072 65536 EPSG:4326:17 2132.729583849784 90.0 -180.0 256 256 262144 131072 EPSG:4326:18 1066.364791924892 90.0 -180.0 256 256 524288 262144 EPSG:4326:19 533.182395962446 90.0 -180.0 256 256 1048576 524288 EPSG:4326:20 266.591197981223 90.0 -180.0 256 256 2097152 1048576 EPSG:4326:21 133.2955989906115 90.0 -180.0 256 256 4194304 2097152 GoogleCRS84Quad urn:ogc:def:crs:EPSG::4326 GoogleCRS84Quad:0 5.590822640287178E8 90.0 -180.0 256 256 1 1 GoogleCRS84Quad:1 2.795411320143589E8 90.0 -180.0 256 256 2 1 GoogleCRS84Quad:2 1.397705660071794E8 90.0 -180.0 256 256 4 2 GoogleCRS84Quad:3 6.988528300358972E7 90.0 -180.0 256 256 8 4 GoogleCRS84Quad:4 3.494264150179486E7 90.0 -180.0 256 256 16 8 GoogleCRS84Quad:5 1.747132075089743E7 90.0 -180.0 256 256 32 16 GoogleCRS84Quad:6 8735660.375448715 90.0 -180.0 256 256 64 32 GoogleCRS84Quad:7 4367830.187724357 90.0 -180.0 256 256 128 64 GoogleCRS84Quad:8 2183915.093862179 90.0 -180.0 256 256 256 128 GoogleCRS84Quad:9 1091957.546931089 90.0 -180.0 256 256 512 256 GoogleCRS84Quad:10 545978.7734655447 90.0 -180.0 256 256 1024 512 GoogleCRS84Quad:11 272989.3867327723 90.0 -180.0 256 256 2048 1024 GoogleCRS84Quad:12 136494.6933663862 90.0 -180.0 256 256 4096 2048 GoogleCRS84Quad:13 68247.34668319309 90.0 -180.0 256 256 8192 4096 GoogleCRS84Quad:14 34123.67334159654 90.0 -180.0 256 256 16384 8192 GoogleCRS84Quad:15 17061.83667079827 90.0 -180.0 256 256 32768 16384 GoogleCRS84Quad:16 8530.918335399136 90.0 -180.0 256 256 65536 32768 GoogleCRS84Quad:17 4265.459167699568 90.0 -180.0 256 256 131072 65536 GoogleCRS84Quad:18 2132.729583849784 90.0 -180.0 256 256 262144 131072 EPSG:900913 urn:ogc:def:crs:EPSG::900913 EPSG:900913:0 5.590822639508929E8 -2.003750834E7 2.0037508E7 256 256 1 1 EPSG:900913:1 2.7954113197544646E8 -2.003750834E7 2.0037508E7 256 256 2 2 EPSG:900913:2 1.3977056598772323E8 -2.003750834E7 2.0037508E7 256 256 4 4 EPSG:900913:3 6.988528299386162E7 -2.003750834E7 2.0037508E7 256 256 8 8 EPSG:900913:4 3.494264149693081E7 -2.003750834E7 2.0037508E7 256 256 16 16 EPSG:900913:5 1.7471320748465404E7 -2.003750834E7 2.0037508E7 256 256 32 32 EPSG:900913:6 8735660.374232702 -2.003750834E7 2.0037508E7 256 256 64 64 EPSG:900913:7 4367830.187116351 -2.003750834E7 2.0037508E7 256 256 128 128 EPSG:900913:8 2183915.0935581755 -2.003750834E7 2.0037508E7 256 256 256 256 EPSG:900913:9 1091957.5467790877 -2.003750834E7 2.0037508E7 256 256 512 512 EPSG:900913:10 545978.7733895439 -2.003750834E7 2.0037508E7 256 256 1024 1024 EPSG:900913:11 272989.38669477194 -2.003750834E7 2.0037508E7 256 256 2048 2048 EPSG:900913:12 136494.69334738597 -2.003750834E7 2.0037508E7 256 256 4096 4096 EPSG:900913:13 68247.34667369298 -2.003750834E7 2.0037508E7 256 256 8192 8192 EPSG:900913:14 34123.67333684649 -2.003750834E7 2.0037508E7 256 256 16384 16384 EPSG:900913:15 17061.836668423246 -2.003750834E7 2.0037508E7 256 256 32768 32768 EPSG:900913:16 8530.918334211623 -2.003750834E7 2.0037508E7 256 256 65536 65536 EPSG:900913:17 4265.4591671058115 -2.003750834E7 2.0037508E7 256 256 131072 131072 EPSG:900913:18 2132.7295835529058 -2.003750834E7 2.0037508E7 256 256 262144 262144 EPSG:900913:19 1066.3647917764529 -2.003750834E7 2.0037508E7 256 256 524288 524288 EPSG:900913:20 533.1823958882264 -2.003750834E7 2.0037508E7 256 256 1048576 1048576 EPSG:900913:21 266.5911979441132 -2.003750834E7 2.0037508E7 256 256 2097152 2097152 EPSG:900913:22 133.2955989720566 -2.003750834E7 2.0037508E7 256 256 4194304 4194304 EPSG:900913:23 66.6477994860283 -2.003750834E7 2.0037508E7 256 256 8388608 8388608 EPSG:900913:24 33.32389974301415 -2.003750834E7 2.0037508E7 256 256 16777216 16777216 EPSG:900913:25 16.661949871507076 -2.003750834E7 2.0037508E7 256 256 33554432 33554432 EPSG:900913:26 8.330974935753538 -2.003750834E7 2.0037508E7 256 256 67108864 67108864 EPSG:900913:27 4.165487467876769 -2.003750834E7 2.0037508E7 256 256 134217728 134217728 EPSG:900913:28 2.0827437339383845 -2.003750834E7 2.0037508E7 256 256 268435456 268435456 EPSG:900913:29 1.0413718669691923 -2.003750834E7 2.0037508E7 256 256 536870912 536870912 EPSG:900913:30 0.5206859334845961 -2.003750834E7 2.0037508E7 256 256 1073741824 1073741824 GoogleMapsCompatible urn:ogc:def:crs:EPSG::900913 GoogleMapsCompatible:0 5.590822640287179E8 -2.003750834E7 2.0037508E7 256 256 1 1 GoogleMapsCompatible:1 2.795411320143589E8 -2.003750834E7 2.0037508E7 256 256 2 2 GoogleMapsCompatible:2 1.397705660071794E8 -2.003750834E7 2.0037508E7 256 256 4 4 GoogleMapsCompatible:3 6.988528300358972E7 -2.003750834E7 2.0037508E7 256 256 8 8 GoogleMapsCompatible:4 3.494264150179486E7 -2.003750834E7 2.0037508E7 256 256 16 16 GoogleMapsCompatible:5 1.747132075089743E7 -2.003750834E7 2.0037508E7 256 256 32 32 GoogleMapsCompatible:6 8735660.375448715 -2.003750834E7 2.0037508E7 256 256 64 64 GoogleMapsCompatible:7 4367830.1877243575 -2.003750834E7 2.0037508E7 256 256 128 128 GoogleMapsCompatible:8 2183915.0938621787 -2.003750834E7 2.0037508E7 256 256 256 256 GoogleMapsCompatible:9 1091957.5469310887 -2.003750834E7 2.0037508E7 256 256 512 512 GoogleMapsCompatible:10 545978.7734655447 -2.003750834E7 2.0037508E7 256 256 1024 1024 GoogleMapsCompatible:11 272989.3867327723 -2.003750834E7 2.0037508E7 256 256 2048 2048 GoogleMapsCompatible:12 136494.69336638617 -2.003750834E7 2.0037508E7 256 256 4096 4096 GoogleMapsCompatible:13 68247.34668319307 -2.003750834E7 2.0037508E7 256 256 8192 8192 GoogleMapsCompatible:14 34123.67334159654 -2.003750834E7 2.0037508E7 256 256 16384 16384 GoogleMapsCompatible:15 17061.83667079827 -2.003750834E7 2.0037508E7 256 256 32768 32768 GoogleMapsCompatible:16 8530.918335399136 -2.003750834E7 2.0037508E7 256 256 65536 65536 GoogleMapsCompatible:17 4265.459167699568 -2.003750834E7 2.0037508E7 256 256 131072 131072 GoogleMapsCompatible:18 2132.729583849784 -2.003750834E7 2.0037508E7 256 256 262144 262144 GoogleMapsCompatible:19 1066.364791924892 -2.003750834E7 2.0037508E7 256 256 524288 524288 GoogleMapsCompatible:20 533.182395962446 -2.003750834E7 2.0037508E7 256 256 1048576 1048576 GlobalCRS84Pixel urn:ogc:def:crs:EPSG::4326 GlobalCRS84Pixel:0 7.951392199519542E8 90.0 -180.0 256 256 1 1 GlobalCRS84Pixel:1 3.975696099759771E8 90.0 -180.0 256 256 2 1 GlobalCRS84Pixel:2 1.9878480498798856E8 90.0 -180.0 256 256 3 2 GlobalCRS84Pixel:3 1.325232033253257E8 90.0 -180.0 256 256 5 3 GlobalCRS84Pixel:4 6.626160166266285E7 90.0 -180.0 256 256 9 5 GlobalCRS84Pixel:5 3.3130800831331424E7 90.0 -180.0 256 256 17 9 GlobalCRS84Pixel:6 1.325232033253257E7 90.0 -180.0 256 256 43 22 GlobalCRS84Pixel:7 6626160.166266285 90.0 -180.0 256 256 85 43 GlobalCRS84Pixel:8 3313080.0831331424 90.0 -180.0 256 256 169 85 GlobalCRS84Pixel:9 1656540.0415665712 90.0 -180.0 256 256 338 169 GlobalCRS84Pixel:10 552180.0138555238 90.0 -180.0 256 256 1013 507 GlobalCRS84Pixel:11 331308.00831331423 90.0 -180.0 256 256 1688 844 GlobalCRS84Pixel:12 110436.00277110476 90.0 -180.0 256 256 5063 2532 GlobalCRS84Pixel:13 55218.00138555238 90.0 -180.0 256 256 10125 5063 GlobalCRS84Pixel:14 33130.80083133143 90.0 -180.0 256 256 16875 8438 GlobalCRS84Pixel:15 11043.600277110474 90.0 -180.0 256 256 50625 25313 GlobalCRS84Pixel:16 3313.080083133142 90.0 -180.0 256 256 168750 84375 GlobalCRS84Pixel:17 1104.3600277110472 90.0 -180.0 256 256 506250 253125 OWSLib-0.16.0/tests/resources/gm03_example1.xml000066400000000000000000000137261321706412000211420ustar00rootroot00000000000000 41ac321f632e55cebf0508a2cea5d9023fd12d9ad46edd679f2c275127c88623fb9c9d29726bef7c de utf8 1999-12-31T12:00:00 GM03Core 2.3 dataset custodian unbekannt de Gemeinde Ebnat-Kappel (Datenherr); Gemeinde Ebnat-Kappel (Verwaltungsstelle)</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </organisationName> <linkage> <GM03_2_1Core.Core.PT_FreeURL> <URLGroup> <GM03_2_1Core.Core.PT_URLGroup> <language>de</language> <plainURL>www.ebnatkappel.ch</plainURL> </GM03_2_1Core.Core.PT_URLGroup> </URLGroup> </GM03_2_1Core.Core.PT_FreeURL> </linkage> <address REF="xN2635871268258132149" /> <contactInfo REF="xN2875432517461217663" /> </GM03_2_1Core.Core.CI_ResponsibleParty> <GM03_2_1Core.Core.CI_Address TID="xN2635871268258132149" /> <GM03_2_1Core.Core.CI_Contact TID="xN2875432517461217663" /> <GM03_2_1Comprehensive.Comprehensive.MD_DataIdentification TID="xN8036063300808707346"> <abstract> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Der Unterhaltsdienst beinhaltete folgende Themen: Standorte Ruhebänke, Standorte Splittkasten, öffentliche Plätze, Standorte Abfalleimer, Standorte Robidog, Sammelstellen; Zusätzliche Hinweise:</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </abstract> <MD_Metadata REF="xN6509077498146737843" /> <citation REF="xN2836740537917903206" /> <language> <CodeISO.LanguageCodeISO_> <value>de</value> </CodeISO.LanguageCodeISO_> </language> <characterSet> <GM03_2_1Core.Core.MD_CharacterSetCode_> <value>utf8</value> </GM03_2_1Core.Core.MD_CharacterSetCode_> </characterSet> </GM03_2_1Comprehensive.Comprehensive.MD_DataIdentification> <GM03_2_1Comprehensive.Comprehensive.CI_Citation TID="xN2836740537917903206"> <title> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Unterhaltsdienst</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </title> </GM03_2_1Comprehensive.Comprehensive.CI_Citation> <GM03_2_1Core.Core.CI_Date TID="xw107831703aac27b1b1b1b3b1"> <date>1999-12-31</date> <dateType>creation</dateType> <CI_Citation REF="xN2836740537917903206" /> </GM03_2_1Core.Core.CI_Date> <GM03_2_1Core.Core.MD_IdentificationpointOfContact> <pointOfContact REF="xN5427082179211945081" /> <MD_Identification REF="xN8036063300808707346" /> <role> <GM03_2_1Core.Core.CI_RoleCode_> <value>custodian</value> </GM03_2_1Core.Core.CI_RoleCode_> </role> </GM03_2_1Core.Core.MD_IdentificationpointOfContact> <GM03_2_1Core.Core.EX_Extent TID="xN3674850297815639997"> <description> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Ebnat-Kappel</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </description> <MD_DataIdentification REF="xN8036063300808707346" /> </GM03_2_1Core.Core.EX_Extent> <GM03_2_1Core.Core.EX_ExtentgeographicElement> <EX_Extent REF="xN3674850297815639997" /> <geographicElement REF="xN1056366029451267545" /> </GM03_2_1Core.Core.EX_ExtentgeographicElement> <GM03_2_1Core.Core.EX_GeographicBoundingBox TID="xN1056366029451267545"> <extentTypeCode>false</extentTypeCode> <northBoundLatitude>47.2834366721671</northBoundLatitude> <southBoundLatitude>47.1855371323622</southBoundLatitude> <eastBoundLongitude>9.07380432424527</eastBoundLongitude> <westBoundLongitude>9.19139891907917</westBoundLongitude> </GM03_2_1Core.Core.EX_GeographicBoundingBox> </GM03_2_1Comprehensive.Comprehensive> </DATASECTION> </TRANSFER> ������������������������������������������OWSLib-0.16.0/tests/resources/gm03_example2.xml�����������������������������������������������������0000664�0000000�0000000�00000014466�13217064120�0021145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <TRANSFER xmlns="http://www.interlis.ch/INTERLIS2.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <HEADERSECTION SENDER="geocat.ch" VERSION="2.3"> <MODELS /> </HEADERSECTION> <DATASECTION> <GM03_2_1Comprehensive.Comprehensive BID="xw107834205a"> <GM03_2_1Core.Core.MD_Metadata TID="xN1700275456469187994"> <fileIdentifier>b6e8562f8bffdfa45b70db1e12fb2a1b64999f31aa0adb59142b3bee5a5d07861c7292c243088468</fileIdentifier> <language>de</language> <characterSet>utf8</characterSet> <dateStamp>1999-12-31T12:00:00</dateStamp> <metadataStandardName>GM03Core</metadataStandardName> <metadataStandardVersion>2.3</metadataStandardVersion> <hierarchyLevel> <GM03_2_1Core.Core.MD_ScopeCode_> <value>dataset</value> </GM03_2_1Core.Core.MD_ScopeCode_> </hierarchyLevel> </GM03_2_1Core.Core.MD_Metadata> <GM03_2_1Core.Core.MD_Metadatacontact> <contact REF="xN8649995031921957558" /> <MD_Metadata REF="xN1700275456469187994" /> <role> <GM03_2_1Core.Core.CI_RoleCode_> <value>custodian</value> </GM03_2_1Core.Core.CI_RoleCode_> </role> </GM03_2_1Core.Core.MD_Metadatacontact> <GM03_2_1Core.Core.CI_ResponsibleParty TID="xN8649995031921957558"> <individualFirstName>Matthias</individualFirstName> <individualLastName>Oettli</individualLastName> <electronicalMailAddress> <GM03_2_1Core.Core.URL_> <value>matthias.oettli@amden.ch</value> </GM03_2_1Core.Core.URL_> </electronicalMailAddress> <organisationName> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Gemeinde Amden (Datenherr); Gemeinde Amden (Verwaltungsstelle)</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </organisationName> <linkage> <GM03_2_1Core.Core.PT_FreeURL> <URLGroup> <GM03_2_1Core.Core.PT_URLGroup> <language>de</language> <plainURL>www.amden.ch</plainURL> </GM03_2_1Core.Core.PT_URLGroup> </URLGroup> </GM03_2_1Core.Core.PT_FreeURL> </linkage> <address REF="xN4764608505690439814" /> <contactInfo REF="xN1384672275328005245" /> </GM03_2_1Core.Core.CI_ResponsibleParty> <GM03_2_1Core.Core.CI_Address TID="xN4764608505690439814" /> <GM03_2_1Core.Core.CI_Contact TID="xN1384672275328005245" /> <GM03_2_1Core.Core.CI_Telephone TID="xN4289127695412919835"> <number>055 611 60 76</number> <numberType>mainNumber</numberType> <CI_ResponsibleParty REF="xN8649995031921957558" /> </GM03_2_1Core.Core.CI_Telephone> <GM03_2_1Comprehensive.Comprehensive.MD_DataIdentification TID="xN3766575436551981417"> <abstract> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Der Unterhaltsdienst beinhaltete folgende Themen: Standorte Ruhebänke, Standorte Splittkasten, öffentliche Plätze, Standorte Abfalleimer, Standorte Robidog, Sammelstellen; Zusätzliche Hinweise:</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </abstract> <MD_Metadata REF="xN1700275456469187994" /> <citation REF="xN1752770866428883463" /> <language> <CodeISO.LanguageCodeISO_> <value>de</value> </CodeISO.LanguageCodeISO_> </language> <characterSet> <GM03_2_1Core.Core.MD_CharacterSetCode_> <value>utf8</value> </GM03_2_1Core.Core.MD_CharacterSetCode_> </characterSet> </GM03_2_1Comprehensive.Comprehensive.MD_DataIdentification> <GM03_2_1Comprehensive.Comprehensive.CI_Citation TID="xN1752770866428883463"> <title> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Unterhaltsdienst</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </title> </GM03_2_1Comprehensive.Comprehensive.CI_Citation> <GM03_2_1Core.Core.CI_Date TID="xw107834205aac27b1b1b1b3b1"> <date>1999-12-31</date> <dateType>creation</dateType> <CI_Citation REF="xN1752770866428883463" /> </GM03_2_1Core.Core.CI_Date> <GM03_2_1Core.Core.MD_IdentificationpointOfContact> <pointOfContact REF="xN8649995031921957558" /> <MD_Identification REF="xN3766575436551981417" /> <role> <GM03_2_1Core.Core.CI_RoleCode_> <value>custodian</value> </GM03_2_1Core.Core.CI_RoleCode_> </role> </GM03_2_1Core.Core.MD_IdentificationpointOfContact> <GM03_2_1Core.Core.EX_Extent TID="xN2109595790587395274"> <description> <GM03_2_1Core.Core.PT_FreeText> <textGroup> <GM03_2_1Core.Core.PT_Group> <language>de</language> <plainText>Amden</plainText> </GM03_2_1Core.Core.PT_Group> </textGroup> </GM03_2_1Core.Core.PT_FreeText> </description> <MD_DataIdentification REF="xN3766575436551981417" /> </GM03_2_1Core.Core.EX_Extent> <GM03_2_1Core.Core.EX_ExtentgeographicElement> <EX_Extent REF="xN2109595790587395274" /> <geographicElement REF="xN747330322707818024" /> </GM03_2_1Core.Core.EX_ExtentgeographicElement> <GM03_2_1Core.Core.EX_GeographicBoundingBox TID="xN747330322707818024"> <extentTypeCode>false</extentTypeCode> <northBoundLatitude>47.1865387201702</northBoundLatitude> <southBoundLatitude>47.1234508676764</southBoundLatitude> <eastBoundLongitude>9.10597474389878</eastBoundLongitude> <westBoundLongitude>9.23798212070671</westBoundLongitude> </GM03_2_1Core.Core.EX_GeographicBoundingBox> </GM03_2_1Comprehensive.Comprehensive> </DATASECTION> </TRANSFER> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/gmxCodelists.xml������������������������������������������������������0000664�0000000�0000000�00000273560�13217064120�0021251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!-- CORRECTIONS referenced by 2008-09-11 #NN AUTHOR : IGN (France) contact: nicolas.lesage@ign.fr PURPOSE : Correction of 3 typographical errors DESCRIPTION : #01: 'unknwon' replaced by 'unknown' #02: 'MD_MaintenanceFrequencyCode_quartely' replaced by 'MD_MaintenanceFrequencyCode_quarterly' #03: 'quartely' replaced by 'quarterly' --> <CT_CodelistCatalogue xmlns="http://www.isotc211.org/2005/gmx" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmx ../../gmx/gmx.xsd http://www.isotc211.org/2005/gco ../../gco/gco.xsd http://www.opengis.net/gml/3.2 ../../../ISO_19136_Schemas/gml.xsd http://www.w3.org/1999/xlink http://schemas.opengis.net/xlink/1.0.0/xlinks.xsd"> <!--=====Catalogue description=====--> <name> <gco:CharacterString>gmxCodelists</gco:CharacterString> </name> <scope> <gco:CharacterString>Codelists for description of metadata datasets compliant with ISO/TC 211 19115:2003 and 19139</gco:CharacterString> </scope> <fieldOfApplication> <gco:CharacterString>GMX (and imported) namespace</gco:CharacterString> </fieldOfApplication> <versionNumber> <gco:CharacterString>0.0</gco:CharacterString> </versionNumber> <versionDate> <gco:Date>2005-03-18</gco:Date> </versionDate> <!--============================================================================--> <!--============================================================================--> <!--============================= Codelists =======================================--> <!--=== CI_DateTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="CI_DateTypeCode"> <gml:description>identification of when a given event occurred</gml:description> <gml:identifier codeSpace="ISOTC211/19115">CI_DateTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="CI_DateTypeCode_creation"> <gml:description>date identifies when the resource was brought into existence</gml:description> <gml:identifier codeSpace="ISOTC211/19115">creation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_DateTypeCode_publication"> <gml:description>date identifies when the resource was issued</gml:description> <gml:identifier codeSpace="ISOTC211/19115">publication</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_DateTypeCode_revision"> <gml:description>date identifies when the resource was examined or re-examined and imporved or amended</gml:description> <gml:identifier codeSpace="ISOTC211/19115">revision</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== CI_OnLineFunctionCode ===--> <codelistItem> <CodeListDictionary gml:id="CI_OnLineFunctionCode"> <gml:description>function performed by the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">CI_OnLineFunctionCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="CI_OnLineFunctionCode_download"> <gml:description>online instructions for transferring data from one storage device or system to another</gml:description> <gml:identifier codeSpace="ISOTC211/19115">download</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_OnLineFunctionCode_information"> <gml:description>online information about the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">information</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_OnLineFunctionCode_offlineAccess"> <gml:description>online instructions for requesting the resource from the provider</gml:description> <gml:identifier codeSpace="ISOTC211/19115">offlineAccess</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_OnLineFunctionCode_order"> <gml:description>online order process for obtening the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">order</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_OnLineFunctionCode_search"> <gml:description>online search interface for seeking out information about the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">search</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== CI_PresentationFormCode ===--> <codelistItem> <CodeListDictionary gml:id="CI_PresentationFormCode"> <gml:description>mode in which the data is represented</gml:description> <gml:identifier codeSpace="ISOTC211/19115">CI_PresentationFormCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_documentDigital"> <gml:description>digital representation of a primarily textual item (can contain illustrations also)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">documentDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_documentHardcopy"> <gml:description>representation of a primarily textual item (can contain illustrations also) on paper, photograhic material, or other media</gml:description> <gml:identifier codeSpace="ISOTC211/19115">imageDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_imageDigital"> <gml:description>likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and stored in digital format</gml:description> <gml:identifier codeSpace="ISOTC211/19115">documentHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_imageHardcopy"> <gml:description>likeness of natural or man-made features, objects, and activities acquired through the sensing of visual or any other segment of the electromagnetic spectrum by sensors, such as thermal infrared, and high resolution radar and reproduced on paper, photographic material, or other media for use directly by the human user</gml:description> <gml:identifier codeSpace="ISOTC211/19115">imageHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_mapDigital"> <gml:description>map represented in raster or vector form</gml:description> <gml:identifier codeSpace="ISOTC211/19115">mapDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_mapHardcopy"> <gml:description>map printed on paper, photographic material, or other media for use directly by the human user</gml:description> <gml:identifier codeSpace="ISOTC211/19115">mapHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_modelDigital"> <gml:description>multi-dimensional digital representation of a feature, process, etc.</gml:description> <gml:identifier codeSpace="ISOTC211/19115">modelDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_modelHardcopy"> <gml:description>3-dimensional, physical model</gml:description> <gml:identifier codeSpace="ISOTC211/19115">modelHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_profileDigital"> <gml:description>vertical cross-section in digital form</gml:description> <gml:identifier codeSpace="ISOTC211/19115">profileDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_profileHardcopy"> <gml:description>vertical cross-section printed on paper, etc.</gml:description> <gml:identifier codeSpace="ISOTC211/19115">profileHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_tableDigital"> <gml:description>digital representation of facts or figures systematically displayed, especially in columns</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tableDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_tableHardcopy"> <gml:description>representation of facts or figures systematically displayed, especially in columns, printed onpapers, photographic material, or other media</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tableHardcopy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_videoDigital"> <gml:description>digital video recording</gml:description> <gml:identifier codeSpace="ISOTC211/19115">videoDigital</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_PresentationFormCode_videoHardcopy"> <gml:description>video recording on film</gml:description> <gml:identifier codeSpace="ISOTC211/19115">videoHardcopy</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== CI_RoleCode ===--> <codelistItem> <CodeListDictionary gml:id="CI_RoleCode"> <gml:description>function performed by the responsible party</gml:description> <gml:identifier codeSpace="ISOTC211/19115">CI_RoleCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_resourceProvider"> <gml:description>party that supplies the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">resourceProvider</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_custodian"> <gml:description>party that accepts accountability and responsability for the data and ensures appropriate care and maintenance of the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">custodian</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_owner"> <gml:description>party that owns the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">owner</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_user"> <gml:description>party who uses the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">user</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_distributor"> <gml:description>party who distributes the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">distributor</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_originator"> <gml:description>party who created the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">originator</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_pointOfContact"> <gml:description>party who can be contacted for acquiring knowledge about or acquisition of the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">pointOfContact</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_principalInvestigator"> <gml:description>key party responsible for gathering information and conducting research</gml:description> <gml:identifier codeSpace="ISOTC211/19115">principalInvestigator</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_processor"> <gml:description>party wha has processed the data in a manner such that the resource has been modified</gml:description> <gml:identifier codeSpace="ISOTC211/19115">processor</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_publisher"> <gml:description>party who published the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">publisher</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="CI_RoleCode_author"> <gml:description>party who authored the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">author</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== DQ_EvaluationMethodTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="DQ_EvaluationMethodTypeCode"> <gml:description>type or method for evaluating an identified data quality measure</gml:description> <gml:identifier codeSpace="ISOTC211/19115">DQ_EvaluationMethodTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="DQ_EvaluationMethodTypeCode_directInternal"> <gml:description>method of evaluating the quality of a dataset based on inspection of items within the dataset, where all data required is internal to the dataset being evaluated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">directInternal</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DQ_EvaluationMethodTypeCode_directExternal"> <gml:description>method of evaluating the quality of a dataset based on inspection of items within the dataset, where reference data external to the dataset being evaluated is required</gml:description> <gml:identifier codeSpace="ISOTC211/19115">directExternal</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DQ_EvaluationMethodTypeCode_indirect"> <gml:description>method of evaluating the quality of a dataset based on external knowledge</gml:description> <gml:identifier codeSpace="ISOTC211/19115">indirect</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== DS_AssociationTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="DS_AssociationTypeCode"> <gml:description>justification for the correlation of two datasets</gml:description> <gml:identifier codeSpace="ISOTC211/19115">DS_AssociationTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="DS_AssociationTypeCode_crossReference"> <gml:description>reference from one dataset to another</gml:description> <gml:identifier codeSpace="ISOTC211/19115">crossReference</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_AssociationTypeCode_largerWorkCitation"> <gml:description>reference to a master dataset of which this one is a part</gml:description> <gml:identifier codeSpace="ISOTC211/19115">largerWorkCitation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_AssociationTypeCode_partOfSeamlessDatabase"> <gml:description>part of the same structured set of data held in a computer</gml:description> <gml:identifier codeSpace="ISOTC211/19115">partOfSeamlessDatabase</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_AssociationTypeCode_source"> <gml:description>mapping and charting information from which the dataset content originates</gml:description> <gml:identifier codeSpace="ISOTC211/19115">source</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_AssociationTypeCode_stereoMate"> <gml:description>part of a set of imagery that when used together, provides three-dimensional images</gml:description> <gml:identifier codeSpace="ISOTC211/19115">stereoMate</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== DS_InitiativeTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="DS_InitiativeTypeCode"> <gml:description>type of aggregation activity in which datasets are related</gml:description> <gml:identifier codeSpace="ISOTC211/19115">DS_InitiativeTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_campaign"> <gml:description>series of organized planned actions</gml:description> <gml:identifier codeSpace="ISOTC211/19115">campaign</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_collection"> <gml:description>accumulation of datasets assembled for a specific purpose</gml:description> <gml:identifier codeSpace="ISOTC211/19115">collection</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_exercise"> <gml:description>specific performance of a function or group of functions</gml:description> <gml:identifier codeSpace="ISOTC211/19115">exercise</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_experiment"> <gml:description>process designed to find if something is effective or valid</gml:description> <gml:identifier codeSpace="ISOTC211/19115">experiment</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_investigation"> <gml:description>search or systematic inquiry</gml:description> <gml:identifier codeSpace="ISOTC211/19115">investigation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_mission"> <gml:description>specific operation of a data collection system</gml:description> <gml:identifier codeSpace="ISOTC211/19115">mission</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_sensor"> <gml:description>device or piece of equipment which detects or records</gml:description> <gml:identifier codeSpace="ISOTC211/19115">sensor</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_operation"> <gml:description>action that is part of a series of actions</gml:description> <gml:identifier codeSpace="ISOTC211/19115">operation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_platform"> <gml:description>vehicle or other support base that holds a sensor</gml:description> <gml:identifier codeSpace="ISOTC211/19115">platform</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_process"> <gml:description>method of doing something involving a number of steps</gml:description> <gml:identifier codeSpace="ISOTC211/19115">process</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_program"> <gml:description>specific planned activity</gml:description> <gml:identifier codeSpace="ISOTC211/19115">program</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_project"> <gml:description>organized undertaking, research, or development</gml:description> <gml:identifier codeSpace="ISOTC211/19115">project</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_study"> <gml:description>examination or investigation</gml:description> <gml:identifier codeSpace="ISOTC211/19115">study</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_task"> <gml:description>piece of work</gml:description> <gml:identifier codeSpace="ISOTC211/19115">task</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="DS_InitiativeTypeCode_trial"> <gml:description>process of testing to discover or demonstrate something</gml:description> <gml:identifier codeSpace="ISOTC211/19115">trial</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_CellGeometryCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_CellGeometryCode"> <gml:description>code indicating whether grid data is point or area</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_CellGeometryCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_CellGeometryCode_point"> <gml:description>each cell represents a point</gml:description> <gml:identifier codeSpace="ISOTC211/19115">point</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CellGeometryCode_area"> <gml:description>each cell represents an area</gml:description> <gml:identifier codeSpace="ISOTC211/19115">area</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_CharacterSetCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_CharacterSetCode"> <gml:description>name of the character coding standard used in the resource</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_CharacterSetCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_ucs2"> <gml:description>16-bit fixed size Universal Character Set, based on ISO/IEC 10646</gml:description> <gml:identifier codeSpace="ISOTC211/19115">ucs2</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_ucs4"> <gml:description>32-bit fixed size Universal Character Set, based on ISO/IEC 10646</gml:description> <gml:identifier codeSpace="ISOTC211/19115">ucs4</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_utf7"> <gml:description>7-bit variable size UCS Transfer Format, based on ISO/IEC 10646</gml:description> <gml:identifier codeSpace="ISOTC211/19115">utf7</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_utf8"> <gml:description>8-bit variable size UCS Transfer Format, based on ISO/IEC 10646</gml:description> <gml:identifier codeSpace="ISOTC211/19115">utf8</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_utf16"> <gml:description>16-bit variable size UCS Transfer Format, based on ISO/IEC 10646</gml:description> <gml:identifier codeSpace="ISOTC211/19115">utf16</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part1"> <gml:description>ISO/IEC 8859-1, Information technology - 8-bit single byte coded graphic character sets - Part 1 : Latin alphabet No.1</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part1</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part2"> <gml:description>ISO/IEC 8859-2, Information technology - 8-bit single byte coded graphic character sets - Part 2 : Latin alphabet No.2</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part2</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part3"> <gml:description>ISO/IEC 8859-3, Information technology - 8-bit single byte coded graphic character sets - Part 3 : Latin alphabet No.3</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part3</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part4"> <gml:description>ISO/IEC 8859-4, Information technology - 8-bit single byte coded graphic character sets - Part 4 : Latin alphabet No.4</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part4</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part5"> <gml:description>ISO/IEC 8859-5, Information technology - 8-bit single byte coded graphic character sets - Part 5 : Latin/Cyrillic alphabet</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part5</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part6"> <gml:description>ISO/IEC 8859-6, Information technology - 8-bit single byte coded graphic character sets - Part 6 : Latin/Arabic alphabet</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part6</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part7"> <gml:description>ISO/IEC 8859-7, Information technology - 8-bit single byte coded graphic character sets - Part 7 : Latin/Greek alphabet</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part7</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part8"> <gml:description>ISO/IEC 8859-8, Information technology - 8-bit single byte coded graphic character sets - Part 8 : Latin/Hebrew alphabet</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part8</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part9"> <gml:description>ISO/IEC 8859-9, Information technology - 8-bit single byte coded graphic character sets - Part 9 : Latin alphabet No.5</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part9</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part10"> <gml:description>ISO/IEC 8859-10, Information technology - 8-bit single byte coded graphic character sets - Part 10 : Latin alphabet No.6</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part10</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part11"> <gml:description>ISO/IEC 8859-11, Information technology - 8-bit single byte coded graphic character sets - Part 11 : Latin/Thai alphabet</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part11</gml:identifier> </CodeDefinition> </codeEntry> <!-- <codeEntry> <CodeDefinition gml:id="(reserved)"> <gml:description>a future ISO/IEC 8-bit single byte coded graphic character set (e.g. possibly 8859 part 12</gml:description><gml:identifier codeSpace="ISOTC211/19115">(reserved)</gml:identifier> </CodeDefinition> </codeEntry> --> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part13"> <gml:description>ISO/IEC 8859-13, Information technology - 8-bit single byte coded graphic character sets - Part 13 : Latin alphabet No.7</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part13</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part14"> <gml:description>ISO/IEC 8859-14, Information technology - 8-bit single byte coded graphic character sets - Part 14 : Latin alphabet No.8 (Celtic)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part14</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part15"> <gml:description>ISO/IEC 8859-15, Information technology - 8-bit single byte coded graphic character sets - Part 15 : Latin alphabet No.9</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part15</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_8859part16"> <gml:description>ISO/IEC 8859-16, Information technology - 8-bit single byte coded graphic character sets - Part 16 : Latin alphabet No.10</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8859part16</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_jis"> <gml:description>japanese code set used for electronic transmission</gml:description> <gml:identifier codeSpace="ISOTC211/19115">jis</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_shiftJIS"> <gml:description>japanese code set used on MS-DOS machines</gml:description> <gml:identifier codeSpace="ISOTC211/19115">shiftJIS</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_eucJP"> <gml:description>japanese code set used on UNIX based machines</gml:description> <gml:identifier codeSpace="ISOTC211/19115">eucJP</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_usAscii"> <gml:description>United States ASCII code set (ISO 646 US)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">usAscii</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_ebcdic"> <gml:description>IBM mainframe code set</gml:description> <gml:identifier codeSpace="ISOTC211/19115">ebcdic</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_eucKR"> <gml:description>Korean code set</gml:description> <gml:identifier codeSpace="ISOTC211/19115">eucKR</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_big5"> <gml:description>traditional Chinese code set used in Taiwan, Hong Kong of China and other areas</gml:description> <gml:identifier codeSpace="ISOTC211/19115">big5</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CharacterSetCode_GB2312"> <gml:description>simplified Chinese code set</gml:description> <gml:identifier codeSpace="ISOTC211/19115">GB2312</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_ClassificationCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_ClassificationCode"> <gml:description>name of the handling restrictions on the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_ClassificationCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_ClassificationCode_unclassified"> <gml:description>available for general disclosure</gml:description> <gml:identifier codeSpace="ISOTC211/19115">unclassified</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ClassificationCode_restricted"> <gml:description>not for general disclosure</gml:description> <gml:identifier codeSpace="ISOTC211/19115">restricted</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ClassificationCode_confidential"> <gml:description>available for someone who can be entrusted with information</gml:description> <gml:identifier codeSpace="ISOTC211/19115">confidential</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ClassificationCode_secret"> <gml:description>kept or meant to be kept private, unknown, or hidden from all but a select group of people</gml:description> <gml:identifier codeSpace="ISOTC211/19115">secret</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ClassificationCode_topSecret"> <gml:description>of the highest secrecy</gml:description> <gml:identifier codeSpace="ISOTC211/19115">topSecret</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_CoverageContentTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_CoverageContentTypeCode"> <gml:description>specific type of information represented in the cell</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_CoverageContentTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_CoverageContentTypeCode_image"> <gml:description>meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter</gml:description> <gml:identifier codeSpace="ISOTC211/19115">image</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CoverageContentTypeCode_thematicClassification"> <gml:description>code value with no quantitative meaning, used to represent a physical quantity</gml:description> <gml:identifier codeSpace="ISOTC211/19115">thematicClassification</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_CoverageContentTypeCode_physicalMeasurement"> <gml:description>value in physical units of the quantity being measured</gml:description> <gml:identifier codeSpace="ISOTC211/19115">physicalMeasurement</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_DatatypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_DatatypeCode"> <gml:description>datatype of element or entity</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_DatatypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_class"> <gml:description>descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behavior</gml:description> <gml:identifier codeSpace="ISOTC211/19115">class</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_codelist"> <gml:description>descriptor of a set of objects that share the same attributes, operations, methods, relationships, and behavior</gml:description> <gml:identifier codeSpace="ISOTC211/19115">codelist</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_enumeration"> <gml:description>data type whose instances form a list of named literal values, not extendable</gml:description> <gml:identifier codeSpace="ISOTC211/19115">enumeration</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_codelistElement"> <gml:description>permissible value for a codelist or enumeration</gml:description> <gml:identifier codeSpace="ISOTC211/19115">codelistElement</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_abstractClass"> <gml:description>class that cannot be directly instantiated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">abstractClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_aggregateClass"> <gml:description>class that is composed of classes it is connected to by an aggregate relationship</gml:description> <gml:identifier codeSpace="ISOTC211/19115">aggregateClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_specifiedClass"> <gml:description>subclass that may be substituted for its superclass</gml:description> <gml:identifier codeSpace="ISOTC211/19115">specifiedClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_datatypeClass"> <gml:description>class with few or no operations whose primary purpose is to hold the abstract state of another class for transmittal, storage, encoding or persistent storage</gml:description> <gml:identifier codeSpace="ISOTC211/19115">datatypeClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_interfaceClass"> <gml:description>named set of operations that characterize the behavior of an element</gml:description> <gml:identifier codeSpace="ISOTC211/19115">interfaceClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_unionClass"> <gml:description>class describing a selection of one of the specified types</gml:description> <gml:identifier codeSpace="ISOTC211/19115">unionClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_metaClass"> <gml:description>class whose instances are classes</gml:description> <gml:identifier codeSpace="ISOTC211/19115">metaClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_typeClass"> <gml:description>class used for specification of a domain of instances (objects), together with the operations applicable to the objects. A type may have attributes and associations</gml:description> <gml:identifier codeSpace="ISOTC211/19115">typeClass</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_characterString"> <gml:description>free text field</gml:description> <gml:identifier codeSpace="ISOTC211/19115">characterString</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_integer"> <gml:description>numerical field</gml:description> <gml:identifier codeSpace="ISOTC211/19115">integer</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DatatypeCode_association"> <gml:description>semantic relationship between two classes that involves connections among their instances</gml:description> <gml:identifier codeSpace="ISOTC211/19115">association</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_DimensionNameTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_DimensionNameTypeCode"> <gml:description>name of the dimension</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_DimensionNameTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_row"> <gml:description>ordinate (y) axis</gml:description> <gml:identifier codeSpace="ISOTC211/19115">row</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_column"> <gml:description>abscissa (x) axis</gml:description> <gml:identifier codeSpace="ISOTC211/19115">column</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_vertical"> <gml:description>vertical (z) axis</gml:description> <gml:identifier codeSpace="ISOTC211/19115">vertical</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_track"> <gml:description>along the direction of motion of the scan point</gml:description> <gml:identifier codeSpace="ISOTC211/19115">track</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_crossTrack"> <gml:description>perpendicular to the direction of motion of the scan point</gml:description> <gml:identifier codeSpace="ISOTC211/19115">crossTrack</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_line"> <gml:description>scan line of a sensor</gml:description> <gml:identifier codeSpace="ISOTC211/19115">line</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_sample"> <gml:description>element along a scan line</gml:description> <gml:identifier codeSpace="ISOTC211/19115">sample</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_DimensionNameTypeCode_time"> <gml:description>duration</gml:description> <gml:identifier codeSpace="ISOTC211/19115">time</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_GeometricObjectTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_GeometricObjectTypeCode"> <gml:description>name of point or vector objects used to locate zero-, one-, two-, or three-dimensional spatial locations in the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_GeometricObjectTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_complex"> <gml:description>set of geometric primitives such that their boundaries can be represented as a union of other primitives</gml:description> <gml:identifier codeSpace="ISOTC211/19115">complex</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_composite"> <gml:description>connected set of curves, solids or surfaces</gml:description> <gml:identifier codeSpace="ISOTC211/19115">composite</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_curve"> <gml:description>bounded, 1-dimensional geometric primitive, representing the continuous image of a line</gml:description> <gml:identifier codeSpace="ISOTC211/19115">curve</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_point"> <gml:description>zero-dimensional geometric primitive, representing a position but not having an extent</gml:description> <gml:identifier codeSpace="ISOTC211/19115">point</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_solid"> <gml:description>bounded, connected 3-dimensional geometric primitive, representing the continuous image of a region of space</gml:description> <gml:identifier codeSpace="ISOTC211/19115">solid</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_GeometricObjectTypeCode_surface"> <gml:description>bounded, connected 2-dimensional geometric primitive, representing the continuous image of a region of a plane</gml:description> <gml:identifier codeSpace="ISOTC211/19115">surface</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_ImagingConditionCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_ImagingConditionCode"> <gml:description>code which indicates conditions which may affect the image</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_ImagingConditionCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_blurredImage"> <gml:description>portion of the image is blurred</gml:description> <gml:identifier codeSpace="ISOTC211/19115">blurredImage</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_cloud"> <gml:description>portion of the image is partially obscured by cloud cover</gml:description> <gml:identifier codeSpace="ISOTC211/19115">cloud</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_degradingObliquity"> <gml:description>acute angle between the plane of the ecliptic (the plane of the Earth s orbit) and the plane of the celestial equator</gml:description> <gml:identifier codeSpace="ISOTC211/19115">degradingObliquity</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_fog"> <gml:description>portion of the image is partially obscured by fog</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fog</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_heavySmokeOrDust"> <gml:description>portion of the image is partially obscured by heavy smoke or dust</gml:description> <gml:identifier codeSpace="ISOTC211/19115">heavySmokeOrDust</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_night"> <gml:description>image was taken at night</gml:description> <gml:identifier codeSpace="ISOTC211/19115">night</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_rain"> <gml:description>image was taken during rainfall</gml:description> <gml:identifier codeSpace="ISOTC211/19115">rain</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_semiDarkness"> <gml:description>image was taken during semi-dark conditions -- twilight conditions</gml:description> <gml:identifier codeSpace="ISOTC211/19115">semiDarkness</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_shadow"> <gml:description>portion of the image is obscured by shadow</gml:description> <gml:identifier codeSpace="ISOTC211/19115">shadow</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_snow"> <gml:description>portion of the image is obscured by snow</gml:description> <gml:identifier codeSpace="ISOTC211/19115">snow</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ImagingConditionCode_terrainMasking"> <gml:description>the absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest</gml:description> <gml:identifier codeSpace="ISOTC211/19115">terrainMasking</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_KeywordTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_KeywordTypeCode"> <gml:description>methods used to group similar keywords</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_KeywordTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_KeywordTypeCode_discipline"> <gml:description>keyword identifies a branch of instruction or specialized learning</gml:description> <gml:identifier codeSpace="ISOTC211/19115">discipline</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_KeywordTypeCode_place"> <gml:description>keyword identifies a location</gml:description> <gml:identifier codeSpace="ISOTC211/19115">place</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_KeywordTypeCode_stratum"> <gml:description>keyword identifies the layer(s) of any deposited substance</gml:description> <gml:identifier codeSpace="ISOTC211/19115">stratum</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_KeywordTypeCode_temporal"> <gml:description>keyword identifies a time period related to the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">temporal</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_KeywordTypeCode_theme"> <gml:description>keyword identifies a particular subject or topic</gml:description> <gml:identifier codeSpace="ISOTC211/19115">theme</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_MaintenanceFrequencyCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_MaintenanceFrequencyCode"> <gml:description>frequency with which modifications and deletions are made to the data after it is first produced</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_MaintenanceFrequencyCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_continual"> <gml:description>data is repeatedly and frequently updated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">continual</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_daily"> <gml:description>data is updated each day</gml:description> <gml:identifier codeSpace="ISOTC211/19115">daily</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_weekly"> <gml:description>data is updated on a weekly basis</gml:description> <gml:identifier codeSpace="ISOTC211/19115">weekly</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_fortnightly"> <gml:description>data is updated every two weeks</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fortnightly</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_monthly"> <gml:description>data is updated each month</gml:description> <gml:identifier codeSpace="ISOTC211/19115">monthly</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <!-- CHANGE 2008-09-11 #02 --> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_quarterly"> <!-- CHANGE 2008-09-11 #02 <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_quartely"> --> <gml:description>data is updated every three months</gml:description> <!-- CHANGE 2008-09-11 #03 --> <gml:identifier codeSpace="ISOTC211/19115">quarterly</gml:identifier> <!-- CHANGE 2008-09-11 #03 <gml:identifier codeSpace="ISOTC211/19115">quartely</gml:identifier> --> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_biannually"> <gml:description>data is updated twice each year</gml:description> <gml:identifier codeSpace="ISOTC211/19115">biannually</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_annually"> <gml:description>data is updated every year</gml:description> <gml:identifier codeSpace="ISOTC211/19115">annually</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_asNeeded"> <gml:description>data is updated as deemed necessary</gml:description> <gml:identifier codeSpace="ISOTC211/19115">asNeeded</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_irregular"> <gml:description>data is updated in intervals that are uneven in duration</gml:description> <gml:identifier codeSpace="ISOTC211/19115">irregular</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_notPlanned"> <gml:description>there are no plans to update the data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">notPlanned</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MaintenanceFrequencyCode_unknown"> <gml:description>frequency of maintenance for the data is not known</gml:description> <!-- CHANGE 2008-09-11 #01--> <gml:identifier codeSpace="ISOTC211/19115">unknown</gml:identifier> <!-- CHANGE 2008-09-11 #01 <gml:identifier codeSpace="ISOTC211/19115">unknwon</gml:identifier> --> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_MediumFormatCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_MediumFormatCode"> <gml:description>method used to write to the medium</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_MediumFormatCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_cpio"> <gml:description>CoPy In / Out (UNIX file format and command)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">cpio</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_tar"> <gml:description>Tape ARchive</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tar</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_highSierra"> <gml:description>high sierra file system</gml:description> <gml:identifier codeSpace="ISOTC211/19115">highSierra</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_iso9660"> <gml:description>information processing volume and file structure of CD-ROM</gml:description> <gml:identifier codeSpace="ISOTC211/19115">iso9660</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_iso9660RockRidge"> <gml:description>rock ridge interchange protocol (UNIX)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">iso9660RockRidge</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumFormatCode_iso9660AppleHFS"> <gml:description>hierarchical file system (Macintosh)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">iso9660AppleHFS</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_MediumNameCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_MediumNameCode"> <gml:description>name of the medium</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_MediumNameCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_cdRom"> <gml:description>read-only optical disk</gml:description> <gml:identifier codeSpace="ISOTC211/19115">cdRom</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_dvd"> <gml:description>digital versatile disk</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dvd</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_dvdRom"> <gml:description>digital versatile disk, read only</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dvdRom</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_3halfInchFloppy"> <gml:description>3,5 inch magnetic disk</gml:description> <gml:identifier codeSpace="ISOTC211/19115">3halfInchFloppy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_5quarterInchFloppy"> <gml:description>5,25 inch magnetic disk</gml:description> <gml:identifier codeSpace="ISOTC211/19115">5quarterInchFloppy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_7trackTape"> <gml:description>7 track magnetic tape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">7trackTape</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_9trackType"> <gml:description>9 track magnetic tape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">9trackType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_3480Cartridge"> <gml:description>3480 cartridge tape drive</gml:description> <gml:identifier codeSpace="ISOTC211/19115">3480Cartridge</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_3490Cartridge"> <gml:description>3490 cartridge tape drive</gml:description> <gml:identifier codeSpace="ISOTC211/19115">3490Cartridge</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_3580Cartridge"> <gml:description>3580 cartridge tape drive</gml:description> <gml:identifier codeSpace="ISOTC211/19115">3580Cartridge</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_4mmCartridgeTape"> <gml:description>4 millimetre magnetic tape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">4mmCartridgeTape</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_8mmCartridgeTape"> <gml:description>8 millimetre magnetic tape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">8mmCartridgeTape</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_1quarterInchCartridgeTape"> <gml:description>0,25 inch magnetic tape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">1quarterInchCartridgeTape</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_digitalLinearTape"> <gml:description>half inch cartridge streaming tape drive</gml:description> <gml:identifier codeSpace="ISOTC211/19115">digitalLinearTape</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_onLine"> <gml:description>direct computer linkage</gml:description> <gml:identifier codeSpace="ISOTC211/19115">onLine</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_satellite"> <gml:description>linkage through a satellite communication system</gml:description> <gml:identifier codeSpace="ISOTC211/19115">satellite</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_telephoneLink"> <gml:description>communication through a telephone network</gml:description> <gml:identifier codeSpace="ISOTC211/19115">telephoneLink</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_MediumNameCode_hardcopy"> <gml:description>pamphlet or leaflet giving descriptive information</gml:description> <gml:identifier codeSpace="ISOTC211/19115">hardcopy</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_ObligationCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_ObligationCode"> <gml:description>obligation of the element or entity</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_ObligationCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_ObligationCode_mandatory"> <gml:description>element is always required</gml:description> <gml:identifier codeSpace="ISOTC211/19115">mandatory</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ObligationCode_optional"> <gml:description>element is not required</gml:description> <gml:identifier codeSpace="ISOTC211/19115">optional</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ObligationCode_conditional"> <gml:description>element is required when a specific condition is met</gml:description> <gml:identifier codeSpace="ISOTC211/19115">conditional</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_PixelOrientationCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_PixelOrientationCode"> <gml:description>point in a pixel corresponding to the Earth location of the pixel</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_PixelOrientationCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_PixelOrientationCode_center"> <gml:description>point halfway between the lower left and the upper right of the pixel</gml:description> <gml:identifier codeSpace="ISOTC211/19115">center</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_PixelOrientationCode_lowerLeft"> <gml:description>the corner in the pixel closest to the origin of the SRS; if two are at the same distance from the origin, the one with the smallest x-value</gml:description> <gml:identifier codeSpace="ISOTC211/19115">lowerLeft</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_PixelOrientationCode_lowerRight"> <gml:description>next corner counterclockwise from the lower left</gml:description> <gml:identifier codeSpace="ISOTC211/19115">lowerRight</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_PixelOrientationCode_upperRight"> <gml:description>next corner counterclockwise from the lower right</gml:description> <gml:identifier codeSpace="ISOTC211/19115">upperRight</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_PixelOrientationCode_upperLeft"> <gml:description>next corner counterclockwise from the upper right</gml:description> <gml:identifier codeSpace="ISOTC211/19115">upperLeft</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_ProgressCode===--> <codelistItem> <CodeListDictionary gml:id="MD_ProgressCode"> <gml:description>status of the dataset or progress of a review</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_ProgressCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_completed"> <gml:description>production of the data has been completed</gml:description> <gml:identifier codeSpace="ISOTC211/19115">completed</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_historicalArchive"> <gml:description>data has been stored in an offline storage facility</gml:description> <gml:identifier codeSpace="ISOTC211/19115">historicalArchive</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_obsolete"> <gml:description>data is no longer relevant</gml:description> <gml:identifier codeSpace="ISOTC211/19115">obsolete</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_onGoing"> <gml:description>data is continually being updated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">onGoing</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_planned"> <gml:description>fixed date has been established upon or by which the data will be created or updated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">planned</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_required"> <gml:description>data needs to be generated or updated</gml:description> <gml:identifier codeSpace="ISOTC211/19115">required</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ProgressCode_underDevelopment"> <gml:description>data is currently in the process of being created</gml:description> <gml:identifier codeSpace="ISOTC211/19115">underDevelopment</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_RestrictionCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_RestrictionCode"> <gml:description>limitation(s) placed upon the access or use of the data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_RestrictionCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_copyright"> <gml:description>exclusive right to the publication, production, or sale of the rights to a literary, dramatic, musical, or artistic work, or to the use of a commercial print or label, granted by law for a specified period of time to an author, composer, artist, distributor</gml:description> <gml:identifier codeSpace="ISOTC211/19115">copyright</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_patent"> <gml:description>government has granted exclusive right to make, sell, use or license an invention or discovery</gml:description> <gml:identifier codeSpace="ISOTC211/19115">patent</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_patentPending"> <gml:description>produced or sold information awaiting a patent</gml:description> <gml:identifier codeSpace="ISOTC211/19115">patentPending</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_trademark"> <gml:description>a name, symbol, or other device identifying a product, officially registered and legally restricted to the use of the owner or manufacturer</gml:description> <gml:identifier codeSpace="ISOTC211/19115">trademark</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_license"> <gml:description>formal permission to do something</gml:description> <gml:identifier codeSpace="ISOTC211/19115">license</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_intellectualPropertyRights"> <gml:description>rights to financial benefit from and control of distribution of non-tangible property that is a result of creativity</gml:description> <gml:identifier codeSpace="ISOTC211/19115">intellectualPropertyRights</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_restricted"> <gml:description>withheld from general circulation or disclosure</gml:description> <gml:identifier codeSpace="ISOTC211/19115">restricted</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_RestrictionCode_otherRestrictions"> <gml:description>limitation not listed</gml:description> <gml:identifier codeSpace="ISOTC211/19115">otherRestrictions</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_ScopeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_ScopeCode"> <gml:description>class of information to which the referencing entity applies</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_ScopeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_attribute"> <gml:description>information applies to the attribute class</gml:description> <gml:identifier codeSpace="ISOTC211/19115">attribute</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_attributeType"> <gml:description>information applies to the characteristic of a feature</gml:description> <gml:identifier codeSpace="ISOTC211/19115">attributeType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_collectionHardware"> <gml:description>information applies to the collection hardware class</gml:description> <gml:identifier codeSpace="ISOTC211/19115">collectionHardware</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_collectionSession"> <gml:description>information applies to the collection session</gml:description> <gml:identifier codeSpace="ISOTC211/19115">collectionSession</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_dataset"> <gml:description>information applies to the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dataset</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_series"> <gml:description>information applies to the series</gml:description> <gml:identifier codeSpace="ISOTC211/19115">series</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_nonGeographicDataset"> <gml:description>information applies to non-geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">nonGeographicDataset</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_dimensionGroup"> <gml:description>information applies to a dimension group</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dimensionGroup</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_feature"> <gml:description>information applies to a feature</gml:description> <gml:identifier codeSpace="ISOTC211/19115">feature</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_featureType"> <gml:description>information applies to a feature type</gml:description> <gml:identifier codeSpace="ISOTC211/19115">featureType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_propertyType"> <gml:description>information applies to a property type</gml:description> <gml:identifier codeSpace="ISOTC211/19115">propertyType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_fieldSession"> <gml:description>information applies to a field session</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fieldSession</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_software"> <gml:description>information applies to a computer program or routine</gml:description> <gml:identifier codeSpace="ISOTC211/19115">software</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_service"> <gml:description>information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case</gml:description> <gml:identifier codeSpace="ISOTC211/19115">service</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_model"> <gml:description>information applies to a copy or imitation of an existing or hypothetical object</gml:description> <gml:identifier codeSpace="ISOTC211/19115">model</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_ScopeCode_tile"> <gml:description>information applies to a tile, a spatial subset of geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tile</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_SpatialRepresentationTypeCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_SpatialRepresentationTypeCode"> <gml:description>method used to represent geographic information in the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_SpatialRepresentationTypeCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_vector"> <gml:description>vector data is used to represent geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">vector</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_grid"> <gml:description>grid data is used to represent geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">grid</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_textTable"> <gml:description>textual or tabular data is used to represent geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">textTable</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_tin"> <gml:description>triangulated irregular network</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tin</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_stereoModel"> <gml:description>three-dimensional view formed by the intersecting homologous rays of an overlapping pair of images</gml:description> <gml:identifier codeSpace="ISOTC211/19115">stereoModel</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_SpatialRepresentationTypeCode_video"> <gml:description>scene from a video recording</gml:description> <gml:identifier codeSpace="ISOTC211/19115">video</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_TopicCategoryCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_TopicCategoryCode"> <gml:description>high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets. Can be used to group keywords as well. Listed examples are not exhaustive.</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_TopicCategoryCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_farming"> <gml:description>rearing of animals and/or cultivation of plants. Examples: agriculture, irrigation, aquaculture, plantations, herding, pests and diseases affecting crops and livestock</gml:description> <gml:identifier codeSpace="ISOTC211/19115">farming</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_biota"> <gml:description>flora and/or fauna in natural environment. Examples: wildlife, vegetation, biological sciences, ecology, wilderness, sealife, wetlands, habitat</gml:description> <gml:identifier codeSpace="ISOTC211/19115">biota</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_boundaries"> <gml:description>legal land descriptions. Examples: political and administrative boundaries</gml:description> <gml:identifier codeSpace="ISOTC211/19115">boundaries</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_climatologyMeteorologyAtmosphere"> <gml:description>processes and phenomena of the atmosphere. Examples: cloud cover, weather, climate, atmospheric conditions, climate change, precipitation</gml:description> <gml:identifier codeSpace="ISOTC211/19115">climatologyMeteorologyAtmosphere</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_economy"> <gml:description>economic activities, conditions and employment. Examples: production, labour, revenue, commerce, industry, tourism and ecotourism, forestry, fisheries, commercial or subsistence hunting, exploration and exploitation of resources such as minerals, oil and gas</gml:description> <gml:identifier codeSpace="ISOTC211/19115">economy</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_elevation"> <gml:description>height above or below sea level. Examples: altitude, bathymetry, digital elevation models, slope, derived products</gml:description> <gml:identifier codeSpace="ISOTC211/19115">elevation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_environment"> <gml:description>environmental resources, protection and conservation. Examples: environmental pollution, waste storage and treatment, environmental impact assessment, monitoring environmental risk, nature reserves, landscape</gml:description> <gml:identifier codeSpace="ISOTC211/19115">environment</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_geoscientificInformation"> <gml:description>information pertaining to earth sciences. Examples: geophysical features and processes, geology, minerals, sciences dealing with the composition, structure and origin of the earth s rocks, risks of earthquakes, volcanic activity, landslides, gravity information, soils, permafrost, hydrogeology, erosion</gml:description> <gml:identifier codeSpace="ISOTC211/19115">geoscientificInformation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_health"> <gml:description>health, health services, human ecology, and safety. Examples: disease and illness, factors affecting health, hygiene, substance abuse, mental and physical health, health services</gml:description> <gml:identifier codeSpace="ISOTC211/19115">health</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_imageryBaseMapsEarthCover"> <gml:description>base maps. Examples: land cover, topographic maps, imagery, unclassified images, annotations</gml:description> <gml:identifier codeSpace="ISOTC211/19115">imageryBaseMapsEarthCover</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_intelligenceMilitary"> <gml:description>military bases, structures, activities. Examples: barracks, training grounds, military transportation, information collection</gml:description> <gml:identifier codeSpace="ISOTC211/19115">intelligenceMilitary</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_inlandWaters"> <gml:description>inland water features, drainage systems and their characteristics. Examples: rivers and glaciers, salt lakes, water utilization plans, dams, currents, floods, water quality, hydrographic charts</gml:description> <gml:identifier codeSpace="ISOTC211/19115">inlandWaters</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_location"> <gml:description>positional information and services. Examples: addresses, geodetic networks, control points, postal zones and services, place names</gml:description> <gml:identifier codeSpace="ISOTC211/19115">location</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_oceans"> <gml:description>features and characteristics of salt water bodies (excluding inland waters). Examples: tides, tidal waves, coastal information, reefs</gml:description> <gml:identifier codeSpace="ISOTC211/19115">oceans</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_planningCadastre"> <gml:description>information used for appropriate actions for future use of the land. Examples: land use maps, zoning maps, cadastral surveys, land ownership</gml:description> <gml:identifier codeSpace="ISOTC211/19115">planningCadastre</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_society"> <gml:description>characteristics of society and cultures. Examples: settlements, anthropology, archaeology, education, traditional beliefs, manners and customs, demographic data, recreational areas and activities, social impact assessments, crime and justice, census information</gml:description> <gml:identifier codeSpace="ISOTC211/19115">society</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_structure"> <gml:description>man-made construction. Examples: buildings, museums, churches, factories, housing, monuments, shops, towers</gml:description> <gml:identifier codeSpace="ISOTC211/19115">structure</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_transportation"> <gml:description>means and aids for conveying persons and/or goods. Examples: roads, airports/airstrips, shipping routes, tunnels, nautical charts, vehicle or vessel location, aeronautical charts, railways</gml:description> <gml:identifier codeSpace="ISOTC211/19115">transportation</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopicCategoryCode_utilitiesCommunication"> <gml:description>energy, water and waste systems and communications infrastructure and services. Examples: hydroelectricity, geothermal, solar and nuclear sources of energy, water purification and distribution, sewage collection and disposal, electricity and gas distribution, data communication, telecommunication, radio, communication networks</gml:description> <gml:identifier codeSpace="ISOTC211/19115">utilitiesCommunication</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== MD_TopologyLevelCode ===--> <codelistItem> <CodeListDictionary gml:id="MD_TopologyLevelCode"> <gml:description>degree of complexity of the spatial relationships</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MD_TopologyLevelCode</gml:identifier> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_geometryOnly"> <gml:description>geometry objects without any additional structure which describes topology</gml:description> <gml:identifier codeSpace="ISOTC211/19115">geometryOnly</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_topology1D"> <gml:description>1-dimensional topological complex -- commonly called chain-node topology</gml:description> <gml:identifier codeSpace="ISOTC211/19115">topology1D</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_planarGraph"> <gml:description>1-dimensional topological complex that is planar. (A planar graph is a graph that can be drawn in a plane in such a way that no two edges intersect except at a vertex.)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">planarGraph</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_fullPlanarGraph"> <gml:description>2-dimensional topological complex that is planar. (A 2-dimensional topological complex is commonly called full topology in a cartographic 2D environment.)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fullPlanarGraph</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_surfaceGraph"> <gml:description>1-dimensional topological complex that is isomorphic to a subset of a surface. (A geometric complex is isomorphic to a topological complex if their elements are in a one-to-one, dimensional-and boundry-preserving correspondence to one another.)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">surfaceGraph</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_fullSurfaceGraph"> <gml:description>2-dimensional topological complex that is isomorphic to a subset of a surface</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fullSurfaceGraph</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_topology3D"> <gml:description>3-dimensional topological complex. (A topological complex is a collection of topological primitives that are closed under the boundary operations.)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">topology3D</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_fullTopology3D"> <gml:description>complete coverage of a 3D Euclidean coordinate space</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fullTopology3D</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MD_TopologyLevelCode_abstract"> <gml:description>topological complex without any specified geometric realisation</gml:description> <gml:identifier codeSpace="ISOTC211/19115">abstract</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!---===MX_ScopeCode===--> <codelistItem> <CodeListDictionary gml:id="MX_ScopeCode"> <gml:description>Extension of MD_ScopeCode for the needs of GMX application schemas and in the context of a transfer</gml:description> <gml:identifier codeSpace="ISOTC211/19115">MX_ScopeCode</gml:identifier> <!--MD_ScopeCode values--> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_attribute"> <gml:description>information applies to the attribute class</gml:description> <gml:identifier codeSpace="ISOTC211/19115">attribute</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_attributeType"> <gml:description>information applies to the characteristic of a feature</gml:description> <gml:identifier codeSpace="ISOTC211/19115">attributeType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_collectionHardware"> <gml:description>information applies to the collection hardware class</gml:description> <gml:identifier codeSpace="ISOTC211/19115">collectionHardware</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_collectionSession"> <gml:description>information applies to the collection session</gml:description> <gml:identifier codeSpace="ISOTC211/19115">collectionSession</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_dataset"> <gml:description>information applies to the dataset</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dataset</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_series"> <gml:description>information applies to the series</gml:description> <gml:identifier codeSpace="ISOTC211/19115">series</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_nonGeographicDataset"> <gml:description>information applies to non-geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">nonGeographicDataset</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_dimensionGroup"> <gml:description>information applies to a dimension group</gml:description> <gml:identifier codeSpace="ISOTC211/19115">dimensionGroup</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_feature"> <gml:description>information applies to a feature</gml:description> <gml:identifier codeSpace="ISOTC211/19115">feature</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_featureType"> <gml:description>information applies to a feature type</gml:description> <gml:identifier codeSpace="ISOTC211/19115">featureType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_propertyType"> <gml:description>information applies to a property type</gml:description> <gml:identifier codeSpace="ISOTC211/19115">propertyType</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_fieldSession"> <gml:description>information applies to a field session</gml:description> <gml:identifier codeSpace="ISOTC211/19115">fieldSession</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_software"> <gml:description>information applies to a computer program or routine</gml:description> <gml:identifier codeSpace="ISOTC211/19115">software</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_service"> <gml:description>information applies to a capability which a service provider entity makes available to a service user entity through a set of interfaces that define a behaviour, such as a use case</gml:description> <gml:identifier codeSpace="ISOTC211/19115">service</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_model"> <gml:description>information applies to a copy or imitation of an existing or hypothetical object</gml:description> <gml:identifier codeSpace="ISOTC211/19115">model</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_tile"> <gml:description>information applies to a tile, a spatial subset of geographic data</gml:description> <gml:identifier codeSpace="ISOTC211/19115">tile</gml:identifier> </CodeDefinition> </codeEntry> <!--MX_ScopeCode extensions--> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_initiative"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as an initiative (DS_Initiative)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">initiative</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_stereomate"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as a stereo mate (DS_StereoMate)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">stereomate</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_sensor"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as a sensor (DS_Sensor)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">sensor</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_platformSeries"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as a platform series (DS_PlatformSeries)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">platformSeries</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_sensorSeries"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as a sensor series (DS_SensorSeries)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">sensorSeries</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_productionSeries"> <gml:description>The referencing entity applies to a transfer aggregate which was originally identified as a production series (DS_ProductionSeries)</gml:description> <gml:identifier codeSpace="ISOTC211/19115">productionSeries</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_transferAggregate"> <gml:description>The referencing entity applies to a transfer aggregate which has no existence outside of the transfer context</gml:description> <gml:identifier codeSpace="ISOTC211/19115">transferAggregate</gml:identifier> </CodeDefinition> </codeEntry> <codeEntry> <CodeDefinition gml:id="MX_ScopeCode_otherAggregate"> <gml:description>The referencing entity applies to a transfer aggregate which has an existence outside of the transfer context, but which does not pertains to a specific aggregate type.</gml:description> <gml:identifier codeSpace="ISOTC211/19115">otherAggregate</gml:identifier> </CodeDefinition> </codeEntry> </CodeListDictionary> </codelistItem> <!--=== EOF ===--> </CT_CodelistCatalogue> ������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/iso_che.xml�����������������������������������������������������������0000664�0000000�0000000�00000142134�13217064120�0020205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <che:CHE_MD_Metadata xmlns:che="http://www.geocat.ch/2008/che" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:geonet="http://www.fao.org/geonetwork" gco:isoType="gmd:MD_Metadata"> <gmd:fileIdentifier> <gco:CharacterString>3d2981af-d5db-4122-8db6-1ea41ed44b3f</gco:CharacterString> </gmd:fileIdentifier> <gmd:language xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gco:CharacterString>ger</gco:CharacterString> </gmd:language> <gmd:characterSet xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterSet> <gmd:hierarchyLevel xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:MD_ScopeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" /> </gmd:hierarchyLevel> <gmd:contact xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed"> <che:CHE_CI_ResponsibleParty gco:isoType="gmd:CI_ResponsibleParty"> <gmd:organisationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Grundbuch- und Vermessungsamt</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Grundbuch- und Vermessungsamt</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Grundbuch- und Vermessungsamt</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Grundbuch- und Vermessungsamt</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">Grundbuch- und Vermessungsamt</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">Grundbuch- und Vermessungsamt</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:phone> <che:CHE_CI_Telephone gco:isoType="gmd:CI_Telephone"> <gmd:voice> <gco:CharacterString>041 728 56 00</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>041 728 56 09</gco:CharacterString> </gmd:facsimile> </che:CHE_CI_Telephone> </gmd:phone> <gmd:address> <che:CHE_CI_Address gco:isoType="gmd:CI_Address"> <gmd:city> <gco:CharacterString>Zug</gco:CharacterString> </gmd:city> <gmd:administrativeArea> <gco:CharacterString>Zug</gco:CharacterString> </gmd:administrativeArea> <gmd:postalCode> <gco:CharacterString>6301</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>CH</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>info.gva@zg.ch</gco:CharacterString> </gmd:electronicMailAddress> <che:streetName> <gco:CharacterString>Aabachstrasse</gco:CharacterString> </che:streetName> <che:streetNumber> <gco:CharacterString>5</gco:CharacterString> </che:streetNumber> <che:postBox> <gco:CharacterString>857</gco:CharacterString> </che:postBox> </che:CHE_CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource> <gmd:linkage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="che:PT_FreeURL_PropertyType"> <che:PT_FreeURL> <che:URLGroup> <che:LocalisedURL locale="#EN">http://www.zg.ch/gva</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#DE">http://www.zg.ch/gva</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#FR">http://www.zg.ch/gva</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#IT">http://www.zg.ch/gva</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#RM">http://www.zg.ch/gva</che:LocalisedURL> </che:URLGroup> </che:PT_FreeURL> </gmd:linkage> <gmd:protocol> <gco:CharacterString>text/html</gco:CharacterString> </gmd:protocol> </gmd:CI_OnlineResource> </gmd:onlineResource> <gmd:hoursOfService> <gco:CharacterString>08.00-11.45, 14.00-17.00, montags bis 18.00</gco:CharacterString> </gmd:hoursOfService> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="distributor" /> </gmd:role> <che:organisationAcronym xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>GVA</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">GVA</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">GVA</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">GVA</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">GVA</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">GVA</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </che:organisationAcronym> </che:CHE_CI_ResponsibleParty> </gmd:contact> <gmd:dateStamp xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gco:DateTime>2017-01-24T12:15:29</gco:DateTime> </gmd:dateStamp> <gmd:metadataStandardName xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gco:CharacterString>GM03 2+</gco:CharacterString> </gmd:metadataStandardName> <gmd:metadataStandardVersion xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gco:CharacterString>1.0</gco:CharacterString> </gmd:metadataStandardVersion> <gmd:locale xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:PT_Locale id="DE"> <gmd:languageCode> <gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger" /> </gmd:languageCode> <gmd:characterEncoding> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterEncoding> </gmd:PT_Locale> </gmd:locale> <gmd:locale xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:PT_Locale id="FR"> <gmd:languageCode> <gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="fre" /> </gmd:languageCode> <gmd:characterEncoding> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterEncoding> </gmd:PT_Locale> </gmd:locale> <gmd:locale xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:PT_Locale id="IT"> <gmd:languageCode> <gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ita" /> </gmd:languageCode> <gmd:characterEncoding> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterEncoding> </gmd:PT_Locale> </gmd:locale> <gmd:locale xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:PT_Locale id="EN"> <gmd:languageCode> <gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="eng" /> </gmd:languageCode> <gmd:characterEncoding> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterEncoding> </gmd:PT_Locale> </gmd:locale> <gmd:referenceSystemInfo xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <gmd:MD_ReferenceSystem> <gmd:referenceSystemIdentifier> <gmd:RS_Identifier> <gmd:code xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>CH-Landeskoordinaten</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">CH-Landeskoordinaten</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:code> </gmd:RS_Identifier> </gmd:referenceSystemIdentifier> </gmd:MD_ReferenceSystem> </gmd:referenceSystemInfo> <gmd:identificationInfo xmlns:comp="http://www.geocat.ch/2003/05/gateway/GM03Comprehensive" xmlns:xalan="http://xml.apache.org/xalan"> <che:CHE_MD_DataIdentification gco:isoType="gmd:MD_DataIdentification"> <gmd:citation> <gmd:CI_Citation> <gmd:title xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Gewässerschutzkarte</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Gewässerschutzkarte</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:title> <gmd:date> <gmd:CI_Date> <gmd:date> <gco:Date>2017-01-24</gco:Date> </gmd:date> <gmd:dateType> <gmd:CI_DateTypeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision" /> </gmd:dateType> </gmd:CI_Date> </gmd:date> <gmd:date> <gmd:CI_Date> <gmd:date> <gco:Date>2005-06-14</gco:Date> </gmd:date> <gmd:dateType> <gmd:CI_DateTypeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation" /> </gmd:dateType> </gmd:CI_Date> </gmd:date> </gmd:CI_Citation> </gmd:citation> <gmd:abstract xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Die Gewässerschutzkarte mit den darin aufgeführten besonders gefährdeten Gewässerschutzbereichen, Grundwasserschutzzonen und -arealen dient der nachhaltigen Bewirtschaftung der natürlichen Wasserressourcen. Sie ist damit das entscheidende planerische Instrument für den planerischen Gewässerschutz und wird von den Kantonen erstellt.</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Die Gewässerschutzkarte mit den darin aufgeführten besonders gefährdeten Gewässerschutzbereichen, Grundwasserschutzzonen und -arealen dient der nachhaltigen Bewirtschaftung der natürlichen Wasserressourcen. Sie ist damit das entscheidende planerische Instrument für den planerischen Gewässerschutz und wird von den Kantonen erstellt.</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:abstract> <gmd:status> <gmd:MD_ProgressCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing" /> </gmd:status> <gmd:pointOfContact xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed"> <che:CHE_CI_ResponsibleParty gco:isoType="gmd:CI_ResponsibleParty"> <gmd:organisationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Amt für Umweltschutz</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Amt für Umweltschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Amt für Umweltschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Amt für Umweltschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">Amt für Umweltschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">Amt für Umweltschutz</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:phone> <che:CHE_CI_Telephone gco:isoType="gmd:CI_Telephone"> <gmd:voice> <gco:CharacterString>041 728 53 70</gco:CharacterString> </gmd:voice> <gmd:facsimile> <gco:CharacterString>041 728 53 79</gco:CharacterString> </gmd:facsimile> </che:CHE_CI_Telephone> </gmd:phone> <gmd:address> <che:CHE_CI_Address gco:isoType="gmd:CI_Address"> <gmd:city> <gco:CharacterString>Zug</gco:CharacterString> </gmd:city> <gmd:administrativeArea> <gco:CharacterString>Zug</gco:CharacterString> </gmd:administrativeArea> <gmd:postalCode> <gco:CharacterString>6301</gco:CharacterString> </gmd:postalCode> <gmd:country> <gco:CharacterString>CH</gco:CharacterString> </gmd:country> <gmd:electronicMailAddress> <gco:CharacterString>info.afu@zg.ch</gco:CharacterString> </gmd:electronicMailAddress> <che:streetName> <gco:CharacterString>Aabachstrasse</gco:CharacterString> </che:streetName> <che:streetNumber> <gco:CharacterString>5</gco:CharacterString> </che:streetNumber> </che:CHE_CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource> <gmd:linkage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="che:PT_FreeURL_PropertyType"> <che:PT_FreeURL> <che:URLGroup> <che:LocalisedURL locale="#EN">http://www.zg.ch/afu/</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#DE">http://www.zg.ch/afu/</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#FR">http://www.zg.ch/afu/</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#IT">http://www.zg.ch/afu/</che:LocalisedURL> </che:URLGroup> <che:URLGroup> <che:LocalisedURL locale="#RM">http://www.zg.ch/afu/</che:LocalisedURL> </che:URLGroup> </che:PT_FreeURL> </gmd:linkage> <gmd:protocol> <gco:CharacterString>text/html</gco:CharacterString> </gmd:protocol> </gmd:CI_OnlineResource> </gmd:onlineResource> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="owner" /> </gmd:role> <che:organisationAcronym xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>AFU</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">AFU</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">AFU</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">AFU</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">AFU</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">AFU</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </che:organisationAcronym> </che:CHE_CI_ResponsibleParty> </gmd:pointOfContact> <gmd:graphicOverview> <gmd:MD_BrowseGraphic> <gmd:fileName> <gco:CharacterString>http://www.geocat.ch/geonetwork/srv/ger//resources.get?uuid=3d2981af-d5db-4122-8db6-1ea41ed44b3f&amp;fname=GSK_Geocat.bmp</gco:CharacterString> </gmd:fileName> <gmd:fileDescription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>large_thumbnail</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">large_thumbnail</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:fileDescription> <gmd:fileType> <gco:CharacterString>bmp</gco:CharacterString> </gmd:fileType> </gmd:MD_BrowseGraphic> </gmd:graphicOverview> <gmd:resourceFormat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed"> <gmd:MD_Format> <gmd:name> <gco:CharacterString>INTERLIS</gco:CharacterString> </gmd:name> <gmd:version> <gco:CharacterString>1</gco:CharacterString> </gmd:version> </gmd:MD_Format> </gmd:resourceFormat> <gmd:descriptiveKeywords xmlns:xlink="http://www.w3.org/1999/xlink"> <gmd:MD_Keywords> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Grundwasser</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">groundwater</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Grundwasser</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">acqua sotterranea</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">eaux souterraines</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Gewässer</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">water (geographic)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Gewässer</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">acque (geografia)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">eaux (géographie)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Grundwasserschutz</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">groundwater protection</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Grundwasserschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">protezione delle acque sotterranee</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">protection des réserves d'eau souterraines</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Gewässerschutz</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">water pollution prevention</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Gewässerschutz</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">protezione delle acque</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">prévention de la pollution de l'eau</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Population</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">population (ecological)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Population</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">popolazione (ecologia)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">population (écologique)</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Ressourcennutzung</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">resource utilisation</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Ressourcennutzung</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">utilizzazione di risorse</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">utilisation des ressources</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:type> <gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode" codeListValue="_none_" /> </gmd:type> <gmd:thesaurusName> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>GEMET concepts</gco:CharacterString> </gmd:title> <gmd:date> <gmd:CI_Date> <gmd:date> <gco:Date>2015-11-16</gco:Date> </gmd:date> <gmd:dateType> <gmd:CI_DateTypeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/ML_gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" /> </gmd:dateType> </gmd:CI_Date> </gmd:date> <gmd:identifier> <gmd:MD_Identifier> <gmd:code> <gmx:Anchor xmlns:gmx="http://www.isotc211.org/2005/gmx" xlink:href="https://www.geocat.ch:443/geonetwork/srv/eng/thesaurus.download?ref=external._none_.gemet">geonetwork.thesaurus.external._none_.gemet</gmx:Anchor> </gmd:code> </gmd:MD_Identifier> </gmd:identifier> </gmd:CI_Citation> </gmd:thesaurusName> </gmd:MD_Keywords> </gmd:descriptiveKeywords> <gmd:descriptiveKeywords xmlns:xlink="http://www.w3.org/1999/xlink"> <gmd:MD_Keywords> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Bauzone</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Construction zone</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Bauzone</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">zona edificabile</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Zone à bâtir</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Nutzungsplanung</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Land use planning</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Nutzungsplanung</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">Pianificazione dell'utilizzazione</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Planification de l'utilisation du sol</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Grundwasserschutzzone</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">groundwater protection zone</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Grundwasserschutzzone</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">zona di protezione delle acque sotterranee</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">zone de protection des eaux souterraines</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Richtplanung</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Structural planning</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Richtplanung</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">Pianificazione direttrice</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Planification directrice</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Gewässerschutzbereich</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">water protection sector</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Gewässerschutzbereich</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">settore di protezione delle acque</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">secteur de protection des eaux</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:keyword xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Grundwasserschutzareal</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">groundwater protection area</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Grundwasserschutzareal</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">area di protezione delle acque sotterranee</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">périmètre de protection des eaux souterraines</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM" /> </gmd:textGroup> </gmd:PT_FreeText> </gmd:keyword> <gmd:type> <gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode" codeListValue="_none_" /> </gmd:type> <gmd:thesaurusName> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>geocat.ch Thesaurus</gco:CharacterString> </gmd:title> <gmd:date> <gmd:CI_Date> <gmd:date> <gco:Date>2017-03-22</gco:Date> </gmd:date> <gmd:dateType> <gmd:CI_DateTypeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/ML_gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication" /> </gmd:dateType> </gmd:CI_Date> </gmd:date> <gmd:identifier> <gmd:MD_Identifier> <gmd:code> <gmx:Anchor xmlns:gmx="http://www.isotc211.org/2005/gmx" xlink:href="https://www.geocat.ch:443/geonetwork/srv/eng/thesaurus.download?ref=local._none_.geocat.ch">geonetwork.thesaurus.local._none_.geocat.ch</gmx:Anchor> </gmd:code> </gmd:MD_Identifier> </gmd:identifier> </gmd:CI_Citation> </gmd:thesaurusName> </gmd:MD_Keywords> </gmd:descriptiveKeywords> <gmd:spatialRepresentationType> <gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="paperMap" /> </gmd:spatialRepresentationType> <gmd:language> <gco:CharacterString>ger</gco:CharacterString> </gmd:language> <gmd:characterSet> <gmd:MD_CharacterSetCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8" /> </gmd:characterSet> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory /> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>environment_EnvironmentalProtection</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>economy</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>planningCadastre</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>planningCadastre_Planning</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:extent xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed"> <gmd:EX_Extent> <gmd:description xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>Zug</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">Zug</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">Zug</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">Zug</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">Zug</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">Zug</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:description> <gmd:geographicElement> <gmd:EX_GeographicDescription> <gmd:geographicIdentifier> <gmd:MD_Identifier> <gmd:code xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="gmd:PT_FreeText_PropertyType"> <gco:CharacterString>ZG</gco:CharacterString> <gmd:PT_FreeText> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#EN">ZG</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#DE">ZG</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#FR">ZG</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#IT">ZG</gmd:LocalisedCharacterString> </gmd:textGroup> <gmd:textGroup> <gmd:LocalisedCharacterString locale="#RM">ZG</gmd:LocalisedCharacterString> </gmd:textGroup> </gmd:PT_FreeText> </gmd:code> </gmd:MD_Identifier> </gmd:geographicIdentifier> </gmd:EX_GeographicDescription> </gmd:geographicElement> <gmd:geographicElement> <gmd:EX_BoundingPolygon> <gmd:extentTypeCode> <gco:Boolean>1</gco:Boolean> </gmd:extentTypeCode> <gmd:polygon> <gml:MultiSurface gml:id="N5b6930ec90a846568ac26eaa0aeb0069"> <gml:surfaceMember> <gml:Polygon gml:id="N5b6930ec90a846568ac26eaa0aeb0069.1"> <gml:exterior> <gml:LinearRing> <gml:posList>8.522 47.09 8.493 47.1 8.494 47.114 8.48 47.126 8.467 47.119 8.468 47.119 8.454 47.114 8.449 47.131 8.43 47.123 8.42 47.123 8.415 47.124 8.412 47.141 8.414 47.157 8.412 47.173 8.402 47.177 8.4 47.184 8.405 47.195 8.396 47.22 8.396 47.229 8.408 47.242 8.41 47.248 8.414 47.244 8.417 47.234 8.422 47.223 8.447 47.223 8.448 47.22 8.48 47.209 8.489 47.211 8.498 47.212 8.512 47.216 8.513 47.219 8.529 47.219 8.539 47.223 8.543 47.222 8.574 47.217 8.577 47.219 8.587 47.212 8.595 47.212 8.599 47.202 8.603 47.203 8.607 47.205 8.615 47.199 8.628 47.18 8.624 47.173 8.633 47.172 8.661 47.17 8.661 47.161 8.666 47.16 8.692 47.163 8.696 47.163 8.701 47.151 8.688 47.146 8.684 47.141 8.687 47.136 8.681 47.125 8.649 47.103 8.645 47.096 8.637 47.093 8.612 47.095 8.608 47.092 8.587 47.086 8.564 47.082 8.563 47.093 8.547 47.094 8.522 47.09</gml:posList> </gml:LinearRing> </gml:exterior> </gml:Polygon> </gml:surfaceMember> </gml:MultiSurface> </gmd:polygon> </gmd:EX_BoundingPolygon> </gmd:geographicElement> <gmd:geographicElement> <gmd:EX_GeographicBoundingBox> <gmd:extentTypeCode> <gco:Boolean>1</gco:Boolean> </gmd:extentTypeCode> <!--native coords: 672510.0,215128.0,695748.0,233506.0--> <gmd:westBoundLongitude> <gco:Decimal>8.396</gco:Decimal> </gmd:westBoundLongitude> <gmd:eastBoundLongitude> <gco:Decimal>8.701</gco:Decimal> </gmd:eastBoundLongitude> <gmd:southBoundLatitude> <gco:Decimal>47.082</gco:Decimal> </gmd:southBoundLatitude> <gmd:northBoundLatitude> <gco:Decimal>47.248</gco:Decimal> </gmd:northBoundLatitude> </gmd:EX_GeographicBoundingBox> </gmd:geographicElement> </gmd:EX_Extent> </gmd:extent> </che:CHE_MD_DataIdentification> </gmd:identificationInfo> <gmd:distributionInfo> <gmd:MD_Distribution> <gmd:distributionFormat xmlns:xlink="http://www.w3.org/1999/xlink" xlink:show="embed"> <gmd:MD_Format> <gmd:name> <gco:CharacterString>N/A</gco:CharacterString> </gmd:name> <gmd:version> <gco:CharacterString>N/A</gco:CharacterString> </gmd:version> </gmd:MD_Format> </gmd:distributionFormat> <gmd:transferOptions> <gmd:MD_DigitalTransferOptions> <gmd:onLine> <gmd:CI_OnlineResource> <gmd:linkage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="che:PT_FreeURL_PropertyType"> <che:PT_FreeURL> <che:URLGroup> <che:LocalisedURL locale="#DE">http://www.zugmap.ch/?link=gewaesserschutzkarte</che:LocalisedURL> </che:URLGroup> </che:PT_FreeURL> </gmd:linkage> <gmd:protocol> <gco:CharacterString>WWW:LINK-1.0-http--link</gco:CharacterString> </gmd:protocol> </gmd:CI_OnlineResource> </gmd:onLine> </gmd:MD_DigitalTransferOptions> </gmd:transferOptions> </gmd:MD_Distribution> </gmd:distributionInfo> <geonet:info> <id>788</id> <schema>iso19139.che</schema> <createDate>2009-05-28T12:00:00</createDate> <changeDate>2017-01-24T12:15:29</changeDate> <isTemplate>n</isTemplate> <title /> <source>7ea582d4-9ddf-422e-b28f-29760a4c0147</source> <uuid>3d2981af-d5db-4122-8db6-1ea41ed44b3f</uuid> <isHarvested>n</isHarvested> <popularity>693</popularity> <rating>0</rating> <displayOrder>null</displayOrder> <isPublishedToAll>true</isPublishedToAll> <view>true</view> <notify>true</notify> <download>true</download> <dynamic>true</dynamic> <featured>true</featured> <groupOwner>5</groupOwner> <groupLogoUuid>b3302e3c-b6a7-4b71-aa10-1be70ddf742b</groupLogoUuid> <groupWebsite>http://www.zugis.ch</groupWebsite> <ownername>zug</ownername> <valid_details> <type>xsd</type> <status> 1 <ratio /> </status> </valid_details> <valid_details> <type>schematron-rules-inspire-strict</type> <status> 0 <ratio>2/2</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-aap</type> <status> 1 <ratio>0/0</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-iso</type> <status> 1 <ratio>0/51</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-iso-che</type> <status> 1 <ratio>0/40</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-inspire</type> <status> 0 <ratio>5/10</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-geonetwork</type> <status> 1 <ratio>0/28</ratio> </status> </valid_details> <valid_details> <type>schematron-rules-url-check</type> <status> 1 <ratio>0/11</ratio> </status> </valid_details> <valid>0</valid> <baseUrl>https://www.geocat.ch:443null</baseUrl> <locService>/srv/en</locService> </geonet:info> </che:CHE_MD_Metadata> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/iso_xml_srv.xml�������������������������������������������������������0000664�0000000�0000000�00000101373�13217064120�0021140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<gmd:MD_Metadata xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gml32="http://www.opengis.net/gml/3.2" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmi http://www.ngdc.noaa.gov/metadata/published/xsd/schema.xsd"> <gmd:fileIdentifier> <gco:CharacterString>31dc90a6-1945-489c-b31d-957ab36f8315</gco:CharacterString> </gmd:fileIdentifier> <gmd:language> <gmd:LanguageCode codeList="http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#gmd:LanguageCode" codeListValue="eng">eng</gmd:LanguageCode> </gmd:language> <gmd:characterSet> <gmd:MD_CharacterSetCode codeList="http://www.ngdc.noaa.gov/metadata/published/xsd/schema/resources/Codelist/gmxCodelists.xml#gmd:MD_CharacterSetCode" codeListValue="UTF8">UTF8</gmd:MD_CharacterSetCode> </gmd:characterSet> <gmd:hierarchyLevel> <gmd:MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_ScopeCode" codeListValue="dataset" /> </gmd:hierarchyLevel> <gmd:hierarchyLevel> <gmd:MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_ScopeCode" codeListValue="service" /> </gmd:hierarchyLevel> <gmd:contact> <gmd:CI_ResponsibleParty> <gmd:individualName> <gco:CharacterString>Christopher Daley</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Oregon State University</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress> <gco:CharacterString>daley@nacse.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="pointOfContact" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:contact> <gmd:dateStamp> <gco:DateTime>2014-11-10T08:25:06</gco:DateTime> </gmd:dateStamp> <gmd:metadataStandardName> <gco:CharacterString>ISO 19115-2 Geographic Information - Metadata Part 2 Extensions for imagery and gridded data</gco:CharacterString> </gmd:metadataStandardName> <gmd:metadataStandardVersion> <gco:CharacterString>ISO 19115-2:2009(E)</gco:CharacterString> </gmd:metadataStandardVersion> <gmd:identificationInfo> <gmd:MD_DataIdentification id="DataIdentification"> <gmd:citation> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States.</gco:CharacterString> </gmd:title> <gmd:date gco:nilReason="missing" /> <gmd:identifier> <gmd:MD_Identifier> <gmd:authority> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>cida.usgs.gov</gco:CharacterString> </gmd:title> <gmd:date gco:nilReason="inapplicable" /> </gmd:CI_Citation> </gmd:authority> <gmd:code> <gco:CharacterString>cida.usgs.gov/prism</gco:CharacterString> </gmd:code> </gmd:MD_Identifier> </gmd:identifier> <gmd:citedResponsibleParty> <gmd:CI_ResponsibleParty> <gmd:individualName> <gco:CharacterString>Christopher Daley</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Oregon State University</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress> <gco:CharacterString>daley@nacse.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="originator" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:citedResponsibleParty> </gmd:CI_Citation> </gmd:citation> <gmd:abstract> <gco:CharacterString>This dataset was created using the PRISM (Parameter-elevation Regressions on Independent Slopes Model) climate mapping system, developed by Dr. Christopher Daly, PRISM Climate Group director. PRISM is a unique knowledge-based system that uses point measurements of precipitation, temperature, and other climatic factors to produce continuous, digital grid estimates of monthly, yearly, and event-based climatic parameters. Continuously updated, this unique analytical tool incorporates point data, a digital elevation model, and expert knowledge of complex climatic extremes, including rain shadows, coastal effects, and temperature inversions. PRISM data sets are recognized world-wide as the highest-quality spatial climate data sets currently available. PRISM is the USDA's official climatological data.</gco:CharacterString> </gmd:abstract> <gmd:credit> <gco:CharacterString>PRISM Climate Group, Oregon State University, http://prism.oregonstate.edu, Accessed Jan 2012.</gco:CharacterString> </gmd:credit> <gmd:status> <gmd:MD_ProgressCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_ProgressCode" codeListValue="onGoing" /> </gmd:status> <gmd:pointOfContact> <gmd:CI_ResponsibleParty> <gmd:individualName> <gco:CharacterString>Christopher Daley</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Oregon State University</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress> <gco:CharacterString>daley@nacse.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="pointOfContact" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:pointOfContact> <gmd:descriptiveKeywords> <gmd:MD_Keywords> <gmd:keyword> <gco:CharacterString>Atmospheric Temperature</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>Air Temperature Atmosphere</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>Precipitation</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>Rain</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>Maximum Daily Temperature</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>Minimum Daily Temperature</gco:CharacterString> </gmd:keyword> <gmd:type> <gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode" codeListValue="theme" /> </gmd:type> </gmd:MD_Keywords> </gmd:descriptiveKeywords> <gmd:descriptiveKeywords> <gmd:MD_Keywords> <gmd:keyword> <gco:CharacterString>gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>gov.usgs.cida.gdp.wps.algorithm.FeatureGridStatisticsAlgorithm</gco:CharacterString> </gmd:keyword> <gmd:keyword> <gco:CharacterString>gov.usgs.cida.gdp.wps.algorithm.FeatureCoverageOPeNDAPIntersectionAlgorithm</gco:CharacterString> </gmd:keyword> <gmd:type> <gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode" codeListValue="" /> </gmd:type> </gmd:MD_Keywords> </gmd:descriptiveKeywords> <gmd:descriptiveKeywords> <gmd:MD_Keywords> <gmd:keyword> <gco:CharacterString>PRISM Climate Group</gco:CharacterString> </gmd:keyword> <gmd:type> <gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode" codeListValue="" /> </gmd:type> <gmd:thesaurusName gco:nilReason="unknown" /> </gmd:MD_Keywords> </gmd:descriptiveKeywords> <gmd:resourceConstraints> <gmd:MD_LegalConstraints> <gmd:useLimitation> <gco:CharacterString>Freely Available: The PRISM Climate Group, Oregon State University retains rights to ownership of the data and information.</gco:CharacterString> </gmd:useLimitation> </gmd:MD_LegalConstraints> </gmd:resourceConstraints> <gmd:resourceConstraints> <gmd:MD_Constraints> <gmd:useLimitation> <gco:CharacterString>None</gco:CharacterString> </gmd:useLimitation> </gmd:MD_Constraints> </gmd:resourceConstraints> <gmd:aggregationInfo> <gmd:MD_AggregateInformation> <gmd:aggregateDataSetIdentifier> <gmd:MD_Identifier> <gmd:authority> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>Unidata Common Data Model</gco:CharacterString> </gmd:title> <gmd:date gco:nilReason="inapplicable" /> </gmd:CI_Citation> </gmd:authority> <gmd:code> <gco:CharacterString>Grid</gco:CharacterString> </gmd:code> </gmd:MD_Identifier> </gmd:aggregateDataSetIdentifier> <gmd:associationType> <gmd:DS_AssociationTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#DS_AssociationTypeCode" codeListValue="largerWorkCitation" /> </gmd:associationType> <gmd:initiativeType> <gmd:DS_InitiativeTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#DS_InitiativeTypeCode" codeListValue="project" /> </gmd:initiativeType> </gmd:MD_AggregateInformation> </gmd:aggregationInfo> <gmd:spatialRepresentationType> <gmd:MD_SpatialRepresentationTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_SpatialRepresentationTypeCode" codeListValue="grid" /> </gmd:spatialRepresentationType> <gmd:language> <gco:CharacterString>eng</gco:CharacterString> </gmd:language> <gmd:topicCategory> <gmd:MD_TopicCategoryCode>climatologyMeteorologyAtmosphere</gmd:MD_TopicCategoryCode> </gmd:topicCategory> <gmd:extent> <gmd:EX_Extent id="boundingExtent0"> <gmd:geographicElement> <gmd:EX_GeographicBoundingBox id="boundingGeographicBoundingBox0"> <gmd:extentTypeCode> <gco:Boolean>1</gco:Boolean> </gmd:extentTypeCode> <gmd:westBoundLongitude> <gco:Decimal>-125.02083587646484</gco:Decimal> </gmd:westBoundLongitude> <gmd:eastBoundLongitude> <gco:Decimal>-66.52082824707031</gco:Decimal> </gmd:eastBoundLongitude> <gmd:southBoundLatitude> <gco:Decimal>24.10416603088379</gco:Decimal> </gmd:southBoundLatitude> <gmd:northBoundLatitude> <gco:Decimal>49.937503814697266</gco:Decimal> </gmd:northBoundLatitude> </gmd:EX_GeographicBoundingBox> </gmd:geographicElement> <gmd:temporalElement> <gmd:EX_TemporalExtent id="boundingTemporalExtent0"> <gmd:extent> <gml32:TimePeriod gml32:id="d27"> <gml32:description>seconds</gml32:description> <gml32:beginPosition>1895-01-01T00:00:00Z</gml32:beginPosition> <gml32:endPosition>2011-11-01T00:00:00Z</gml32:endPosition> </gml32:TimePeriod> </gmd:extent> </gmd:EX_TemporalExtent> </gmd:temporalElement> </gmd:EX_Extent> </gmd:extent> </gmd:MD_DataIdentification> </gmd:identificationInfo> <gmd:identificationInfo> <srv:SV_ServiceIdentification id="OPeNDAP0"> <gmd:citation> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States. February 2013 Snapshot</gco:CharacterString> </gmd:title> <gmd:date gco:nilReason="missing" /> <gmd:citedResponsibleParty> <gmd:CI_ResponsibleParty> <gmd:individualName> <gco:CharacterString>Christopher Daley</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Oregon State University</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress> <gco:CharacterString>daley@nacse.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="originator" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:citedResponsibleParty> </gmd:CI_Citation> </gmd:citation> <gmd:abstract> <gco:CharacterString>This dataset was created using the PRISM (Parameter-elevation Regressions on Independent Slopes Model) climate mapping system, developed by Dr. Christopher Daly, PRISM Climate Group director. PRISM is a unique knowledge-based system that uses point measurements of precipitation, temperature, and other climatic factors to produce continuous, digital grid estimates of monthly, yearly, and event-based climatic parameters. Continuously updated, this unique analytical tool incorporates point data, a digital elevation model, and expert knowledge of complex climatic extremes, including rain shadows, coastal effects, and temperature inversions. PRISM data sets are recognized world-wide as the highest-quality spatial climate data sets currently available. PRISM is the USDA's official climatological data. This dataset is commonly used as the basis for downscaled climate projections.</gco:CharacterString> </gmd:abstract> <srv:serviceType> <gco:LocalName>THREDDS OPeNDAP</gco:LocalName> </srv:serviceType> <srv:extent> <gmd:EX_Extent> <gmd:geographicElement> <gmd:EX_GeographicBoundingBox> <gmd:extentTypeCode> <gco:Boolean>1</gco:Boolean> </gmd:extentTypeCode> <gmd:westBoundLongitude> <gco:Decimal>-125.02083587646484</gco:Decimal> </gmd:westBoundLongitude> <gmd:eastBoundLongitude> <gco:Decimal>-66.52082824707031</gco:Decimal> </gmd:eastBoundLongitude> <gmd:southBoundLatitude> <gco:Decimal>24.10416603088379</gco:Decimal> </gmd:southBoundLatitude> <gmd:northBoundLatitude> <gco:Decimal>49.937503814697266</gco:Decimal> </gmd:northBoundLatitude> </gmd:EX_GeographicBoundingBox> </gmd:geographicElement> <gmd:temporalElement> <gmd:EX_TemporalExtent> <gmd:extent> <gml32:TimePeriod gml32:id="d27e65"> <gml32:beginPosition>1895-01-01T00:00:00Z</gml32:beginPosition> <gml32:endPosition>2011-11-01T00:00:00Z</gml32:endPosition> </gml32:TimePeriod> </gmd:extent> </gmd:EX_TemporalExtent> </gmd:temporalElement> </gmd:EX_Extent> </srv:extent> <srv:couplingType> <srv:SV_CouplingType codeList="http://www.isotc211.org/2005/iso19119/resources/Codelist/gmxCodelists.xml#SV_CouplingType" codeListValue="tight" /> </srv:couplingType> <srv:containsOperations> <srv:SV_OperationMetadata> <srv:operationName> <gco:CharacterString>OPeNDAP Client Access</gco:CharacterString> </srv:operationName> <srv:DCP gco:nilReason="unknown" /> <srv:connectPoint> <gmd:CI_OnlineResource> <gmd:linkage> <gmd:URL>http://cida.usgs.gov/thredds/dodsC/prism</gmd:URL> </gmd:linkage> <gmd:name> <gco:CharacterString>OPeNDAP</gco:CharacterString> </gmd:name> <gmd:description> <gco:CharacterString>THREDDS OPeNDAP</gco:CharacterString> </gmd:description> <gmd:function> <gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_OnLineFunctionCode" codeListValue="download" /> </gmd:function> </gmd:CI_OnlineResource> </srv:connectPoint> </srv:SV_OperationMetadata> </srv:containsOperations> <srv:operatesOn xlink:href="#DataIdentification" /> </srv:SV_ServiceIdentification> </gmd:identificationInfo> <gmd:identificationInfo> <srv:SV_ServiceIdentification id="OPeNDAP1"> <gmd:citation> <gmd:CI_Citation> <gmd:title> <gco:CharacterString>Parameter-elevation Regressions on Independent Slopes Model Monthly Climate Data for the Continental United States. October 2014 Snapshot</gco:CharacterString> </gmd:title> <gmd:date gco:nilReason="missing" /> <gmd:citedResponsibleParty> <gmd:CI_ResponsibleParty> <gmd:individualName> <gco:CharacterString>Christopher Daley</gco:CharacterString> </gmd:individualName> <gmd:organisationName> <gco:CharacterString>Oregon State University</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress> <gco:CharacterString>daley@nacse.org</gco:CharacterString> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="originator" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:citedResponsibleParty> </gmd:CI_Citation> </gmd:citation> <gmd:abstract> <gco:CharacterString>This dataset was created using the PRISM (Parameter-elevation Regressions on Independent Slopes Model) climate mapping system, developed by Dr. Christopher Daly, PRISM Climate Group director. PRISM is a unique knowledge-based system that uses point measurements of precipitation, temperature, and other climatic factors to produce continuous, digital grid estimates of monthly, yearly, and event-based climatic parameters. Continuously updated, this unique analytical tool incorporates point data, a digital elevation model, and expert knowledge of complex climatic extremes, including rain shadows, coastal effects, and temperature inversions. PRISM data sets are recognized world-wide as the highest-quality spatial climate data sets currently available. PRISM is the USDA's official climatological data.</gco:CharacterString> </gmd:abstract> <srv:serviceType> <gco:LocalName>THREDDS OPeNDAP</gco:LocalName> </srv:serviceType> <srv:extent> <gmd:EX_Extent> <gmd:geographicElement> <gmd:EX_GeographicBoundingBox> <gmd:extentTypeCode> <gco:Boolean>1</gco:Boolean> </gmd:extentTypeCode> <gmd:westBoundLongitude> <gco:Decimal>-125.02083587646484</gco:Decimal> </gmd:westBoundLongitude> <gmd:eastBoundLongitude> <gco:Decimal>-66.52083587646484</gco:Decimal> </gmd:eastBoundLongitude> <gmd:southBoundLatitude> <gco:Decimal>24.10416603088379</gco:Decimal> </gmd:southBoundLatitude> <gmd:northBoundLatitude> <gco:Decimal>49.9375</gco:Decimal> </gmd:northBoundLatitude> </gmd:EX_GeographicBoundingBox> </gmd:geographicElement> <gmd:temporalElement> <gmd:EX_TemporalExtent> <gmd:extent> <gml32:TimePeriod gml32:id="d1e67"> <gml32:beginPosition>1895-01-01T00:00:00Z</gml32:beginPosition> <gml32:endPosition>2013-12-01T00:00:00Z</gml32:endPosition> </gml32:TimePeriod> </gmd:extent> </gmd:EX_TemporalExtent> </gmd:temporalElement> </gmd:EX_Extent> </srv:extent> <srv:couplingType> <srv:SV_CouplingType codeList="http://www.isotc211.org/2005/iso19119/resources/Codelist/gmxCodelists.xml#SV_CouplingType" codeListValue="tight" /> </srv:couplingType> <srv:containsOperations> <srv:SV_OperationMetadata> <srv:operationName> <gco:CharacterString>OPeNDAP Client Access</gco:CharacterString> </srv:operationName> <srv:DCP gco:nilReason="unknown" /> <srv:connectPoint> <gmd:CI_OnlineResource> <gmd:linkage> <gmd:URL>http://cida.usgs.gov/thredds/dodsC/prism_v2</gmd:URL> </gmd:linkage> <gmd:name> <gco:CharacterString>OPeNDAP</gco:CharacterString> </gmd:name> <gmd:description> <gco:CharacterString>THREDDS OPeNDAP</gco:CharacterString> </gmd:description> <gmd:function> <gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_OnLineFunctionCode" codeListValue="download" /> </gmd:function> </gmd:CI_OnlineResource> </srv:connectPoint> </srv:SV_OperationMetadata> </srv:containsOperations> <srv:operatesOn xlink:href="#DataIdentification" /> </srv:SV_ServiceIdentification> </gmd:identificationInfo> <gmd:contentInfo> <gmd:MD_CoverageDescription> <gmd:attributeDescription gco:nilReason="unknown" /> <gmd:contentType> <gmd:MD_CoverageContentTypeCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#MD_CoverageContentTypeCode" codeListValue="physicalMeasurement" /> </gmd:contentType> <gmd:dimension> <gmd:MD_Band> <gmd:sequenceIdentifier> <gco:MemberName> <gco:aName> <gco:CharacterString>ppt</gco:CharacterString> </gco:aName> <gco:attributeType> <gco:TypeName> <gco:aName> <gco:CharacterString>double</gco:CharacterString> </gco:aName> </gco:TypeName> </gco:attributeType> </gco:MemberName> </gmd:sequenceIdentifier> <gmd:descriptor> <gco:CharacterString>mean monthly precipitation</gco:CharacterString> </gmd:descriptor> <gmd:units xlink:href="http://someUnitsDictionary.xml#mm/month" /> </gmd:MD_Band> </gmd:dimension> <gmd:dimension> <gmd:MD_Band> <gmd:sequenceIdentifier> <gco:MemberName> <gco:aName> <gco:CharacterString>tmx</gco:CharacterString> </gco:aName> <gco:attributeType> <gco:TypeName> <gco:aName> <gco:CharacterString>double</gco:CharacterString> </gco:aName> </gco:TypeName> </gco:attributeType> </gco:MemberName> </gmd:sequenceIdentifier> <gmd:descriptor> <gco:CharacterString>maximum monthly temperature</gco:CharacterString> </gmd:descriptor> <gmd:units xlink:href="http://someUnitsDictionary.xml#degC" /> </gmd:MD_Band> </gmd:dimension> <gmd:dimension> <gmd:MD_Band> <gmd:sequenceIdentifier> <gco:MemberName> <gco:aName> <gco:CharacterString>tmn</gco:CharacterString> </gco:aName> <gco:attributeType> <gco:TypeName> <gco:aName> <gco:CharacterString>double</gco:CharacterString> </gco:aName> </gco:TypeName> </gco:attributeType> </gco:MemberName> </gmd:sequenceIdentifier> <gmd:descriptor> <gco:CharacterString>minimum monthly temperature</gco:CharacterString> </gmd:descriptor> <gmd:units xlink:href="http://someUnitsDictionary.xml#degC" /> </gmd:MD_Band> </gmd:dimension> </gmd:MD_CoverageDescription> </gmd:contentInfo> <gmd:distributionInfo> <gmd:MD_Distribution> <gmd:distributor> <gmd:MD_Distributor> <gmd:distributorContact> <gmd:CI_ResponsibleParty> <gmd:individualName gco:nilReason="missing" /> <gmd:organisationName> <gco:CharacterString>PRISM Climate Group</gco:CharacterString> </gmd:organisationName> <gmd:contactInfo> <gmd:CI_Contact> <gmd:address> <gmd:CI_Address> <gmd:electronicMailAddress gco:nilReason="missing"> <gco:CharacterString /> </gmd:electronicMailAddress> </gmd:CI_Address> </gmd:address> <gmd:onlineResource> <gmd:CI_OnlineResource> <gmd:linkage> <gmd:URL>http://prism.oregonstate.edu/</gmd:URL> </gmd:linkage> <gmd:protocol> <gco:CharacterString>http</gco:CharacterString> </gmd:protocol> <gmd:applicationProfile> <gco:CharacterString>web browser</gco:CharacterString> </gmd:applicationProfile> <gmd:name> <gco:CharacterString>URL for the data publisher</gco:CharacterString> </gmd:name> <gmd:description> <gco:CharacterString>This URL provides contact information for the publisher of this dataset</gco:CharacterString> </gmd:description> <gmd:function> <gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_OnLineFunctionCode" codeListValue="information" /> </gmd:function> </gmd:CI_OnlineResource> </gmd:onlineResource> </gmd:CI_Contact> </gmd:contactInfo> <gmd:role> <gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_RoleCode" codeListValue="publisher" /> </gmd:role> </gmd:CI_ResponsibleParty> </gmd:distributorContact> <gmd:distributorFormat> <gmd:MD_Format> <gmd:name> <gco:CharacterString>OPeNDAP</gco:CharacterString> </gmd:name> <gmd:version gco:nilReason="unknown" /> </gmd:MD_Format> </gmd:distributorFormat> <gmd:distributorTransferOptions> <gmd:MD_DigitalTransferOptions> <gmd:onLine> <gmd:CI_OnlineResource> <gmd:linkage> <gmd:URL>http://cida.usgs.gov/thredds/</gmd:URL> </gmd:linkage> <gmd:name> <gco:CharacterString>File Information</gco:CharacterString> </gmd:name> <gmd:description> <gco:CharacterString>This URL provides a standard OPeNDAP html interface for selecting data from this dataset.</gco:CharacterString> </gmd:description> <gmd:function> <gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/codeList.xml#CI_OnLineFunctionCode" codeListValue="download" /> </gmd:function> </gmd:CI_OnlineResource> </gmd:onLine> </gmd:MD_DigitalTransferOptions> </gmd:distributorTransferOptions> </gmd:MD_Distributor> </gmd:distributor> </gmd:MD_Distribution> </gmd:distributionInfo> <gmd:metadataMaintenance> <gmd:MD_MaintenanceInformation> <gmd:maintenanceAndUpdateFrequency gco:nilReason="unknown" /> <gmd:maintenanceNote> <gco:CharacterString>This record was translated from NcML using UnidataDD2MI.xsl Version 2.21</gco:CharacterString> </gmd:maintenanceNote> </gmd:MD_MaintenanceInformation> </gmd:metadataMaintenance> </gmd:MD_Metadata> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/mapserver-wfs-cap.xml�������������������������������������������������0000664�0000000�0000000�00000102473�13217064120�0022140�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" ?> <WFS_Capabilities version="1.0.0" updateSequence="0" xmlns="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.0.0/WFS-capabilities.xsd"> <!-- MapServer version 5.2.1 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG OUTPUT=WBMP OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=FREETYPE SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=GEOS INPUT=EPPL7 INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>MapServer WFS</Name> <Title>Atlas of the Cryosphere: Southern Hemisphere</Title> <Abstract>The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate map servers: one for the Northern Hemisphere and one for the Southern Hemisphere. In addition to providing map images and source data through Open Geospatial Consortium, Inc. (OGC) protocols (WMS, WFS, and WCS), a dynamic web interface for exploring these data is also available at http://nsidc.org/data/atlas. If you have questions, comments or suggestions, please contact NSIDC User Services at +1.303.492.6199 or nsidc@nsidc.org. The development of this map server application was supported by NASA&#39;s Earth Observing System (EOS) Program under contract NAS5-03099 and was developed using MapServer, an Open Source development environment for building spatially-enabled internet applications. To cite the Atlas of the Cryosphere: Maurer, J. 2007. Atlas of the Cryosphere. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/atlas/.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Fronts Glacial Landforms/Processes Glaciers Ice Sheets Oceans Ocean Circulation Ocean Currents Polar Southern Hemisphere </Keywords> <OnlineResource>http://nsidc.org</OnlineResource> <Fees>none</Fees> <AccessConstraints>none</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <DCPType> <HTTP> <Get onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> <DCPType> <HTTP> <Post onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> </GetCapabilities> <DescribeFeatureType> <SchemaDescriptionLanguage> <XMLSCHEMA/> </SchemaDescriptionLanguage> <DCPType> <HTTP> <Get onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> <DCPType> <HTTP> <Post onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> </DescribeFeatureType> <GetFeature> <ResultFormat> <GML2/> </ResultFormat> <DCPType> <HTTP> <Get onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> <DCPType> <HTTP> <Post onlineResource="http://nsidc.org/cgi-bin/atlas_south?" /> </HTTP> </DCPType> </GetFeature> </Request> </Capability> <FeatureTypeList> <Operations> <Query/> </Operations> <FeatureType> <Name>antarctic_ice_shelves_fill</Name> <Title>Antarctic ice shelves</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Ice Shelves Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.53364e+06" miny="-2.18804e+06" maxx="2.78867e+06" maxy="2.29553e+06" /> </FeatureType> <FeatureType> <Name>antarctic_continent</Name> <Title>Antarctic continent</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Ice Shelves Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.53069e+06" miny="-2.18277e+06" maxx="2.63754e+06" maxy="2.20462e+06" /> </FeatureType> <FeatureType> <Name>antarctic_islands</Name> <Title>Antarctic islands</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Ice Shelves Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.69646e+06" miny="-2.54681e+06" maxx="2.73223e+06" maxy="2.33751e+06" /> </FeatureType> <FeatureType> <Name>land_excluding_antarctica</Name> <Title>land (excluding Antarctica)</Title> <Abstract>Center for International Earth Science Information Network (CIESIN), Columbia University; and Centro Internacional de Agricultura Tropical (CIAT). 2005. Gridded Population of the World Version 3 (GPWv3): Coastlines. Palisades, NY, USA: Socioeconomic Data and Applications Center (SEDAC), Columbia University. Available at http://sedac.ciesin.columbia.edu/gpw. 19 January 2007. Background: Coastlines derived from the Gridded Population of the World (GPW) land area grid at 2.5 arc-minute resolution. Permanent ice and all but large lakes have been merged with neighbouring polygons to make a layer more appropriate for cartographic visualization of the data. Does not include Antarctica.</Abstract> <Keywords> Coastlines Global Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-4.16763e+09" miny="-3.13035e+09" maxx="1.61503e+09" maxy="6.57174e+08" /> </FeatureType> <FeatureType> <Name>antarctica_elevation_contours</Name> <Title>Antarctic suface elevation contours</Title> <Abstract>Liu, H., K. Jezek, B. Li, and Z. Zhao. 2001. Radarsat Antarctic Mapping Project digital elevation model version 2. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0082.html. 01 November 2006. Background: The high-resolution Radarsat Antarctic Mapping Project (RAMP) Digital Elevation Model (DEM) combines topographic data from a variety of sources to provide consistent coverage of all of Antarctica. Version 2 improves upon the original version by incorporating new topographic data, error corrections, extended coverage, and other modifications. The DEM incorporates topographic data from satellite radar altimetry, airborne radar surveys, the recently-updated Antarctic Digital Database (version 2), and large-scale topographic maps from the U.S. Geological Survey (USGS) and the Australian Antarctic Division. Data were collected between the 1940s and present, with most collected during the 1980s and 1990s. Although the RAMP DEM was created to aid in processing RAMP radar data, it does not utilize any RAMP radar data. The Atlas of the Cryosphere uses the RAMP DEM gridded at 1 km.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Ice Sheets Ice Sheet Elevation Polar </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.65479e+06" miny="-2.07939e+06" maxx="2.55084e+06" maxy="2.04649e+06" /> <MetadataURL type="FGDC" format="text/html">http://nsidc.org/cgi-bin/get_metadata.pl?id=nsidc-0082&amp;format=fgdc</MetadataURL> </FeatureType> <FeatureType> <Name>glaciers</Name> <Title>glaciers</Title> <Abstract>National Imagery and Mapping Agency (NIMA). 1992. VMAP_1V10 - Vector Map Level 0 (Digital Chart of the World). Bethesda, MD, USA: National Imagery and Mapping Agency (NIMA). Available at http://www.maproom.psu.edu/dcw/ and http://webgis.wr.usgs.gov/globalgis/. 01 September 2000. Background: The primary source for this database is the U.S. Defense Mapping Agency&#39;s (DMA) Operational Navigation Chart (ONC) 1:1,000,000 scale paper map series produced by the United States, Australia, Canada, and the United Kingdom. These charts were designed to meet the needs of pilots and air crews in medium-and low-altitude en route navigation and to support military operational planning, intelligence briefings, and other needs. Level 0 (low resolution) coverage is global, and is entirely in the public domain. The National Imagery and Mapping Agency (NIMA) is a federal agency of the United States Government and is now known as the National Geospatial-Intelligence Agency (NGA).</Abstract> <Keywords> Antarctica Cryosphere Earth Science Global Glaciers Polar Southern Hemisphere </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-1.18874e+10" miny="-8.50889e+08" maxx="5.57154e+08" maxy="2.62891e+08" /> </FeatureType> <FeatureType> <Name>glacier_outlines</Name> <Title>glacier outlines</Title> <Abstract>Armstrong, R., B. Raup, S.J.S. Khalsa, R. Barry, J. Kargel, C. Helm, and H. Kiefer. 2005. GLIMS glacier database. Boulder, CO, USA: National Snow and Ice Data Center. Available at http://nsidc.org/data/nsidc-0272.html. 24 August 2006. Background: Global Land Ice Measurements from Space (GLIMS) is an international project with the goal of surveying a majority of the world&#39;s estimated 160,000 glaciers. GLIMS uses data collected primarily by the Advanced Spaceborne Thermal Emission and Reflection Radiometer (ASTER) instrument aboard the Terra satellite and the LANDSAT Enhanced Thematic Mapper Plus (ETM+), along with historical observations. The GLIMS project is currently creating a unique glacier inventory, storing information about the extent and rates of change of all the world&#39;s glacial resources. GLIMS consists of many institutions called Regional Centers, who produce glacier analyses for their particular region. The GLIMS Glacier Database provides students, educators, scientists, and the public with reliable glacier data from these analyses. New glacier data are continually being added to the database.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Global Glaciers Polar Southern Hemisphere </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-1.30201e+09" miny="-1.37912e+09" maxx="3.12602e+08" maxy="1.00412e+09" /> <MetadataURL type="FGDC" format="text/html">http://nsidc.org/cgi-bin/get_metadata.pl?id=nsidc-0272&amp;format=fgdc</MetadataURL> </FeatureType> <FeatureType> <Name>coastlines_excluding_antarctica</Name> <Title>coastlines (excluding Antarctica)</Title> <Abstract>Center for International Earth Science Information Network (CIESIN), Columbia University; and Centro Internacional de Agricultura Tropical (CIAT). 2005. Gridded Population of the World Version 3 (GPWv3): Coastlines. Palisades, NY, USA: Socioeconomic Data and Applications Center (SEDAC), Columbia University. Available at http://sedac.ciesin.columbia.edu/gpw. 19 January 2007. Background: Coastlines derived from the Gridded Population of the World (GPW) land area grid at 2.5 arc-minute resolution. Permanent ice and all but large lakes have been merged with neighbouring polygons to make a layer more appropriate for cartographic visualization of the data. Does not include Antarctica.</Abstract> <Keywords> Coastlines Global Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-4.16763e+09" miny="-3.13035e+09" maxx="1.61503e+09" maxy="6.57174e+08" /> </FeatureType> <FeatureType> <Name>antarctic_ice_shelves_outline</Name> <Title>Antarctic coastline (includes ice shelves)</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.53364e+06" miny="-2.18804e+06" maxx="2.78867e+06" maxy="2.29553e+06" /> </FeatureType> <FeatureType> <Name>antarctic_coastline</Name> <Title>Antarctic grounding line (excludes ice shelves)</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.53069e+06" miny="-2.18277e+06" maxx="2.63754e+06" maxy="2.20462e+06" /> </FeatureType> <FeatureType> <Name>antarctic_islands_coastlines</Name> <Title>Antarctic island coastlines</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.69646e+06" miny="-2.54681e+06" maxx="2.73223e+06" maxy="2.33751e+06" /> </FeatureType> <FeatureType> <Name>country_borders_excluding_antarctica</Name> <Title>countries (excluding Antarctica)</Title> <Abstract>Center for International Earth Science Information Network (CIESIN), Columbia University; and Centro Internacional de Agricultura Tropical (CIAT). 2005. Gridded Population of the World Version 3 (GPWv3): National Boundaries. Palisades, NY, USA: Socioeconomic Data and Applications Center (SEDAC), Columbia University. Available at http://sedac.ciesin.columbia.edu/gpw. 19 January 2007. Background: National boundaries derived from the Gridded Population of the World (GPW) country-level land area grids at 2.5 arc-minute resolution. Permanent ice and all but large lakes have been merged with neighbouring polygons to make a layer more appropriate for cartographic visualization of the data. Does not include Antarctica.</Abstract> <Keywords> Boundaries Global Political Divisions </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-4.16763e+09" miny="-3.13035e+09" maxx="1.61503e+09" maxy="6.57174e+08" /> </FeatureType> <FeatureType> <Name>antarctica_country_border</Name> <Title>Antarctica border</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.53069e+06" miny="-2.18277e+06" maxx="2.63754e+06" maxy="2.20462e+06" /> </FeatureType> <FeatureType> <Name>antarctica_islands_coastlines</Name> <Title>Antarctic island coastlines</Title> <Abstract>Bohlander, J. and T. Scambos. 2007. Antarctic coastlines and grounding line derived from MODIS Mosaic of Antarctica (MOA). Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 24 April 2008. Background: These outlines were hand-digitized from the Moderate-resolution Imaging Spectroradiometer (MODIS) mosaic of Antarctica (MOA) image map produced and distributed by the National Snow and Ice Data Center (NSIDC) at: http://nsidc.org/data/nsidc-0280.html. The coastline includes the ice shelves surrounding Antarctica while the grounding line excludes them. Coastlines for islands surrounding Antarctica are provided separately from the rest of Antarctica&#39;s grounding line.</Abstract> <Keywords> Antarctica Coastlines Cryosphere Ice Sheets Polar Shorelines </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.69646e+06" miny="-2.54681e+06" maxx="2.73223e+06" maxy="2.33751e+06" /> </FeatureType> <FeatureType> <Name>antarctic_polar_front</Name> <Title>Antarctic Polar Front</Title> <Abstract>Orsi, A. and Ryan, U. 2001. Locations of the various fronts in the Southern Ocean. Kingston, Tasmania, Australia: Australian Antarctic Data Centre. Digital media. Available at http://aadc-maps.aad.gov.au/aadc/metadata/metadata_redirect.cfm?md=AMD/AU/southern_ocean_fronts. 28 September 2006. Background: Hydrographic observations were used in this study of the Southern Ocean to improve our knowledge of large-scale aspects of the Antarctic Circumpolar Current (ACC). The Antarctic Polar Front, also known as the Antarctic Convergence, is the southern front of the Antarctic Circumpolar Current that separates the Antarctic Zone in the south from the Polar Frontal Zone in the north. The Polar Front is taken by many to delineate the actual northern boundary of the Antarctic Zone. It is characterized by sea surface temperatures near 5-6 deg C and a salinity minimum of 33.8-34.0 psu produced by high rainfall.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Fronts Oceans Ocean Circulation Ocean Currents Polar Southern Ocean </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-8.1732e+06" miny="-6.36216e+06" maxx="6.42829e+06" maxy="7.20843e+06" /> </FeatureType> <FeatureType> <Name>international_date_line</Name> <Title>International Date Line</Title> <Abstract>National Geographic Society. 1992. National Geographic Atlas of the World, Revised Sixth Edition. Washington, D.C. USA: National Geographic Society. Compiled by J. Maurer. 2007. Boulder, Colorado USA: National Snow and Ice Data Center. Digital Media. Background: The International Date Line (IDL), also known as just the Date Line, is an imaginary line on the surface of the Earth opposite the Prime Meridian which offsets the date as one travels east or west across it. Roughly along 180 deg longitude, with diversions to pass around some territories and island groups, it corresponds to the time zone boundary separating +12 and -12 hours GMT (UT1). Crossing the IDL travelling east results in a day or 24 hours being subtracted, and crossing west results in a day being added.</Abstract> <Keywords> Boundaries Date Line International Date Line </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.6045e+06" miny="-3.02286e+07" maxx="1.67564e-08" maxy="8.57857e-10" /> </FeatureType> <FeatureType> <Name>antarctic_megadunes</Name> <Title>Antarctic megadunes</Title> <Abstract>Bohlander, J. and T. Scambos. 2005. Outlines of Antarctic megadunes regions. Boulder, CO, USA: National Snow and Ice Data Center. Background: Unlike snow dunes that are piles of drifted snow, Antarctic megadunes are long, undulating waves in the surface of the ice sheet that are 2 to 4 meters (6.5 to 13 feet) high and 2 to 5 kilometers (1 to 3 miles) apart. They are slightly rounded at their crests and are so subtle that a person on the ground cannot see the pattern. Regions of megadunes on the Antarctic ice sheet have been identified and outlined using satellite remote sensing imagery.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Glacial Landforms/Processes Ice Sheets Megadunes Polar </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-362700" miny="-1.38342e+06" maxx="2.3493e+06" maxy="1.31808e+06" /> </FeatureType> <FeatureType> <Name>antarctic_research_stations</Name> <Title>Antarctic permanent research stations</Title> <Abstract>Wikipedia contributors. 24 January 2007. List of research stations in Antarctica. Wikipedia, The Free Encyclopedia. Available at http://en.wikipedia.org/wiki/List_of_research_stations_in_Antarctica. 24 January 2007. Background: A number of governments maintain permanent research stations throughout Antarctica. Many of the stations are staffed around the year. A total of 30 countries (as of October 2006), all signatory to the Antarctic Treaty, operate seasonal (summer) and year-round research stations on the continent and in its surrounding oceans. The population of persons doing and supporting science on the continent and its nearby islands varies from approximately 4,000 persons during the summer season to 1,000 persons during winter.</Abstract> <Keywords> Antarctica Cryosphere Earth Science Polar Research Stations </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-2.67777e+06" miny="-2.00692e+06" maxx="2.63868e+06" maxy="2.33423e+06" /> </FeatureType> <FeatureType> <Name>antarctic_ice_cores</Name> <Title>Antarctic ice core locations</Title> <Abstract>Maurer, J. compiler. 2009. Deep ice core locations. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Accessed 03 May 2009. Background: Labels the locations of several deep ice cores from the Antarctic ice sheet, including: the European Project for Ice Coring in Antarctica (EPICA) Dome C; Siple Dome, West Antarctic Ice Sheet (WAIS) Dome A; Vostok; WAIS Divide; Byrd; Taylor Dome; Dome Fuji; Dome B; Komsomolskaya; and Talos Dome Ice Core (TALDICE).</Abstract> <Keywords> Antarctica Cryosphere Earth Science Ice Core Records Polar </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="-1.07304e+06" miny="-1.77267e+06" maxx="1.742e+06" maxy="1.07181e+06" /> </FeatureType> <FeatureType> <Name>south_pole_geographic</Name> <Title>South Pole, Geographic</Title> <Abstract>Labels the location of the South Pole (90 deg S, 0 deg), also referred to as the Geographic South Pole.</Abstract> <Keywords> Antarctica Geographic South Pole Polar South Pole </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> <FeatureType> <Name>south_pole_magnetic</Name> <Title>South Pole, Magnetic</Title> <Abstract>McClean, S. 24 January 2007. Geomagnetism Frequently Asked Questions. National Geophysical Data Center. http://www.ngdc.noaa.gov/seg/geomag/faqgeom.shtml#q4b. 24 January 2007. Background: Labels the location of the Magnetic South Pole, which in 2005 was computed to be 64.53 deg S, 137.86 deg E by the World Magnetic Model (WMM). The Earth&#39;s magnetic poles are the two points on the earth&#39;s surface at which magnetic meridians converge; the horizontal component of the magnetic field of the earth becomes zero at this point; also called the dip pole. The magnetic poles migrate over time.</Abstract> <Keywords> Antarctica Earth Science Geomagnetism Magnetic Field Magnetic South Pole Polar South Pole </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> <FeatureType> <Name>south_pole_geomagnetic</Name> <Title>South Pole, Geomagnetic</Title> <Abstract>McClean, S. 24 January 2007. Geomagnetism Frequently Asked Questions. National Geophysical Data Center. http://www.ngdc.noaa.gov/seg/geomag/faqgeom.shtml#q4b. 24 January 2007. Background: Labels the location of the Geomagnetic South Pole, which in 2005 was computed to be 79.74 deg S, 108.22 deg E by the World Magnetic Model (WMM). The Earth&#39;s geomagnetic poles are the points of intersection of the Earth&#39;s surface with the axis of a simple magnetic dipole that best approximates the Earth&#39;s actual, more complex magnetic field. If the Earth&#39;s magnetic field were a perfect dipole, then the field lines would be vertical at the geomagnetic poles and they would therefore coincide with the magnetic poles: however, the dipole approximation is in fact far from perfect, so in reality the magnetic and geomagnetic poles lie some distance apart. The geomagnetic poles migrate over time.</Abstract> <Keywords> Antarctica Earth Science Geomagnetic Indices Geomagnetism Geomagnetic South Pole Polar South Pole </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> <FeatureType> <Name>south_pole_inaccessibility</Name> <Title>South Pole of Inaccessibility</Title> <Abstract>Wikipedia contributors. 20 January 2007. South Pole. Wikipedia, The Free Encyclopedia. Available at http://en.wikipedia.org/w/index.php?title=South_Pole&amp;oldid=101993204. 24 January 2007. Background: Labels the location of the South Pole of Inaccessibility (85.83 deg S, 65.78 deg E), which is the point on the Antarctic continent farthest from the Southern Ocean. This pole was reached on December 14, 1958 by the 3rd Soviet Antarctic Expedition, led by Yevgeny Tolstikov. At that point they established a temporary station named Polyus Nedostupnosti.</Abstract> <Keywords> Antarctica Polar South Pole South Pole of Inaccessibility </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> <FeatureType> <Name>south_pole_of_cold</Name> <Title>South Pole of Cold</Title> <Abstract>Wikipedia contributors. 23 January 2007. Pole of Cold. Wikipedia, The Free Encyclopedia. Available at http://en.wikipedia.org/w/index.php?title=Pole_of_Cold&amp;oldid=102629381. 24 January 2007. Background: The Poles of Cold are the places in the Northern and Southern hemispheres where the lowest air temperature was recorded. In the Southern hemisphere, the Pole of Cold is in Antarctica near the Russian Antarctic station Vostok at 78.47.S, 106.8.E where a temperature of -89.2.C (-129.8.F) was recorded on July 21, 1983.</Abstract> <Keywords> Antarctica Cold Pole Cryosphere Earth Science Polar South Pole South Pole of Cold </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> <FeatureType> <Name>south_poles_wfs</Name> <Title>South Poles</Title> <Abstract>Labels the location of various types of South Poles: geographic, geomagnetic, magnetic, pole of cold, and pole of inaccessibility. Citations: McClean, S. 2007. Geomagnetism frequently asked questions. Boulder, Colorado USA: National Geophysical Data Center (NGDC). Available at http://www.ngdc.noaa.gov/geomag/faqgeom.shtml. Accessed 24 January 2007; Wikipedia contributors. 2007. Pole of Cold. Wikipedia, The Free Encyclopedia. Available at http://en.wikipedia.org/wiki/Pole_of_Cold. Accessed 24 January 2007; Wikipedia contributors. 2007. South Pole. Wikipedia, The Free Encyclopedia. Available at http://en.wikipedia.org/w/index.php?title=South_Pole&amp;oldid=101993204. Accessed 24 Janu ary 2007.</Abstract> <Keywords> Antarctica Cold Pole Geographic South Pole Geomagnetic Indices Geomagnetism Geomagnetic South Pole Magnetic Field Magnetic South Pole Polar South Pole South Pole of Cold South Pole of Inaccessibility </Keywords> <SRS>EPSG:3031</SRS> <LatLongBoundingBox minx="0" miny="-2.0978e+06" maxx="1.89817e+06" maxy="189149" /> </FeatureType> </FeatureTypeList> <ogc:Filter_Capabilities> <ogc:Spatial_Capabilities> <ogc:Spatial_Operators> <ogc:Equals/> <ogc:Disjoint/> <ogc:Touches/> <ogc:Within/> <ogc:Overlaps/> <ogc:Crosses/> <ogc:Intersect/> <ogc:Contains/> <ogc:DWithin/> <ogc:BBOX/> </ogc:Spatial_Operators> </ogc:Spatial_Capabilities> <ogc:Scalar_Capabilities> <ogc:Logical_Operators /> <ogc:Comparison_Operators> <ogc:Simple_Comparisons /> <ogc:Like /> <ogc:Between /> </ogc:Comparison_Operators> </ogc:Scalar_Capabilities> </ogc:Filter_Capabilities> </WFS_Capabilities> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/mapserver-wfs-schema.xml����������������������������������������������0000664�0000000�0000000�00000010356�13217064120�0022633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="ISO-8859-1"?> <schema targetNamespace="http://www.bsc-eoc.org/bsc" xmlns:bsc="http://www.bsc-eoc.org/bsc" xmlns:ogc="http://www.opengis.net/ogc" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" elementFormDefault="qualified" version="0.1"> <import namespace="http://www.opengis.net/gml" schemaLocation="http://schemas.opengeospatial.net//gml/2.1.2/feature.xsd"/> <element name="IBA" type="bsc:IBAType" substitutionGroup="gml:_Feature"/> <complexType name="IBAType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="CBC_PT" type="bsc:CBC_PTType" substitutionGroup="gml:_Feature"/> <complexType name="CBC_PTType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="CBC_PY" type="bsc:CBC_PYType" substitutionGroup="gml:_Feature"/> <complexType name="CBC_PYType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="MMP" type="bsc:MMPType" substitutionGroup="gml:_Feature"/> <complexType name="MMPType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="CLLS" type="bsc:CLLSType" substitutionGroup="gml:_Feature"/> <complexType name="CLLSType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="OBBA_SQUARE" type="bsc:OBBA_SQUAREType" substitutionGroup="gml:_Feature"/> <complexType name="OBBA_SQUAREType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="OBBA_REGION" type="bsc:OBBA_REGIONType" substitutionGroup="gml:_Feature"/> <complexType name="OBBA_REGIONType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="OBBA_BLOCK" type="bsc:OBBA_BLOCKType" substitutionGroup="gml:_Feature"/> <complexType name="OBBA_BLOCKType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="OWLS" type="bsc:OWLSType" substitutionGroup="gml:_Feature"/> <complexType name="OWLSType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> <element name="BBS_PT" type="bsc:BBS_PTType" substitutionGroup="gml:_Feature"/> <complexType name="BBS_PTType"> <complexContent> <extension base="gml:AbstractFeatureType"> <sequence> <element name="msGeometry" type="gml:GeometryPropertyType" minOccurs="0" maxOccurs="1"/> </sequence> </extension> </complexContent> </complexType> </schema>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sfs-wmts-cap-world.xml������������������������������������������������0000664�0000000�0000000�00000054246�13217064120�0022253�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <Capabilities version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://server.caris.com/spatialfusionserver/schemas/wmts/1.0.0/wmtsGetCapabilities_response.xsd" xmlns="http://www.opengis.net/wmts/1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink"> <ows:ServiceIdentification> <ows:Keywords> <ows:Keyword xml:lang="en"></ows:Keyword> </ows:Keywords> <ows:ServiceType>WMTS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:Fees>conditions unknown</ows:Fees> <ows:AccessConstraints>None</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>CARIS</ows:ProviderName> <ows:ServiceContact> <ows:IndividualName>Andy Hoggarth</ows:IndividualName> <ows:PositionName>Marketing &amp; Sales Manager</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>1 (506) 459-3849</ows:Voice> </ows:Phone> <ows:Address> <ows:DeliveryPoint>115 Waggoners Lane</ows:DeliveryPoint> <ows:City>Fredericton</ows:City> <ows:AdministrativeArea>New Brunswick</ows:AdministrativeArea> <ows:PostalCode>E3B 2L4</ows:PostalCode> <ows:Country>Canada</ows:Country> <ows:ElectronicMailAddress>info@caris.com</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetTile"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://server.caris.com/spatialfusionserver/services/ows/wmts/World"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="GetFeatureInfo"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://server.caris.com/spatialfusionserver/services/ows/wmts/World"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://server.caris.com/spatialfusionserver/services/ows/wmts/World"/> </ows:HTTP> </ows:DCP> </ows:Operation> </ows:OperationsMetadata> <Contents> <Layer> <ows:Title>World</ows:Title> <ows:WGS84BoundingBox> <ows:LowerCorner>-179.99999999999997 -90.0</ows:LowerCorner> <ows:UpperCorner>179.296876953125 83.62700000000001</ows:UpperCorner> </ows:WGS84BoundingBox> <ows:Identifier>World</ows:Identifier> <Style isDefault="true"> <ows:Identifier>default</ows:Identifier> </Style> <Format>image/png</Format> <InfoFormat>application/gml+xml; version=3.1</InfoFormat> <TileMatrixSetLink> <TileMatrixSet>GlobalCRS84Scale</TileMatrixSet> <TileMatrixSet>GoogleMapsCompatible</TileMatrixSet> </TileMatrixSetLink> <ResourceURL format="image/png" resourceType="tile" template="http://server.caris.com/spatialfusionserver/services/ows/wmts/World/World/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}.png"/> <ResourceURL format="application/gml+xml; version=3.1" resourceType="FeatureInfo" template="http://server.caris.com/spatialfusionserver/services/ows/wmts/World/World/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}/{j}/{i}.xml"/> </Layer> <Layer> <ows:Title>Ocean</ows:Title> <ows:WGS84BoundingBox> <ows:LowerCorner>-179.99999999999997 -85.583</ows:LowerCorner> <ows:UpperCorner>179.296876953125 89.946</ows:UpperCorner> </ows:WGS84BoundingBox> <ows:Identifier>Ocean</ows:Identifier> <Style isDefault="true"> <ows:Identifier>default</ows:Identifier> </Style> <Format>image/png</Format> <InfoFormat>application/gml+xml; version=3.1</InfoFormat> <TileMatrixSetLink> <TileMatrixSet>GlobalCRS84Scale</TileMatrixSet> <TileMatrixSet>GoogleMapsCompatible</TileMatrixSet> </TileMatrixSetLink> <ResourceURL format="image/png" resourceType="tile" template="http://server.caris.com/spatialfusionserver/services/ows/wmts/World/Ocean/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}.png"/> <ResourceURL format="application/gml+xml; version=3.1" resourceType="FeatureInfo" template="http://server.caris.com/spatialfusionserver/services/ows/wmts/World/Ocean/default/{tileMatrixSet}/{tileMatrix}/{tileRow}/{tileCol}/{j}/{i}.xml"/> </Layer> <TileMatrixSet> <ows:Identifier>GlobalCRS84Scale</ows:Identifier> <ows:SupportedCRS>urn:ogc:def:crs:OGC:1.3:CRS84</ows:SupportedCRS> <TileMatrix> <ows:Identifier>0</ows:Identifier> <ScaleDenominator>5.0E8</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>2</MatrixWidth> <MatrixHeight>1</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>1</ows:Identifier> <ScaleDenominator>2.5E8</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>4</MatrixWidth> <MatrixHeight>2</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>2</ows:Identifier> <ScaleDenominator>1.0E8</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>8</MatrixWidth> <MatrixHeight>4</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>3</ows:Identifier> <ScaleDenominator>5.0E7</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>16</MatrixWidth> <MatrixHeight>8</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>4</ows:Identifier> <ScaleDenominator>2.5E7</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>32</MatrixWidth> <MatrixHeight>16</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>5</ows:Identifier> <ScaleDenominator>1.0E7</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>64</MatrixWidth> <MatrixHeight>32</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>6</ows:Identifier> <ScaleDenominator>5000000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>128</MatrixWidth> <MatrixHeight>64</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>7</ows:Identifier> <ScaleDenominator>2500000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>256</MatrixWidth> <MatrixHeight>128</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>8</ows:Identifier> <ScaleDenominator>1000000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>512</MatrixWidth> <MatrixHeight>256</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>9</ows:Identifier> <ScaleDenominator>500000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>1024</MatrixWidth> <MatrixHeight>512</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>10</ows:Identifier> <ScaleDenominator>250000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>2048</MatrixWidth> <MatrixHeight>1024</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>11</ows:Identifier> <ScaleDenominator>100000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>4096</MatrixWidth> <MatrixHeight>2048</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>12</ows:Identifier> <ScaleDenominator>50000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>8192</MatrixWidth> <MatrixHeight>4096</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>13</ows:Identifier> <ScaleDenominator>25000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>16384</MatrixWidth> <MatrixHeight>8192</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>14</ows:Identifier> <ScaleDenominator>10000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>32768</MatrixWidth> <MatrixHeight>16384</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>15</ows:Identifier> <ScaleDenominator>5000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>65536</MatrixWidth> <MatrixHeight>32768</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>16</ows:Identifier> <ScaleDenominator>2500.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>131072</MatrixWidth> <MatrixHeight>65536</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>17</ows:Identifier> <ScaleDenominator>1000.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>262144</MatrixWidth> <MatrixHeight>131072</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>18</ows:Identifier> <ScaleDenominator>500.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>524288</MatrixWidth> <MatrixHeight>262144</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>19</ows:Identifier> <ScaleDenominator>250.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>1048576</MatrixWidth> <MatrixHeight>524288</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>20</ows:Identifier> <ScaleDenominator>100.0</ScaleDenominator> <TopLeftCorner>90.0 -180.0</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>2097152</MatrixWidth> <MatrixHeight>1048576</MatrixHeight> </TileMatrix> </TileMatrixSet> <TileMatrixSet> <ows:Identifier>GoogleMapsCompatible</ows:Identifier> <ows:SupportedCRS>urn:ogc:def:crs:EPSG:6.18:3:3857</ows:SupportedCRS> <TileMatrix> <ows:Identifier>0</ows:Identifier> <ScaleDenominator>5.590822640287178E8</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>1</MatrixWidth> <MatrixHeight>1</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>1</ows:Identifier> <ScaleDenominator>2.795411320143589E8</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>2</MatrixWidth> <MatrixHeight>2</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>2</ows:Identifier> <ScaleDenominator>1.397705660071794E8</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>4</MatrixWidth> <MatrixHeight>4</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>3</ows:Identifier> <ScaleDenominator>6.988528300358972E7</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>8</MatrixWidth> <MatrixHeight>8</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>4</ows:Identifier> <ScaleDenominator>3.494264150179486E7</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>16</MatrixWidth> <MatrixHeight>16</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>5</ows:Identifier> <ScaleDenominator>1.747132075089743E7</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>32</MatrixWidth> <MatrixHeight>32</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>6</ows:Identifier> <ScaleDenominator>8735660.375448715</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>64</MatrixWidth> <MatrixHeight>64</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>7</ows:Identifier> <ScaleDenominator>4367830.187724357</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>128</MatrixWidth> <MatrixHeight>128</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>8</ows:Identifier> <ScaleDenominator>2183915.093862179</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>256</MatrixWidth> <MatrixHeight>256</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>9</ows:Identifier> <ScaleDenominator>1091957.546931089</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>512</MatrixWidth> <MatrixHeight>512</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>10</ows:Identifier> <ScaleDenominator>545978.7734655447</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>1024</MatrixWidth> <MatrixHeight>1024</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>11</ows:Identifier> <ScaleDenominator>272989.3867327723</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>2048</MatrixWidth> <MatrixHeight>2048</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>12</ows:Identifier> <ScaleDenominator>136494.6933663862</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>4096</MatrixWidth> <MatrixHeight>4096</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>13</ows:Identifier> <ScaleDenominator>68247.34668319309</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>8192</MatrixWidth> <MatrixHeight>8192</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>14</ows:Identifier> <ScaleDenominator>34123.67334159654</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>16384</MatrixWidth> <MatrixHeight>16384</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>15</ows:Identifier> <ScaleDenominator>17061.83667079827</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>32768</MatrixWidth> <MatrixHeight>32768</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>16</ows:Identifier> <ScaleDenominator>8530.918335399136</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>65536</MatrixWidth> <MatrixHeight>65536</MatrixHeight> </TileMatrix> <TileMatrix> <ows:Identifier>17</ows:Identifier> <ScaleDenominator>4265.459167699568</ScaleDenominator> <TopLeftCorner>-2.0037508342789244E7 -2.0037508342789244E7</TopLeftCorner> <TileWidth>256</TileWidth> <TileHeight>256</TileHeight> <MatrixWidth>131072</MatrixWidth> <MatrixHeight>131072</MatrixHeight> </TileMatrix> </TileMatrixSet> </Contents> <Themes> <Theme> <ows:Title>Earth</ows:Title> <ows:Identifier>Earth</ows:Identifier> <LayerRef>World</LayerRef> <LayerRef>Ocean</LayerRef> </Theme> </Themes> <ServiceMetadataURL xlink:href="http://server.caris.com/spatialfusionserver/services/ows/wmts/World/1.0.0/WMTSCapabilities.xml" xlink:type="simple"/> </Capabilities> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sml_52N_network.xml���������������������������������������������������0000664�0000000�0000000�00000522536�13217064120�0021574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sml:SensorML xmlns:sml="http://www.opengis.net/sensorML/1.0.1" xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:swe="http://www.opengis.net/swe/1.0.1" version="1.0.1" xsi:schemaLocation="http://www.opengis.net/swe/1.0.1 http://schemas.opengis.net/sweCommon/1.0.1/swe.xsd http://www.opengis.net/sensorML/1.0.1 http://schemas.opengis.net/sensorML/1.0.1/sensorML.xsd"> <sml:capabilities name="ioosServiceMetadata"> <swe:SimpleDataRecord> <swe:field name="ioosTemplateVersion"> <swe:Text definition="http://code.google.com/p/ioostech/source/browse/#svn%2Ftrunk%2Ftemplates%2FMilestone1.0"> <swe:value>1.0</swe:value> </swe:Text> </swe:field> </swe:SimpleDataRecord> </sml:capabilities> <sml:member> <sml:System xmlns:ns="http://www.opengis.net/sensorML/1.0.1"> <gml:description>Contains all procedures in the SOS Server</gml:description> <gml:name>urn:ioos:network:glos:all</gml:name> <ns:keywords> <ns:KeywordList> <ns:keyword>urn:ioos:station:us.glos:45029(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-32.6m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-20.116m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:network:glos:all</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-20.68m)</ns:keyword> <ns:keyword>network-all</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-20.116m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-32.6m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45028</ns:keyword> <ns:keyword>NONE</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45027</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-32.6m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-4.267m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-3.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45161</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45163</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-18.288m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-32.6m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-32.6m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-5.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-12.496m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-23.0m)</ns:keyword> <ns:keyword>Contains all procedures in the SOS Server</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-9.81m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-14.325m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-20.116m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-10.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-20.116m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-26.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-9.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-5.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:GVSU1</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-29.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-20.116m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-19.2m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-4.37m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-12.53m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-8.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-9.7m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-19.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-16.459m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-11.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-6.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-13.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-2.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-7.09m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-31.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-6.705m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-15.24m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-10.668m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-8.839m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-13.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45023(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-22.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-4.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-20.68m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-23.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-16.5m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-23.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-3.048m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-19.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:UMBIO(height-1.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-7.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45022(height-12.8m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-11.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-6.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-17.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45013(height-27.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45026(height-8.4m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-15.0m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45014(height-16.1m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45024(height-21.9m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45025(height-17.96m)</ns:keyword> <ns:keyword>urn:ioos:station:us.glos:45029(height-15.0m)</ns:keyword> </ns:KeywordList> </ns:keywords> <sml:identification> <ns:IdentifierList> <ns:identifier name="networkID"> <ns:Term definition="http://mmisw.org/ont/ioos/definition/networkID"> <ns:value>urn:ioos:network:glos:all</ns:value> </ns:Term> </ns:identifier> <ns:identifier name="shortName"> <ns:Term definition="http://mmisw.org/ont/ioos/definition/shortName"> <ns:value>network-all</ns:value> </ns:Term> </ns:identifier> <ns:identifier name="longName"> <ns:Term definition="http://mmisw.org/ont/ioos/definition/longName"> <ns:value>Contains all procedures in the SOS Server</ns:value> </ns:Term> </ns:identifier> </ns:IdentifierList> </sml:identification> <sml:classification> <ns:ClassifierList> <ns:classifier name="publisher"> <ns:Term definition="http://mmisw.org/ont/ioos/definition/publisher"> <ns:value>GLOS</ns:value> </ns:Term> </ns:classifier> <ns:classifier name="parentNetwork"> <ns:Term definition="http://mmisw.org/ont/ioos/definition/parentNetwork"> <ns:value>GLOS</ns:value> </ns:Term> </ns:classifier> </ns:ClassifierList> </sml:classification> <ns:capabilities name="observedBBOX"> <swe:DataRecord> <swe:field name="observedBBOX"> <swe:Envelope referenceFrame="4326"> <swe:lowerCorner> <swe:Vector> <swe:coordinate name="easting"> <swe:Quantity axisID="x"> <swe:uom code="degree"/> <swe:value>41.983</swe:value> </swe:Quantity> </swe:coordinate> <swe:coordinate name="northing"> <swe:Quantity axisID="y"> <swe:uom code="degree"/> <swe:value>-91.929</swe:value> </swe:Quantity> </swe:coordinate> </swe:Vector> </swe:lowerCorner> <swe:upperCorner> <swe:Vector> <swe:coordinate name="easting"> <swe:Quantity> <swe:uom code="degree"/> <swe:value>47.279</swe:value> </swe:Quantity> </swe:coordinate> <swe:coordinate name="northing"> <swe:Quantity axisID="y"> <swe:uom code="degree"/> <swe:value>-83.599</swe:value> </swe:Quantity> </swe:coordinate> </swe:Vector> </swe:upperCorner> </swe:Envelope> </swe:field> </swe:DataRecord> </ns:capabilities> <ns:capabilities name="featuresOfInterest"> <swe:SimpleDataRecord> <swe:field name="featureOfInterestID1"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID2"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID3"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID4"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID5"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID6"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID7"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID8"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID9"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID10"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID11"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID12"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID13"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID14"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID15"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID16"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID17"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID18"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID19"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID20"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID21"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID22"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID23"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID24"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID25"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-20.116m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID26"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID27"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID28"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID29"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID30"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID31"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID32"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID33"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID34"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID35"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID36"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID37"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-32.6m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID38"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID39"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID40"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID41"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID42"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID43"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID44"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID45"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID46"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID47"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID48"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID49"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID50"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID51"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID52"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID53"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45013(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID54"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID55"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID56"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID57"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID58"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID59"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID60"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID61"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID62"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID63"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID64"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID65"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID66"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID67"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID68"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID69"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID70"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID71"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID72"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID73"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID74"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID75"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID76"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID77"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID78"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-20.116m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID79"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID80"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID81"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID82"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID83"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID84"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID85"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID86"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID87"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID88"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID89"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID90"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-32.6m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID91"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID92"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID93"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID94"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID95"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID96"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID97"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID98"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID99"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID100"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID101"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID102"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID103"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID104"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID105"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID106"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45014(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID107"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID108"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID109"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID110"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID111"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID112"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID113"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID114"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID115"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID116"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID117"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID118"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID119"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID120"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID121"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID122"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID123"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID124"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID125"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID126"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID127"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID128"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID129"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID130"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID131"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID132"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID133"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID134"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID135"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID136"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID137"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID138"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID139"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID140"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID141"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID142"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID143"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID144"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID145"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID146"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID147"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID148"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID149"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID150"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID151"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID152"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID153"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45022(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID154"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID155"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID156"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID157"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID158"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID159"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID160"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID161"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID162"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID163"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID164"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID165"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID166"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID167"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID168"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID169"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID170"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID171"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID172"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID173"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID174"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID175"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID176"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID177"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID178"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-20.116m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID179"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID180"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID181"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID182"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID183"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID184"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID185"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID186"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID187"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID188"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID189"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID190"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-32.6m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID191"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID192"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID193"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID194"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID195"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID196"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID197"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID198"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID199"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID200"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID201"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID202"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID203"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID204"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID205"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID206"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45023(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID207"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID208"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID209"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID210"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID211"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID212"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID213"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID214"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID215"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID216"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID217"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID218"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID219"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID220"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID221"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID222"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID223"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID224"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID225"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID226"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID227"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID228"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID229"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID230"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID231"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID232"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID233"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID234"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID235"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID236"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID237"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID238"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID239"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID240"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID241"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID242"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID243"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID244"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID245"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID246"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID247"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID248"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID249"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID250"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID251"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID252"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID253"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45024(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID254"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID255"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID256"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID257"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID258"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID259"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID260"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID261"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID262"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID263"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID264"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID265"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID266"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID267"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID268"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID269"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID270"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID271"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID272"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID273"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID274"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID275"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID276"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID277"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID278"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-20.116m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID279"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID280"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID281"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID282"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID283"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID284"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID285"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID286"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID287"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID288"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID289"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID290"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-32.6m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID291"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID292"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID293"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID294"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID295"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID296"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID297"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID298"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID299"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID300"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID301"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID302"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID303"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID304"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID305"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID306"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45025(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID307"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID308"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID309"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID310"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID311"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID312"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID313"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID314"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID315"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID316"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID317"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID318"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID319"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID320"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID321"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID322"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID323"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID324"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID325"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID326"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID327"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID328"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID329"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID330"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID331"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID332"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID333"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID334"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID335"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID336"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID337"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID338"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID339"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID340"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID341"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID342"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID343"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID344"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID345"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID346"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID347"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID348"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID349"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID350"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID351"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID352"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID353"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID354"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID355"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID356"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID357"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45026(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID358"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45027</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID359"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45028</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID360"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID361"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID362"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-10.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID363"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID364"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID365"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID366"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID367"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID368"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID369"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID370"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID371"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID372"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID373"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID374"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID375"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID376"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID377"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-17.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID378"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID379"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-18.288m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID380"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID381"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID382"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID383"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID384"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-20.116m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID385"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID386"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID387"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID388"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID389"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID390"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID391"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID392"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-29.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID393"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID394"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID395"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID396"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-32.6m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID397"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID398"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID399"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID400"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID401"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID402"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID403"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID404"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID405"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID406"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID407"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID408"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID409"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID410"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID411"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID412"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45029(height-9.81m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID413"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45161</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID414"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:45163</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID415"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:GVSU1</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID416"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID417"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-1.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID418"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-10.668m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID419"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-11.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID420"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-11.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID421"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-12.496m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID422"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-12.53m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID423"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-12.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID424"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-13.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID425"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-13.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID426"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-14.325m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID427"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-15.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID428"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-15.24m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID429"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-16.1m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID430"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-16.459m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID431"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-16.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID432"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-17.96m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID433"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-19.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID434"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-19.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID435"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-19.5m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID436"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-2.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID437"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-20.68m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID438"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-21.9m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID439"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-22.8m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID440"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-23.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID441"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-23.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID442"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-26.2m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID443"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-27.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID444"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-3.048m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID445"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-3.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID446"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-31.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID447"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-4.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID448"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-4.267m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID449"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-4.37m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID450"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-5.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID451"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-5.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID452"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-6.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID453"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-6.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID454"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-6.705m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID455"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-7.09m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID456"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-7.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID457"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-8.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID458"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-8.4m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID459"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-8.839m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID460"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-9.0m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID461"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-9.7m)</swe:value> </swe:Text> </swe:field> <swe:field name="featureOfInterestID462"> <swe:Text definition="http://www.opengis.net/def/featureOfInterest/identifier"> <swe:value>urn:ioos:station:us.glos:UMBIO(height-9.81m)</swe:value> </swe:Text> </swe:field> </swe:SimpleDataRecord> </ns:capabilities> <ns:capabilities name="offerings"> <swe:SimpleDataRecord> <swe:field name="Offering for urn:ioos:network:glos:all"> <swe:Text definition="http://www.opengis.net/def/offering/identifier"> <swe:value>urn:ioos:network:glos:all</swe:value> </swe:Text> </swe:field> </swe:SimpleDataRecord> </ns:capabilities> <ns:capabilities name="observationTimeRange"> <swe:DataRecord> <swe:field name="observationTimeRange"> <swe:TimeRange definition="http://mmisw.org/ont/ioos/swe_element_type/observationTimeRange"> <swe:value>2013-08-26T18:10:00.000Z 2013-09-20T12:50:00.000Z</swe:value> </swe:TimeRange> </swe:field> </swe:DataRecord> </ns:capabilities> <sml:contact xlink:role="http://mmisw.org/ont/ioos/definition/publisher"> <sml:ResponsibleParty> <sml:organizationName>GLOS</sml:organizationName> <sml:contactInfo> <sml:address> <sml:country>USA</sml:country> <sml:electronicMailAddress>dmac@glos.us</sml:electronicMailAddress> </sml:address> <sml:onlineResource xlink:href="http://glos.us"/> </sml:contactInfo> </sml:ResponsibleParty> </sml:contact> <ns:components> <ns:ComponentList> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45024" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45024&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45025" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45025&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45026" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45026&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45013" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45013&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45014" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45014&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45027" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45027&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:GVSU1" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:GVSU1&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:UMBIO" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:UMBIO&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45022" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45022&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45161" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45161&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45023" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45023&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45163" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45163&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45029" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45029&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> <ns:component name="component1" xlink:title="urn:ioos:station:us.glos:45028" xlink:href="http://sos.glos.us/52n/sos/kvp?request=DescribeSensor&amp;service=SOS&amp;version=2.0.0&amp;procedure=urn:ioos:station:us.glos:45028&amp;procedureDescriptionFormat=text%2Fxml%3Bsubtype%3D%22sensorML%2F1.0.1%2Fprofiles%2Fioos_sos%2F1.0%22"/> </ns:ComponentList> </ns:components> </sml:System> </sml:member> </sml:SensorML>������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sml_ndbc_station.xml��������������������������������������������������0000664�0000000�0000000�00000022373�13217064120�0022120�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sml:SensorML xmlns:sml="http://www.opengis.net/sensorML/1.0.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml" xmlns:swe="http://www.opengis.net/swe/1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/sensorML/1.0.1 http://schemas.opengis.net/sensorML/1.0.1/sensorML.xsd" version="1.0.1"> <!-- You have reached the NDBC TEST DIF SOS Server. The production server is located at http://sdf.ndbc.noaa.gov/sos/. --> <sml:member> <sml:System gml:id="station-41012"> <gml:description>Station metadata for 41012 - 40NM ENE of St Augustine, FL</gml:description> <sml:identification> <sml:IdentifierList> <sml:identifier name="StationId"> <sml:Term definition="urn:ioos:def:identifier:NOAA:stationID"> <sml:codeSpace xlink:href="http://sdf.ndbc.noaa.gov"/> <sml:value>urn:ioos:station:wmo:41012</sml:value> </sml:Term> </sml:identifier> <sml:identifier name="Short Name"> <sml:Term definition="urn:ogc:def:identifier:OGC:shortName"> <sml:value>41012</sml:value> </sml:Term> </sml:identifier> <sml:identifier name="Long Name"> <sml:Term definition="urn:ogc:def:identifier:OGC:longName"> <sml:value>40NM ENE of St Augustine, FL</sml:value> </sml:Term> </sml:identifier> <!-- Where does water depth (38.4 m) go? --> </sml:IdentifierList> </sml:identification> <sml:classification> <sml:ClassifierList> <sml:classifier name="Platform Type"> <sml:Term definition="urn:ioos:def:classifier:NOAA:platformType"> <sml:codeSpace xlink:href="http://sdf.ndbc.noaa.gov"/> <sml:value>MOORED BUOY</sml:value> </sml:Term> </sml:classifier> </sml:ClassifierList> </sml:classification> <sml:contact xlink:role="urn:ogc:def:classifiers:OGC:contactType:operator"> <sml:ResponsibleParty> <sml:organizationName>National Data Buoy Center</sml:organizationName> <sml:contactInfo> <sml:address> <sml:country>US</sml:country> </sml:address> </sml:contactInfo> </sml:ResponsibleParty> </sml:contact> <sml:contact xlink:role="urn:ogc:def:classifiers:OGC:contactType:publisher" xlink:href="http://sdf.ndbc.noaa.gov/"> <sml:ResponsibleParty> <sml:organizationName>National Data Buoy Center</sml:organizationName> <sml:contactInfo> <sml:phone> <sml:voice>228-688-2805</sml:voice> </sml:phone> <sml:address> <sml:deliveryPoint>Bldg. 3205</sml:deliveryPoint> <sml:city>Stennis Space Center</sml:city> <sml:administrativeArea>MS</sml:administrativeArea> <sml:postalCode>39529</sml:postalCode> <sml:country>USA</sml:country> <sml:electronicMailAddress>webmaster.ndbc@noaa.gov</sml:electronicMailAddress> </sml:address> </sml:contactInfo> </sml:ResponsibleParty> </sml:contact> <sml:documentation xlink:arcrole="qualityControlDocument"> <sml:Document> <gml:description>Handbook of Automated Data Quality Control Checks and Procedures, National Data Buoy Center, August 2009</gml:description> <sml:format>pdf</sml:format> <sml:onlineResource xlink:href="http://www.ndbc.noaa.gov/NDBCHandbookofAutomatedDataQualityControl2009.pdf"/> </sml:Document> </sml:documentation> <sml:history> <sml:EventList> <sml:member name="deployment_start"> <sml:Event> <sml:date>2010-01-12</sml:date> <gml:description>Deployment start event</gml:description> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:station:wmo:41012:20100112"/> </sml:Event> </sml:member> <sml:member name="deployment_stop"> <sml:Event> <sml:date>2011-02-06</sml:date> <gml:description>Deployment stop event</gml:description> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:station:wmo:41012:20100112"/> </sml:Event> </sml:member> <sml:member name="deployment_start"> <sml:Event> <sml:date>2011-02-07</sml:date> <gml:description>Deployment start event</gml:description> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:station:wmo:41012:20110207"/> </sml:Event> </sml:member> </sml:EventList> </sml:history> <sml:location> <gml:Point gml:id="STATION-LOCATION-41012" srsName="urn:ogc:crs:epsg::4326"> <gml:coordinates>30.04 -80.55</gml:coordinates> </gml:Point> </sml:location> <sml:components> <sml:ComponentList> <sml:component name="Sensor adcp0"> <sml:System gml:id="sensor-adcp0"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::adcp0"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::adcp0"/> </sml:System> </sml:component> <sml:component name="Sensor watertemp1"> <sml:System gml:id="sensor-watertemp1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::watertemp1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::watertemp1"/> </sml:System> </sml:component> <sml:component name="Sensor anemometer1"> <sml:System gml:id="sensor-anemometer1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::anemometer1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::anemometer1"/> </sml:System> </sml:component> <sml:component name="Sensor wpm1"> <sml:System gml:id="sensor-wpm1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::wpm1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::wpm1"/> </sml:System> </sml:component> <sml:component name="Sensor ct1"> <sml:System gml:id="sensor-ct1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::ct1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::ct1"/> </sml:System> </sml:component> <sml:component name="Sensor baro1"> <sml:System gml:id="sensor-baro1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::baro1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::baro1"/> </sml:System> </sml:component> <sml:component name="Sensor airtemp1"> <sml:System gml:id="sensor-airtemp1"> <gml:description></gml:description> <sml:identification xlink:href="urn:ioos:sensor:wmo:41012::airtemp1"/> <sml:documentation xlink:href="http://sdftest.ndbc.noaa.gov/sos/server.php?service=SOS&amp;request=DescribeSensor&amp;version=1.0.0&amp;outputformat=text/xml;subtype=&quot;sensorML/1.0.1&quot;&amp;procedure=urn:ioos:sensor:wmo:41012::airtemp1"/> </sml:System> </sml:component> </sml:ComponentList> </sml:components> </sml:System> </sml:member> </sml:SensorML> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_52n_get_observation_ioos.xml��������������������������������������0000664�0000000�0000000�00000046342�13217064120�0024373�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:GetObservationResponse xmlns:sos="http://www.opengis.net/sos/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:om="http://www.opengis.net/om/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="http://www.opengis.net/sos/2.0 http://schemas.opengis.net/sos/2.0/sosGetObservation.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd http://www.opengis.net/om/2.0 http://schemas.opengis.net/om/2.0/observation.xsd"> <sos:observationData> <om:OM_Observation gml:id="o_A8C1BC58D6D4EAD0409FFF41C49726B8C65AC9C1"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1581"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1581"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-75.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">25.12</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_7A280CB9B3F3C9323CD90C0127720695A016E86D"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1521"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1521"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-60.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">16.37</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_844947E9478EC18A253D9B9F6B42449ACFF9DC46"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1561"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1561"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-70.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">16.49</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_892EFC8F32CAE841373AD2B59064A5D8D5F6A56E"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1281"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1281"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height0.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">20.49</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_22EA2EC80AE83B7C14305E89B33AEB37F1C57873"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1661"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1661"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-95.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">6.35</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_EC200BE05D635934ADA3D694F59F27DCD1A99F7F"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1441"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1441"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-40.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">12.05</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_A8A8853B9DB05CE2C71CB8E98472F09C912A37AD"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1481"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1481"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-50.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">8.82</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_DD07D0456CC863A055EBE092A9F555EBF6F9F425"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1381"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1381"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-25.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">11.5</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_AFB6503D41E3D0E7BF24FB7D4CA765D0F95796D5"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1401"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1401"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-30.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">24.76</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_551F96D71BFB485D0C06D6053B62CA7DC30EC8E4"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1461"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1461"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-45.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">17.74</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_4F9642997647ADF39DDE6F1EBF47A39F30F7BB61"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1261"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1261"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:air_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">6.03</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_73067292651E2F6EF0FC60E8CCB2FDD6147F75F5"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1301"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1301"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-5.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">20.86</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_BF8738F4C9542266B2E5D25FAC8A171F5643E83B"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1501"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1501"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-55.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">13.63</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_49A558E6DF45E490DFCE159823AF2FE66EABC180"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1621"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1621"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-85.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">8.47</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_25D5BDFFD596A0A3AD7BB53B1310E19D94414B7E"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1361"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1361"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-20.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">8.08</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_99E78EB5B525AA8D0D7823B2DB55B42835FC3CD3"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1321"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1321"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-10.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">30.38</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_25F20DE415EBB4A3983267DB9CAA48142301BDD3"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1421"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1421"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-35.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">13.18</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_9677ED62B69B869240F268FF2E475B574EC43249"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1641"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1641"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-90.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">6.82</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_39E48859E1374DEDC60DB5880638D729CDCC805D"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1541"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1541"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-65.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">18.35</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_EEB115B304F9370C8B95199C1BE4284845180C5C"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1341"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1341"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-15.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">19.34</om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_782008D03AFCCEA45503F4A1DF3EAB3126198133"> <om:type xlink:href="http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement"/> <om:phenomenonTime> <gml:TimeInstant gml:id="phenomenonTime_1601"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:phenomenonTime> <om:resultTime xlink:href="#phenomenonTime_1601"/> <om:procedure xlink:href="urn:ioos:sensor:test:3:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:3(height-80.0m)"/> <om:result xmlns:ns="http://www.opengis.net/gml/3.2" uom="urn:ogc:def:uom:udunits:2:Cel" xsi:type="ns:MeasureType">11.58</om:result> </om:OM_Observation> </sos:observationData> </sos:GetObservationResponse> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_52n_get_observation_ioos_wml2.xml���������������������������������0000664�0000000�0000000�00000372763�13217064120�0025345�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:GetObservationResponse xmlns:sos="http://www.opengis.net/sos/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:om="http://www.opengis.net/om/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wml2="http://www.opengis.net/waterml/2.0" xsi:schemaLocation="http://www.opengis.net/waterml/2.0 http://schemas.opengis.net/waterml/2.0/waterml2.xsd http://www.opengis.net/sos/2.0 http://schemas.opengis.net/sos/2.0/sosGetObservation.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd http://www.opengis.net/om/2.0 http://schemas.opengis.net/om/2.0/observation.xsd"> <sos:observationData> <om:OM_Observation gml:id="o_88D32CAEB4E72DA561497F9DA2703AA911194C12"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_1"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_472A0AAB51B0FD6E5633311E63CBBD67D1BFF945"> <gml:timePosition>2014-07-07T08:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-80.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.1"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_1"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>16.02</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>12.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>30.7</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>23.61</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>28.21</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>26.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>24.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>6.19</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>15.18</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>15.58</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>7.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>11.64</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>16.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>31.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>7.18</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>13.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>9.13</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>5.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>31.29</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>12.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_6318BCD8AD56666377988C10D9739AE06EF4B2AC"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3551"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_8D0836CC69774CDC09AD46E92BC812C6972D7C1F"> <gml:timePosition>2014-07-07T09:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-40.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3551"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3551"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>17.29</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>21.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>14.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>5.87</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>6.71</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>20.69</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>23.59</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>20.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>17.84</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>10.11</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>17.43</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>11.97</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>13.8</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>21.56</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>26.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>10.73</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>23.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>29.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>21.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>13.19</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_AAAEAC5973C2D30A73DABB88E957CA6D8DE890FB"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3748"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_BFD04918FAE95119B52F701A017AEBB4FF3AA2D9"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-90.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3748"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3748"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>19.21</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>27.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>6.77</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>14.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>7.7</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>16.77</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>12.88</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>11.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>16.92</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>21.88</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>14.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>27.46</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>21.68</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>22.62</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>16.59</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>30.91</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>31.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>17.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>18.61</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>7.83</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_64B88BDF29AF652B2F79A434B55F47AB1D3C3839"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3387"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_5C595A31EFA575D1C27431C8E937CDD099426666"> <gml:timePosition>2014-07-07T20:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height0.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3387"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3387"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>27.83</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>19.45</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>23.65</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>25.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>28.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>17.23</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>13.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>27.39</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>20.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>19.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>31.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>11.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>10.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>9.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>20.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>12.04</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>10.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>28.26</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>16.02</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>29.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_226E6299B8513D67AADBF1FC49FF6DCE4DC7FD5C"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3689"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_F065A41ECB73F1C7E187AB9BAE245E1730284007"> <gml:timePosition>2014-07-07T15:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-75.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3689"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3689"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>28.98</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>28.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>18.68</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>9.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>18.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>27.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>7.84</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>20.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>26.82</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>11.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>17.86</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>19.04</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>10.73</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>25.74</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>25.47</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>19.13</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>15.55</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>20.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>31.11</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>9.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_53B62B3D2FB33A78A38915BAF8A1579E9D2CD7A1"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3626"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_53676FA1ECE9284BABDE45E65C7E9D8C7DE19559"> <gml:timePosition>2014-07-07T16:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-60.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3626"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3626"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>24.69</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>19.84</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>9.28</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>31.31</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>21.24</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>27.43</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>13.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>21.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>9.77</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>19.13</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>6.43</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>27.81</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>15.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>31.14</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>26.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>27.83</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>28.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>18.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>11.78</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>8.32</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_1E8091C0096CC74FE1AE184ACE4FFDB2874D0D7A"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3598"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_1DF40E16F682FC9894421889AE295626AC20190A"> <gml:timePosition>2014-07-07T17:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-50.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3598"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3598"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>18.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>31.23</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>23.38</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>26.73</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>12.25</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>26.52</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>19.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>9.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>31.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>10.02</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>18.97</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>19.22</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>10.02</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>12.91</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>18.78</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>5.16</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>6.64</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>26.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>13.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>24.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_61D5A59CCDF69D24A678A619372D0FE5B21AF63C"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3562"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_7875E472DDCFE285F1704BB58105E437AE622E26"> <gml:timePosition>2014-07-07T03:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-45.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3562"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3562"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>22.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>23.03</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>25.29</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>19.8</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>6.16</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>30.26</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>18.62</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>22.15</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>5.21</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>27.8</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>11.12</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>15.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>8.56</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>6.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>14.12</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>17.22</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>19.38</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>11.82</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>28.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>5.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_36C02E874B52DB51542B42519A0A4698D8937836"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3502"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_6EE424A18F2F1552A8AF2AC5A3C3888EC8B3ED0D"> <gml:timePosition>2014-07-07T10:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-30.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3502"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3502"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>8.42</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>29.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>25.59</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>25.67</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>7.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>22.03</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>17.81</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>9.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>23.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>15.99</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>30.87</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>8.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>21.36</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>10.3</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>19.65</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>23.82</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>19.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>11.35</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>15.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>23.61</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_80E4EAE4B348411846060BDE55A55BB281C5EE09"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3734"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_A62974AD4DB48587F77E55203DCCEE3467AF69A6"> <gml:timePosition>2014-07-07T05:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-85.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3734"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3734"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>21.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>18.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>18.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>25.67</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>21.28</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>10.18</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>19.54</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>30.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>31.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>20.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>30.61</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>17.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>21.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>15.05</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>27.24</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>18.05</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>17.87</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>21.47</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>7.11</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>24.13</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_7BC6DA478C32DA64E47D0CECE67146467F63858E"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3663"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_B6527927DB2C1ECB887523B398E242EA162F5414"> <gml:timePosition>2014-07-07T08:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-70.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3663"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3663"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>23.49</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>23.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>29.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>31.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>6.78</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>13.3</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>30.09</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>26.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>8.05</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>11.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>10.08</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>16.21</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>14.11</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>8.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>23.32</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>9.01</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>17.02</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>11.4</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>19.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>11.62</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_045A3FA5C50D8F18F208B676BE4F36A8D402466D"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3658"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_0E775A2144BBE031B4FF16F6629D5B2D8274FDDD"> <gml:timePosition>2014-07-07T08:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-65.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3658"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3658"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>24.01</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>27.08</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>13.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>9.36</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>19.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>18.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>30.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>17.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>23.97</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>14.91</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>20.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>15.28</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>8.84</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>28.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>24.88</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>16.35</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>14.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>23.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>18.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>25.08</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_978281924755A3138572409F394CECEB098C06EE"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3405"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_A575E248A26FFFFC018118A60B790295C44429D9"> <gml:timePosition>2014-07-07T22:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-5.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3405"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3405"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>23.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>22.05</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>7.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>30.06</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>18.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>25.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>12.31</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>12.56</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>15.15</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>24.46</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>13.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>9.94</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>30.43</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>14.84</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>14.28</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>16.52</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>10.54</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>9.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>12.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>12.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_9C47F06953BD9FA60EA33B34D4AA08736E999F1D"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3603"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_BEBAD9E7D059FE5493C4E9DB34B19B3EA7F6043C"> <gml:timePosition>2014-07-07T16:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-55.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3603"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3603"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>24.86</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>5.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>14.37</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>6.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>28.4</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>15.26</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>22.82</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>16.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>20.94</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>31.97</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>24.83</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>17.77</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>28.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>17.97</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>12.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>27.94</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>22.06</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>19.03</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>24.45</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>30.68</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_841A1E5ABD392B0E7B1B20312AA16D6BF034D333"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3366"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_F1D75BE33CDB55885EB3674AB7917D7888A67705"> <gml:timePosition>2014-07-07T09:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:air_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3366"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3366"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>24.11</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>6.78</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>25.14</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>18.24</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>9.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>14.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>26.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>11.3</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>13.38</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>27.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>24.73</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>28.05</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>22.69</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>20.35</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>29.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>17.99</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>14.12</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>17.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>8.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>23.12</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_40AD0957F66C85C29CA1424999A6A54174A226C6"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3467"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_78F963F80BAD6C720293E0BDEF7F4EA2E4912F93"> <gml:timePosition>2014-07-07T11:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-20.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3467"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3467"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>9.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>25.8</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>8.94</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>28.45</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>5.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>27.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>5.66</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>26.87</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>13.58</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>23.86</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>8.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>17.62</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>24.65</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>31.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>11.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>14.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>6.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>29.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>31.56</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>23.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_500D79CDB3625211F6B1CF44AF17AD208F4D49C8"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3539"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_C9A08CD4398679B397147F823F709E032C2D1518"> <gml:timePosition>2014-07-07T21:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-35.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3539"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3539"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>8.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>31.19</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>29.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>25.76</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>26.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>16.13</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>6.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>31.49</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>12.88</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>27.45</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>18.49</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>23.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>23.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>22.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>10.4</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>23.77</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>18.44</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>31.04</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>15.04</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>9.17</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_71CCED7C930B08B661EBAA07E1E46D04151FF640"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3450"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_20954FCD69EA2E842D046A69CD17E0FBD3F5BC83"> <gml:timePosition>2014-07-07T19:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-15.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3450"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3450"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>25.59</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>16.33</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>19.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>18.93</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>19.69</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>8.89</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>19.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>14.75</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>28.14</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>5.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>20.53</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>17.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>17.74</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>6.22</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>12.68</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>9.69</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>26.4</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>14.55</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>24.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>15.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_4C57E7F6D2651125FF8BE36224471ECDBE7C42B4"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3429"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_BCED443D7869929D81CC9390F9E28738FF1DE8DB"> <gml:timePosition>2014-07-07T12:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-10.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3429"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3429"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>29.92</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>26.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>6.49</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>19.43</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>15.16</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>31.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>5.42</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>29.29</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>18.57</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>8.46</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>30.95</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>25.0</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>11.16</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>18.52</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>10.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>27.07</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>20.67</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>22.8</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>19.01</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>8.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_6115A3A79FA908416CCCF0A4C2C48CF4F941B29D"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3493"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_1122F1108A9B16D867C856B2015FDD36FD3E7469"> <gml:timePosition>2014-07-07T17:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-25.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3493"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3493"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>25.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>19.0</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>12.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>12.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>5.18</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>27.62</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>16.82</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>26.73</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>26.58</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>16.83</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>19.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>28.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>11.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>14.12</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>27.6</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>24.27</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>26.15</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>30.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>8.24</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>21.34</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> <sos:observationData> <om:OM_Observation gml:id="o_1BAA713B3A7A66CE45B3B1D50F433EB368137434"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_3772"> <gml:beginPosition>2014-07-07T03:00:00.000Z</gml:beginPosition> <gml:endPosition>2014-07-07T22:00:00.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_0994CD75264BCCC0B8E9DEADFD5A4C2BABACF975"> <gml:timePosition>2014-07-07T03:00:00.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="urn:ioos:sensor:test:8:sea_water_temperature"/> <om:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <om:featureOfInterest xlink:href="urn:ioos:station:test:8(height-95.0m)"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.3772"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_3772"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="urn:ogc:def:uom:udunits:2:Cel"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T03:00:00.000Z</wml2:time> <wml2:value>20.22</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T04:00:00.000Z</wml2:time> <wml2:value>27.24</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T05:00:00.000Z</wml2:time> <wml2:value>17.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T06:00:00.000Z</wml2:time> <wml2:value>21.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T07:00:00.000Z</wml2:time> <wml2:value>8.65</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T08:00:00.000Z</wml2:time> <wml2:value>18.29</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T09:00:00.000Z</wml2:time> <wml2:value>21.38</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T10:00:00.000Z</wml2:time> <wml2:value>13.54</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T11:00:00.000Z</wml2:time> <wml2:value>16.48</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T12:00:00.000Z</wml2:time> <wml2:value>23.36</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T13:00:00.000Z</wml2:time> <wml2:value>25.78</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T14:00:00.000Z</wml2:time> <wml2:value>21.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T15:00:00.000Z</wml2:time> <wml2:value>6.63</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T16:00:00.000Z</wml2:time> <wml2:value>26.72</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T17:00:00.000Z</wml2:time> <wml2:value>17.85</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T18:00:00.000Z</wml2:time> <wml2:value>30.51</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T19:00:00.000Z</wml2:time> <wml2:value>16.42</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T20:00:00.000Z</wml2:time> <wml2:value>26.14</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T21:00:00.000Z</wml2:time> <wml2:value>15.22</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-07T22:00:00.000Z</wml2:time> <wml2:value>26.41</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> </sos:GetObservationResponse> �������������OWSLib-0.16.0/tests/resources/sos_52n_getcapabilities.xml�������������������������������������������0000664�0000000�0000000�00000401576�13217064120�0023305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:Capabilities xmlns:sos="http://www.opengis.net/sos/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosAll.xsd"> <ows:ServiceIdentification> <ows:Title>IOOS 52N SOS</ows:Title> <ows:Abstract>IOOS 52North Sensor Observation Service</ows:Abstract> <ows:ServiceType codeSpace="http://opengeospatial.net">OGC:SOS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:ServiceTypeVersion>2.0.0</ows:ServiceTypeVersion> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/categoryObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/countObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/geometryObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/measurement</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/textObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/1.0/conf/truthObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/categoryObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/countObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/geometryObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/measurement</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/samplingCurve</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/samplingPoint</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/samplingSurface</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/spatialSampling</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/textObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/truthObservation</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/1.0/conf/core</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/1.0/conf/enhanced</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/core</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/foiRetrieval</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/insertionCap</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/kvp-core</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/obsByIdRetrieval</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/obsInsertion</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/pox</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/resultInsertion</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/resultRetrieval</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/sensorDeletion</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/sensorInsertion</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/soap</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/updateSensorDescription</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/core</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/general-encoding-rules</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/text-encoding-rules</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/uml-block-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/uml-record-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/uml-simple-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/uml-simple-encodings</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/xsd-block-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/xsd-record-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/xsd-simple-components</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SWE/2.0/conf/xsd-simple-encodings</ows:Profile> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>NONE</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>GLOS</ows:ProviderName> <ows:ProviderSite xlink:href="http://glos.us"/> <ows:ServiceContact> <ows:IndividualName>GLOS</ows:IndividualName> <ows:PositionName>DMAC</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>(734) 332-6113</ows:Voice> </ows:Phone> <ows:Address> <ows:DeliveryPoint>229 Nickels Arcade</ows:DeliveryPoint> <ows:City>Ann Arbor</ows:City> <ows:AdministrativeArea>MI</ows:AdministrativeArea> <ows:PostalCode>48104</ows:PostalCode> <ows:Country>USA</ows:Country> <ows:ElectronicMailAddress>dmac@glos.us</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="DescribeSensor"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sos.glos.us/52n/sos/kvp?"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>kvp</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Get> <ows:Post xlink:href="http://sos.glos.us/52n/sos/soap"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>soap</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> <ows:Post xlink:href="http://sos.glos.us/52n/sos/pox"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>pox</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="outputFormat"> <ows:AllowedValues> <ows:Value>http://www.opengis.net/sensorML/1.0.1</ows:Value> <ows:Value>text/xml;subtype="sensorML/1.0.1"</ows:Value> <ows:Value>text/xml;subtype="sensorML/1.0.1/profiles/ioos_sos/1.0"</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sos.glos.us/52n/sos/kvp?"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>kvp</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Get> <ows:Post xlink:href="http://sos.glos.us/52n/sos/soap"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>soap</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> <ows:Post xlink:href="http://sos.glos.us/52n/sos/pox"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>pox</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="Sections"> <ows:AllowedValues> <ows:Value>All</ows:Value> <ows:Value>Contents</ows:Value> <ows:Value>Filter_Capabilities</ows:Value> <ows:Value>OperationsMetadata</ows:Value> <ows:Value>ServiceIdentification</ows:Value> <ows:Value>ServiceProvider</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetFeatureOfInterest"> <ows:DCP> <ows:HTTP> <ows:Post xlink:href="http://sos.glos.us/52n/sos/soap"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>soap</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> <ows:Post xlink:href="http://sos.glos.us/52n/sos/pox"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>pox</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="GetObservation"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sos.glos.us/52n/sos/kvp?"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>kvp</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Get> <ows:Post xlink:href="http://sos.glos.us/52n/sos/soap"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>soap</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> <ows:Post xlink:href="http://sos.glos.us/52n/sos/pox"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>pox</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="GetObservationById"> <ows:DCP> <ows:HTTP> <ows:Post xlink:href="http://sos.glos.us/52n/sos/soap"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>soap</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> <ows:Post xlink:href="http://sos.glos.us/52n/sos/pox"> <ows:Constraint name="encoding"> <ows:AllowedValues> <ows:Value>pox</ows:Value> </ows:AllowedValues> </ows:Constraint> </ows:Post> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Parameter name="service"> <ows:AllowedValues> <ows:Value>SOS</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="version"> <ows:AllowedValues> <ows:Value>1.0.0</ows:Value> <ows:Value>2.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:ExtendedCapabilities> <gml:metaDataProperty xlink:title="ioosTemplateVersion" xlink:href="http://code.google.com/p/ioostech/source/browse/#svn%2Ftrunk%2Ftemplates%2FMilestone1.0"> <gml:version>1.0</gml:version> </gml:metaDataProperty> </ows:ExtendedCapabilities> </ows:OperationsMetadata> <sos:Filter_Capabilities> <ogc:Spatial_Capabilities> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:Envelope</ogc:GeometryOperand> <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand> </ogc:GeometryOperands> <ogc:SpatialOperators> <ogc:SpatialOperator name="Overlaps"> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand> </ogc:GeometryOperands> </ogc:SpatialOperator> <ogc:SpatialOperator name="Intersects"> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand> </ogc:GeometryOperands> </ogc:SpatialOperator> <ogc:SpatialOperator name="Contains"> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand> </ogc:GeometryOperands> </ogc:SpatialOperator> <ogc:SpatialOperator name="BBOX"> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:Envelope</ogc:GeometryOperand> </ogc:GeometryOperands> </ogc:SpatialOperator> </ogc:SpatialOperators> </ogc:Spatial_Capabilities> <ogc:Temporal_Capabilities> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> <ogc:TemporalOperators> <ogc:TemporalOperator name="TM_Before"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_After"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Begins"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Ends"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_EndedBy"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_BegunBy"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_During"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Equals"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Contains"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Overlaps"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_Meets"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_MetBy"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> <ogc:TemporalOperator name="TM_OverlappedBy"> <ogc:TemporalOperands> <ogc:TemporalOperand>gml:TimeInstant</ogc:TemporalOperand> <ogc:TemporalOperand>gml:TimePeriod</ogc:TemporalOperand> </ogc:TemporalOperands> </ogc:TemporalOperator> </ogc:TemporalOperators> </ogc:Temporal_Capabilities> <ogc:Scalar_Capabilities> <ogc:ComparisonOperators> <ogc:ComparisonOperator>EqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>NotEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>LessThan</ogc:ComparisonOperator> <ogc:ComparisonOperator>GreaterThan</ogc:ComparisonOperator> <ogc:ComparisonOperator>LessThanEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>GreaterThanEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>Like</ogc:ComparisonOperator> <ogc:ComparisonOperator>Between</ogc:ComparisonOperator> </ogc:ComparisonOperators> </ogc:Scalar_Capabilities> <ogc:Id_Capabilities> <ogc:FID/> <ogc:EID/> </ogc:Id_Capabilities> </sos:Filter_Capabilities> <sos:Contents> <sos:ObservationOfferingList> <sos:ObservationOffering gml:id="urn_ioos_network_glos_all"> <gml:name>urn:ioos:network:glos:all</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>41.983 -91.929</gml:lowerCorner> <gml:upperCorner>47.279 -83.599</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-19T17:00:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:40:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:network:glos:all"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/relative_humidity"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45027"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45028"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.81m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45161"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45163"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:GVSU1"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45013"> <gml:name>urn:ioos:station:us.glos:45013</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>43.098 -87.85</gml:lowerCorner> <gml:upperCorner>43.098 -87.85</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-19T23:30:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:00:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45013"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/relative_humidity"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45013(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45014"> <gml:name>urn:ioos:station:us.glos:45014</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>44.795 -87.759</gml:lowerCorner> <gml:upperCorner>44.795 -87.759</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-19T19:00:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:30:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45014"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/relative_humidity"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45014(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45022"> <gml:name>urn:ioos:station:us.glos:45022</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>45.403 -85.088</gml:lowerCorner> <gml:upperCorner>45.403 -85.088</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T22:10:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:40:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45022"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45022(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45023"> <gml:name>urn:ioos:station:us.glos:45023</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>47.279 -88.611</gml:lowerCorner> <gml:upperCorner>47.279 -88.611</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-26T18:10:00.000Z</gml:beginPosition> <gml:endPosition>2013-08-26T18:10:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45023"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45023(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45024"> <gml:name>urn:ioos:station:us.glos:45024</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>43.977 -86.56</gml:lowerCorner> <gml:upperCorner>43.977 -86.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-19T17:00:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:50:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45024"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45024(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45025"> <gml:name>urn:ioos:station:us.glos:45025</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>46.95 -88.409</gml:lowerCorner> <gml:upperCorner>46.95 -88.409</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T22:10:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:10:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45025"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45025(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45026"> <gml:name>urn:ioos:station:us.glos:45026</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>41.983 -86.617</gml:lowerCorner> <gml:upperCorner>41.983 -86.617</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T22:20:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:40:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45026"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45026(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45027"> <gml:name>urn:ioos:station:us.glos:45027</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>46.864 -91.929</gml:lowerCorner> <gml:upperCorner>46.864 -91.929</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T21:10:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:10:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45027"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45027"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45028"> <gml:name>urn:ioos:station:us.glos:45028</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>46.812 -91.835</gml:lowerCorner> <gml:upperCorner>46.812 -91.835</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T21:20:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:20:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45028"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45028"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45029"> <gml:name>urn:ioos:station:us.glos:45029</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>42.801 -86.264</gml:lowerCorner> <gml:upperCorner>42.801 -86.264</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T22:20:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:30:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45029"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-10.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-17.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-18.288m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-20.116m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-29.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-32.6m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45029(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45161"> <gml:name>urn:ioos:station:us.glos:45161</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>43.179 -86.336</gml:lowerCorner> <gml:upperCorner>43.179 -86.336</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-19T19:55:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T10:55:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45161"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45161"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_45163"> <gml:name>urn:ioos:station:us.glos:45163</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>43.988 -83.599</gml:lowerCorner> <gml:upperCorner>43.988 -83.599</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-20T04:55:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T11:55:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:45163"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:45163"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_GVSU1"> <gml:name>urn:ioos:station:us.glos:GVSU1</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>43.24 -86.28</gml:lowerCorner> <gml:upperCorner>43.24 -86.28</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T04:00:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-19T12:00:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:GVSU1"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/relative_humidity"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:GVSU1"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="urn_ioos_station_us.glos_UMBIO"> <gml:name>urn:ioos:station:us.glos:UMBIO</gml:name> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>45.57 -84.67</gml:lowerCorner> <gml:upperCorner>45.57 -84.67</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:time> <gml:TimePeriod xsi:type="gml:TimePeriodType"> <gml:beginPosition>2013-08-21T22:30:00.000Z</gml:beginPosition> <gml:endPosition>2013-09-01T03:00:00.000Z</gml:endPosition> </gml:TimePeriod> </sos:time> <sos:procedure xlink:href="urn:ioos:station:us.glos:UMBIO"/> <sos:observedProperty xlink:href="NONE"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/dew_point_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wave_significant_height"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_surface_wind_wave_period"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_from_direction"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed"/> <sos:observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/wind_speed_of_gust"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-1.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-10.668m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-11.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-11.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.496m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.53m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-12.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-13.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-13.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-14.325m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-15.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-15.24m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.1m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.459m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-16.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-17.96m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-19.5m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-2.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-20.68m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-21.9m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-22.8m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-23.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-23.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-26.2m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-27.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-3.048m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-3.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-31.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.267m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-4.37m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-5.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-5.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-6.705m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-7.09m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-7.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.4m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-8.839m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.0m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.7m)"/> <sos:featureOfInterest xlink:href="urn:ioos:station:us.glos:UMBIO(height-9.81m)"/> <sos:responseFormat>application/zip</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:responseFormat>text/xml;subtype="om/1.0.0/profiles/ioos_sos/1.0"</sos:responseFormat> <sos:responseMode>inline</sos:responseMode> <sos:responseMode>resultTemplate</sos:responseMode> </sos:ObservationOffering> </sos:ObservationOfferingList> </sos:Contents> </sos:Capabilities>����������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_52n_getobservation_wml2_response.xml������������������������������0000664�0000000�0000000�00000007463�13217064120�0026063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:GetObservationResponse xmlns:sos="http://www.opengis.net/sos/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:om="http://www.opengis.net/om/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wml2="http://www.opengis.net/waterml/2.0" xsi:schemaLocation="http://www.opengis.net/waterml/2.0 http://schemas.opengis.net/waterml/2.0/waterml2.xsd http://www.opengis.net/sos/2.0 http://schemas.opengis.net/sos/2.0/sosGetObservation.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd http://www.opengis.net/gmlcov/1.0 http://schemas.opengis.net/gmlcov/1.0/gmlcovAll.xsd wml2dr http://schemas.opengis.net/waterml/2.0/domain-range-informative/timeseries-domain-range.xsd http://www.opengis.net/om/2.0 http://schemas.opengis.net/om/2.0/observation.xsd"> <sos:observationData> <om:OM_Observation gml:id="o_9556E2084893FEC9C6F407458B91F194C86359D6"> <om:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime_1"> <gml:beginPosition>2014-07-01T00:01:42.000Z</gml:beginPosition> <gml:endPosition>2014-07-01T01:16:41.000Z</gml:endPosition> </gml:TimePeriod> </om:phenomenonTime> <om:resultTime> <gml:TimeInstant gml:id="ti_C597E726F2C23BD5C20800061BCDFD0442EF6E44"> <gml:timePosition>2014-07-01T00:01:42.000Z</gml:timePosition> </gml:TimeInstant> </om:resultTime> <om:procedure xlink:href="http://geoviqua.dev.52north.org/procedures/WXT520"/> <om:observedProperty xlink:href="http://geoviqua.dev.52north.org/properties/AirTemperature"/> <om:featureOfInterest xlink:href="http://geoviqua.dev.52north.org/stations/Vaisala-WXT520" xlink:title="Vaisala_WXT520"/> <om:result> <wml2:MeasurementTimeseries gml:id="timeseries.1"> <wml2:metadata> <wml2:TimeseriesMetadata> <wml2:temporalExtent xlink:href="#phenomenonTime_1"/> </wml2:TimeseriesMetadata> </wml2:metadata> <wml2:defaultPointMetadata> <wml2:DefaultTVPMeasurementMetadata> <wml2:uom code="degC"/> <wml2:interpolationType xlink:href="http://www.opengis.net/def/timeseriesType/WaterML/2.0/continuous" xlink:title="Instantaneous"/> </wml2:DefaultTVPMeasurementMetadata> </wml2:defaultPointMetadata> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T00:01:42.000Z</wml2:time> <wml2:value>12.2</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T00:16:42.000Z</wml2:time> <wml2:value>12.3</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T00:31:42.000Z</wml2:time> <wml2:value>12.0</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T00:46:42.000Z</wml2:time> <wml2:value>11.9</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T01:01:42.000Z</wml2:time> <wml2:value>12.1</wml2:value> </wml2:MeasurementTVP> </wml2:point> <wml2:point> <wml2:MeasurementTVP> <wml2:time>2014-07-01T01:16:41.000Z</wml2:time> <wml2:value>12.5</wml2:value> </wml2:MeasurementTVP> </wml2:point> </wml2:MeasurementTimeseries> </om:result> </om:OM_Observation> </sos:observationData> </sos:GetObservationResponse> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_ncSOS_getcapabilities.xml�����������������������������������������0000664�0000000�0000000�00000016413�13217064120�0023656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:Capabilities version="1.0.0" xmlns:gml="http://www.opengis.net/gml" xmlns:om="http://www.opengis.net/om/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:sos="http://www.opengis.net/sos/1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosAll.xsd"> <ows:ServiceIdentification> <ows:Title>Slocum Glider Dataset</ows:Title> <ows:Abstract>Institute of Marine &amp; Coastal Sciences, Rutgers University</ows:Abstract> <ows:Keywords> <ows:Keyword/> </ows:Keywords> <ows:ServiceType codeSpace="http://opengeospatial.net">OGC:SOS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>This data may be redistributed and used without restriction.</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>Observational data from a profiling glider</ows:ProviderName> <ows:ProviderSite xlink:href="http://marine.rutgers.edu/cool/auvs"/> <ows:ServiceContact> <ows:IndividualName/> <ows:ContactInfo> <ows:Phone> <ows:Voice/> </ows:Phone> <ows:Address> <ows:DeliveryPoint/> <ows:City/> <ows:AdministrativeArea/> <ows:PostalCode/> <ows:Country/> <ows:ElectronicMailAddress/> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://tds.gliders.ioos.us/thredds/sos/rutgers_otn200-20130910T1551_TimeUV.ncml"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="Sections"> <ows:AllowedValues> <ows:Value>ServiceIdentification</ows:Value> <ows:Value>ServiceProvider</ows:Value> <ows:Value>OperationsMetadata</ows:Value> <ows:Value>Contents</ows:Value> <ows:Value>All</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetObservation"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://tds.gliders.ioos.us/thredds/sos/rutgers_otn200-20130910T1551_TimeUV.ncml"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="offering" use="optional"/> <ows:Parameter name="observedProperty" use="required"> <ows:AllowedValues> <ows:Value>u</ows:Value> <ows:Value>u_qc</ows:Value> <ows:Value>v</ows:Value> <ows:Value>v_qc</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeSensor"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://tds.gliders.ioos.us/thredds/sos/rutgers_otn200-20130910T1551_TimeUV.ncml"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="outputFormat"> <ows:AllowedValues> <!-- Specify the flavor of SML described by these templates --> <ows:Value>text/xml;subtype="sensorML/1.0.1/profiles/ioos_sos/1.0"</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedure" use="required"> <ows:AllowedValues> <ows:Value>urn:ioos:network:edu.rutgers.marine:all</ows:Value> <ows:Value>urn:ioos:station:edu.rutgers.marine:unknown</ows:Value> <ows:Value>urn:ioos:sensor:edu.rutgers.marine:unknown:u</ows:Value> <ows:Value>urn:ioos:sensor:edu.rutgers.marine:unknown:u_qc</ows:Value> <ows:Value>urn:ioos:sensor:edu.rutgers.marine:unknown:v</ows:Value> <ows:Value>urn:ioos:sensor:edu.rutgers.marine:unknown:v_qc</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Parameter name="service" use="required"> <ows:AllowedValues> <ows:Value>SOS</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="version" use="required"> <ows:AllowedValues> <ows:Value>1.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:OperationsMetadata> <sos:Contents> <sos:ObservationOfferingList> <sos:ObservationOffering gml:id="network-all"> <gml:description>All stations in the netCDF dataset.</gml:description> <gml:name>urn:ioos:network:edu.rutgers.marine:all</gml:name> <gml:srsName>EPSG:4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>-90.0 NaN</gml:lowerCorner> <gml:upperCorner>90.0 128.0</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <sos:procedure xlink:href="urn:ioos:network:edu.rutgers.marine:all"/> <sos:procedure xlink:href="urn:ioos:station:edu.rutgers.marine:unknown"/> <sos:observedProperty xlink:href="u"/> <sos:observedProperty xlink:href="u_qc"/> <sos:observedProperty xlink:href="v"/> <sos:observedProperty xlink:href="v_qc"/> <sos:featureOfInterest xlink:href="urn:ioos:station:edu.rutgers.marine:unknown"/> <sos:responseFormat>text/xml; subtype="om/1.0.0"</sos:responseFormat> <sos:resultModel>om:ObservationCollection</sos:resultModel> <sos:responseMode>inline</sos:responseMode> </sos:ObservationOffering> <sos:ObservationOffering gml:id="unknown"> <gml:name>urn:ioos:station:edu.rutgers.marine:unknown</gml:name> <gml:srsName>EPSG:4326</gml:srsName> <gml:boundedBy/> <sos:Time/> <sos:featureOfInterest xlink:href="urn:ioos:station:edu.rutgers.marine:unknown"/> <sos:observedProperty xlink:href="u"/> <sos:observedProperty xlink:href="u_qc"/> <sos:observedProperty xlink:href="v"/> <sos:observedProperty xlink:href="v_qc"/> <sos:procedure xlink:href="urn:ioos:station:edu.rutgers.marine:unknown"/> <sos:responseFormat>text/xml;subtype="om/1.0.0"</sos:responseFormat> <sos:resultModel>om:ObservationCollection</sos:resultModel> <sos:responseMode>inline</sos:responseMode> </sos:ObservationOffering> </sos:ObservationOfferingList> </sos:Contents> </sos:Capabilities> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_ndbc_getcapabilities.xml������������������������������������������0000664�0000000�0000000�00005522745�13217064120�0023616�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0"?> <Capabilities xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:swe="http://www.opengis.net/swe/1.0.1" xmlns:om="http://www.opengis.net/om/1.0" xmlns="http://www.opengis.net/sos/1.0" xmlns:sos="http://www.opengis.net/sos/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:ogc="http://www.opengis.net/ogc" xmlns:tml="http://www.opengis.net/tml" xmlns:sml="http://www.opengis.net/sensorML/1.0.1" xmlns:myorg="http://www.myorg.org/features" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/sos/1.0 http://schemas.opengis.net/sos/1.0.0/sosAll.xsd" version="1.0.0"> <ows:ServiceIdentification> <ows:Title>National Data Buoy Center SOS</ows:Title> <ows:Abstract>National Data Buoy Center SOS</ows:Abstract> <ows:Keywords> <ows:Keyword>Weather</ows:Keyword> <ows:Keyword>Ocean Currents</ows:Keyword> <ows:Keyword>Air Temperature</ows:Keyword> <ows:Keyword>Water Temperature</ows:Keyword> <ows:Keyword>Conductivity</ows:Keyword> <ows:Keyword>Salinity</ows:Keyword> <ows:Keyword>Barometric Pressure</ows:Keyword> <ows:Keyword>Water Level</ows:Keyword> <ows:Keyword>Waves</ows:Keyword> <ows:Keyword>Winds</ows:Keyword> <ows:Keyword>NDBC</ows:Keyword> </ows:Keywords> <ows:ServiceType codeSpace="http://opengeospatial.net">OGC:SOS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>NONE</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>National Data Buoy Center</ows:ProviderName> <ows:ProviderSite xlink:href="http://sdf.ndbc.noaa.gov/"/> <ows:ServiceContact> <ows:IndividualName>Webmaster</ows:IndividualName> <ows:ContactInfo> <ows:Phone> <ows:Voice>228-688-2805</ows:Voice> </ows:Phone> <ows:Address> <ows:DeliveryPoint>Bldg. 3205</ows:DeliveryPoint> <ows:City>Stennis Space Center</ows:City> <ows:AdministrativeArea>MS</ows:AdministrativeArea> <ows:PostalCode>39529</ows:PostalCode> <ows:Country>USA</ows:Country> <ows:ElectronicMailAddress>webmaster.ndbc@noaa.gov</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> <ows:Post xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="Sections"> <ows:AllowedValues> <ows:Value>ServiceIdentification</ows:Value> <ows:Value>ServiceProvider</ows:Value> <ows:Value>OperationsMetadata</ows:Value> <ows:Value>Contents</ows:Value> <ows:Value>All</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetObservation"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> <ows:Post xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="observedProperty"> <ows:AllowedValues> <ows:Value>air_temperature</ows:Value> <ows:Value>air_pressure_at_sea_level</ows:Value> <ows:Value>sea_water_electrical_conductivity</ows:Value> <ows:Value>currents</ows:Value> <ows:Value>sea_water_salinity</ows:Value> <ows:Value>sea_floor_depth_below_sea_surface</ows:Value> <ows:Value>sea_water_temperature</ows:Value> <ows:Value>waves</ows:Value> <ows:Value>winds</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeSensor"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> <ows:Post xlink:href="http://sdf.ndbc.noaa.gov/sos/server.php"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="outputFormat"> <ows:AllowedValues> <ows:Value>text/xml;subtype="sensorML/1.0.1"</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Parameter name="service"> <ows:AllowedValues> <ows:Value>SOS</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="version"> <ows:AllowedValues> <ows:Value>1.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:OperationsMetadata> <Contents> <ObservationOfferingList> <ObservationOffering gml:id="network-all"> <gml:description>All stations on the NDBC SOS server</gml:description> <gml:name>urn:ioos:network:noaa.nws.ndbc:all</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-77.466 -179.995</gml:lowerCorner> <gml:upperCorner>80.81 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2006-07-27T21:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"/> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21401"/> <procedure xlink:href="urn:ioos:station:wmo:21413"/> <procedure xlink:href="urn:ioos:station:wmo:21414"/> <procedure xlink:href="urn:ioos:station:wmo:21415"/> <procedure xlink:href="urn:ioos:station:wmo:21416"/> <procedure xlink:href="urn:ioos:station:wmo:21417"/> <procedure xlink:href="urn:ioos:station:wmo:21418"/> <procedure xlink:href="urn:ioos:station:wmo:21419"/> <procedure xlink:href="urn:ioos:station:wmo:23020"/> <procedure xlink:href="urn:ioos:station:wmo:23227"/> <procedure xlink:href="urn:ioos:station:wmo:23228"/> <procedure xlink:href="urn:ioos:station:wmo:23401"/> <procedure xlink:href="urn:ioos:station:wmo:28900"/> <procedure xlink:href="urn:ioos:station:wmo:28901"/> <procedure xlink:href="urn:ioos:station:wmo:28902"/> <procedure xlink:href="urn:ioos:station:wmo:28903"/> <procedure xlink:href="urn:ioos:station:wmo:28904"/> <procedure xlink:href="urn:ioos:station:wmo:28905"/> <procedure xlink:href="urn:ioos:station:wmo:32012"/> <procedure xlink:href="urn:ioos:station:wmo:32303"/> <procedure xlink:href="urn:ioos:station:wmo:32304"/> <procedure xlink:href="urn:ioos:station:wmo:32305"/> <procedure xlink:href="urn:ioos:station:wmo:32315"/> <procedure xlink:href="urn:ioos:station:wmo:32316"/> <procedure xlink:href="urn:ioos:station:wmo:32317"/> <procedure xlink:href="urn:ioos:station:wmo:32318"/> <procedure xlink:href="urn:ioos:station:wmo:32319"/> <procedure xlink:href="urn:ioos:station:wmo:32320"/> <procedure xlink:href="urn:ioos:station:wmo:32321"/> <procedure xlink:href="urn:ioos:station:wmo:32322"/> <procedure xlink:href="urn:ioos:station:wmo:32323"/> <procedure xlink:href="urn:ioos:station:wmo:32401"/> <procedure xlink:href="urn:ioos:station:wmo:32411"/> <procedure xlink:href="urn:ioos:station:wmo:32412"/> <procedure xlink:href="urn:ioos:station:wmo:32413"/> <procedure xlink:href="urn:ioos:station:wmo:32487"/> <procedure xlink:href="urn:ioos:station:wmo:32488"/> <procedure xlink:href="urn:ioos:station:wmo:32st0"/> <procedure xlink:href="urn:ioos:station:wmo:41001"/> <procedure xlink:href="urn:ioos:station:wmo:41002"/> <procedure xlink:href="urn:ioos:station:wmo:41004"/> <procedure xlink:href="urn:ioos:station:wmo:41008"/> <procedure xlink:href="urn:ioos:station:wmo:41009"/> <procedure xlink:href="urn:ioos:station:wmo:41010"/> <procedure xlink:href="urn:ioos:station:wmo:41012"/> <procedure xlink:href="urn:ioos:station:wmo:41013"/> <procedure xlink:href="urn:ioos:station:wmo:41024"/> <procedure xlink:href="urn:ioos:station:wmo:41025"/> <procedure xlink:href="urn:ioos:station:wmo:41029"/> <procedure xlink:href="urn:ioos:station:wmo:41030"/> <procedure xlink:href="urn:ioos:station:wmo:41033"/> <procedure xlink:href="urn:ioos:station:wmo:41035"/> <procedure xlink:href="urn:ioos:station:wmo:41036"/> <procedure xlink:href="urn:ioos:station:wmo:41037"/> <procedure xlink:href="urn:ioos:station:wmo:41038"/> <procedure xlink:href="urn:ioos:station:wmo:41040"/> <procedure xlink:href="urn:ioos:station:wmo:41041"/> <procedure xlink:href="urn:ioos:station:wmo:41043"/> <procedure xlink:href="urn:ioos:station:wmo:41044"/> <procedure xlink:href="urn:ioos:station:wmo:41046"/> <procedure xlink:href="urn:ioos:station:wmo:41047"/> <procedure xlink:href="urn:ioos:station:wmo:41048"/> <procedure xlink:href="urn:ioos:station:wmo:41049"/> <procedure xlink:href="urn:ioos:station:wmo:41052"/> <procedure xlink:href="urn:ioos:station:wmo:41053"/> <procedure xlink:href="urn:ioos:station:wmo:41060"/> <procedure xlink:href="urn:ioos:station:wmo:41109"/> <procedure xlink:href="urn:ioos:station:wmo:41110"/> <procedure xlink:href="urn:ioos:station:wmo:41112"/> <procedure xlink:href="urn:ioos:station:wmo:41113"/> <procedure xlink:href="urn:ioos:station:wmo:41114"/> <procedure xlink:href="urn:ioos:station:wmo:41115"/> <procedure xlink:href="urn:ioos:station:wmo:41140"/> <procedure xlink:href="urn:ioos:station:wmo:41141"/> <procedure xlink:href="urn:ioos:station:wmo:41193"/> <procedure xlink:href="urn:ioos:station:wmo:41194"/> <procedure xlink:href="urn:ioos:station:wmo:41420"/> <procedure xlink:href="urn:ioos:station:wmo:41421"/> <procedure xlink:href="urn:ioos:station:wmo:41424"/> <procedure xlink:href="urn:ioos:station:wmo:41nt0"/> <procedure xlink:href="urn:ioos:station:wmo:41x01"/> <procedure xlink:href="urn:ioos:station:wmo:42001"/> <procedure xlink:href="urn:ioos:station:wmo:42002"/> <procedure xlink:href="urn:ioos:station:wmo:42003"/> <procedure xlink:href="urn:ioos:station:wmo:42007"/> <procedure xlink:href="urn:ioos:station:wmo:42012"/> <procedure xlink:href="urn:ioos:station:wmo:42013"/> <procedure xlink:href="urn:ioos:station:wmo:42019"/> <procedure xlink:href="urn:ioos:station:wmo:42020"/> <procedure xlink:href="urn:ioos:station:wmo:42021"/> <procedure xlink:href="urn:ioos:station:wmo:42022"/> <procedure xlink:href="urn:ioos:station:wmo:42023"/> <procedure xlink:href="urn:ioos:station:wmo:42024"/> <procedure xlink:href="urn:ioos:station:wmo:42035"/> <procedure xlink:href="urn:ioos:station:wmo:42036"/> <procedure xlink:href="urn:ioos:station:wmo:42039"/> <procedure xlink:href="urn:ioos:station:wmo:42040"/> <procedure xlink:href="urn:ioos:station:wmo:42043"/> <procedure xlink:href="urn:ioos:station:wmo:42044"/> <procedure xlink:href="urn:ioos:station:wmo:42045"/> <procedure xlink:href="urn:ioos:station:wmo:42046"/> <procedure xlink:href="urn:ioos:station:wmo:42047"/> <procedure xlink:href="urn:ioos:station:wmo:42048"/> <procedure xlink:href="urn:ioos:station:wmo:42049"/> <procedure xlink:href="urn:ioos:station:wmo:42050"/> <procedure xlink:href="urn:ioos:station:wmo:42055"/> <procedure xlink:href="urn:ioos:station:wmo:42056"/> <procedure xlink:href="urn:ioos:station:wmo:42057"/> <procedure xlink:href="urn:ioos:station:wmo:42058"/> <procedure xlink:href="urn:ioos:station:wmo:42059"/> <procedure xlink:href="urn:ioos:station:wmo:42060"/> <procedure xlink:href="urn:ioos:station:wmo:42065"/> <procedure xlink:href="urn:ioos:station:wmo:42067"/> <procedure xlink:href="urn:ioos:station:wmo:42080"/> <procedure xlink:href="urn:ioos:station:wmo:42085"/> <procedure xlink:href="urn:ioos:station:wmo:42099"/> <procedure xlink:href="urn:ioos:station:wmo:42360"/> <procedure xlink:href="urn:ioos:station:wmo:42361"/> <procedure xlink:href="urn:ioos:station:wmo:42362"/> <procedure xlink:href="urn:ioos:station:wmo:42363"/> <procedure xlink:href="urn:ioos:station:wmo:42364"/> <procedure xlink:href="urn:ioos:station:wmo:42365"/> <procedure xlink:href="urn:ioos:station:wmo:42366"/> <procedure xlink:href="urn:ioos:station:wmo:42367"/> <procedure xlink:href="urn:ioos:station:wmo:42368"/> <procedure xlink:href="urn:ioos:station:wmo:42369"/> <procedure xlink:href="urn:ioos:station:wmo:42370"/> <procedure xlink:href="urn:ioos:station:wmo:42372"/> <procedure xlink:href="urn:ioos:station:wmo:42373"/> <procedure xlink:href="urn:ioos:station:wmo:42374"/> <procedure xlink:href="urn:ioos:station:wmo:42375"/> <procedure xlink:href="urn:ioos:station:wmo:42376"/> <procedure xlink:href="urn:ioos:station:wmo:42377"/> <procedure xlink:href="urn:ioos:station:wmo:42379"/> <procedure xlink:href="urn:ioos:station:wmo:42380"/> <procedure xlink:href="urn:ioos:station:wmo:42381"/> <procedure xlink:href="urn:ioos:station:wmo:42382"/> <procedure xlink:href="urn:ioos:station:wmo:42383"/> <procedure xlink:href="urn:ioos:station:wmo:42384"/> <procedure xlink:href="urn:ioos:station:wmo:42385"/> <procedure xlink:href="urn:ioos:station:wmo:42386"/> <procedure xlink:href="urn:ioos:station:wmo:42387"/> <procedure xlink:href="urn:ioos:station:wmo:42388"/> <procedure xlink:href="urn:ioos:station:wmo:42390"/> <procedure xlink:href="urn:ioos:station:wmo:42391"/> <procedure xlink:href="urn:ioos:station:wmo:42393"/> <procedure xlink:href="urn:ioos:station:wmo:42407"/> <procedure xlink:href="urn:ioos:station:wmo:42408"/> <procedure xlink:href="urn:ioos:station:wmo:42409"/> <procedure xlink:href="urn:ioos:station:wmo:42861"/> <procedure xlink:href="urn:ioos:station:wmo:42862"/> <procedure xlink:href="urn:ioos:station:wmo:42863"/> <procedure xlink:href="urn:ioos:station:wmo:42864"/> <procedure xlink:href="urn:ioos:station:wmo:42865"/> <procedure xlink:href="urn:ioos:station:wmo:42866"/> <procedure xlink:href="urn:ioos:station:wmo:42867"/> <procedure xlink:href="urn:ioos:station:wmo:42868"/> <procedure xlink:href="urn:ioos:station:wmo:42869"/> <procedure xlink:href="urn:ioos:station:wmo:42870"/> <procedure xlink:href="urn:ioos:station:wmo:42871"/> <procedure xlink:href="urn:ioos:station:wmo:42872"/> <procedure xlink:href="urn:ioos:station:wmo:42873"/> <procedure xlink:href="urn:ioos:station:wmo:42875"/> <procedure xlink:href="urn:ioos:station:wmo:42876"/> <procedure xlink:href="urn:ioos:station:wmo:42877"/> <procedure xlink:href="urn:ioos:station:wmo:42878"/> <procedure xlink:href="urn:ioos:station:wmo:42879"/> <procedure xlink:href="urn:ioos:station:wmo:42881"/> <procedure xlink:href="urn:ioos:station:wmo:42882"/> <procedure xlink:href="urn:ioos:station:wmo:42885"/> <procedure xlink:href="urn:ioos:station:wmo:42886"/> <procedure xlink:href="urn:ioos:station:wmo:42887"/> <procedure xlink:href="urn:ioos:station:wmo:42889"/> <procedure xlink:href="urn:ioos:station:wmo:42890"/> <procedure xlink:href="urn:ioos:station:wmo:42892"/> <procedure xlink:href="urn:ioos:station:wmo:42894"/> <procedure xlink:href="urn:ioos:station:wmo:42897"/> <procedure xlink:href="urn:ioos:station:wmo:42899"/> <procedure xlink:href="urn:ioos:station:wmo:42900"/> <procedure xlink:href="urn:ioos:station:wmo:42901"/> <procedure xlink:href="urn:ioos:station:wmo:42902"/> <procedure xlink:href="urn:ioos:station:wmo:42903"/> <procedure xlink:href="urn:ioos:station:wmo:42904"/> <procedure xlink:href="urn:ioos:station:wmo:42905"/> <procedure xlink:href="urn:ioos:station:wmo:42906"/> <procedure xlink:href="urn:ioos:station:wmo:42908"/> <procedure xlink:href="urn:ioos:station:wmo:42909"/> <procedure xlink:href="urn:ioos:station:wmo:42910"/> <procedure xlink:href="urn:ioos:station:wmo:42911"/> <procedure xlink:href="urn:ioos:station:wmo:42912"/> <procedure xlink:href="urn:ioos:station:wmo:42913"/> <procedure xlink:href="urn:ioos:station:wmo:42914"/> <procedure xlink:href="urn:ioos:station:wmo:42915"/> <procedure xlink:href="urn:ioos:station:wmo:42916"/> <procedure xlink:href="urn:ioos:station:wmo:42917"/> <procedure xlink:href="urn:ioos:station:wmo:42918"/> <procedure xlink:href="urn:ioos:station:wmo:42919"/> <procedure xlink:href="urn:ioos:station:wmo:42921"/> <procedure xlink:href="urn:ioos:station:wmo:42922"/> <procedure xlink:href="urn:ioos:station:wmo:42923"/> <procedure xlink:href="urn:ioos:station:wmo:42924"/> <procedure xlink:href="urn:ioos:station:wmo:42925"/> <procedure xlink:href="urn:ioos:station:wmo:42926"/> <procedure xlink:href="urn:ioos:station:wmo:42927"/> <procedure xlink:href="urn:ioos:station:wmo:43001"/> <procedure xlink:href="urn:ioos:station:wmo:43301"/> <procedure xlink:href="urn:ioos:station:wmo:43412"/> <procedure xlink:href="urn:ioos:station:wmo:43413"/> <procedure xlink:href="urn:ioos:station:wmo:44004"/> <procedure xlink:href="urn:ioos:station:wmo:44005"/> <procedure xlink:href="urn:ioos:station:wmo:44007"/> <procedure xlink:href="urn:ioos:station:wmo:44008"/> <procedure xlink:href="urn:ioos:station:wmo:44009"/> <procedure xlink:href="urn:ioos:station:wmo:44011"/> <procedure xlink:href="urn:ioos:station:wmo:44013"/> <procedure xlink:href="urn:ioos:station:wmo:44014"/> <procedure xlink:href="urn:ioos:station:wmo:44017"/> <procedure xlink:href="urn:ioos:station:wmo:44018"/> <procedure xlink:href="urn:ioos:station:wmo:44020"/> <procedure xlink:href="urn:ioos:station:wmo:44022"/> <procedure xlink:href="urn:ioos:station:wmo:44024"/> <procedure xlink:href="urn:ioos:station:wmo:44025"/> <procedure xlink:href="urn:ioos:station:wmo:44027"/> <procedure xlink:href="urn:ioos:station:wmo:44029"/> <procedure xlink:href="urn:ioos:station:wmo:44030"/> <procedure xlink:href="urn:ioos:station:wmo:44031"/> <procedure xlink:href="urn:ioos:station:wmo:44032"/> <procedure xlink:href="urn:ioos:station:wmo:44033"/> <procedure xlink:href="urn:ioos:station:wmo:44034"/> <procedure xlink:href="urn:ioos:station:wmo:44035"/> <procedure xlink:href="urn:ioos:station:wmo:44037"/> <procedure xlink:href="urn:ioos:station:wmo:44038"/> <procedure xlink:href="urn:ioos:station:wmo:44039"/> <procedure xlink:href="urn:ioos:station:wmo:44040"/> <procedure xlink:href="urn:ioos:station:wmo:44041"/> <procedure xlink:href="urn:ioos:station:wmo:44042"/> <procedure xlink:href="urn:ioos:station:wmo:44043"/> <procedure xlink:href="urn:ioos:station:wmo:44054"/> <procedure xlink:href="urn:ioos:station:wmo:44055"/> <procedure xlink:href="urn:ioos:station:wmo:44056"/> <procedure xlink:href="urn:ioos:station:wmo:44057"/> <procedure xlink:href="urn:ioos:station:wmo:44058"/> <procedure xlink:href="urn:ioos:station:wmo:44059"/> <procedure xlink:href="urn:ioos:station:wmo:44060"/> <procedure xlink:href="urn:ioos:station:wmo:44061"/> <procedure xlink:href="urn:ioos:station:wmo:44062"/> <procedure xlink:href="urn:ioos:station:wmo:44063"/> <procedure xlink:href="urn:ioos:station:wmo:44064"/> <procedure xlink:href="urn:ioos:station:wmo:44065"/> <procedure xlink:href="urn:ioos:station:wmo:44066"/> <procedure xlink:href="urn:ioos:station:wmo:44067"/> <procedure xlink:href="urn:ioos:station:wmo:44070"/> <procedure xlink:href="urn:ioos:station:wmo:44095"/> <procedure xlink:href="urn:ioos:station:wmo:44096"/> <procedure xlink:href="urn:ioos:station:wmo:44097"/> <procedure xlink:href="urn:ioos:station:wmo:44098"/> <procedure xlink:href="urn:ioos:station:wmo:44099"/> <procedure xlink:href="urn:ioos:station:wmo:44100"/> <procedure xlink:href="urn:ioos:station:wmo:44172"/> <procedure xlink:href="urn:ioos:station:wmo:44235"/> <procedure xlink:href="urn:ioos:station:wmo:44401"/> <procedure xlink:href="urn:ioos:station:wmo:44402"/> <procedure xlink:href="urn:ioos:station:wmo:45001"/> <procedure xlink:href="urn:ioos:station:wmo:45002"/> <procedure xlink:href="urn:ioos:station:wmo:45003"/> <procedure xlink:href="urn:ioos:station:wmo:45004"/> <procedure xlink:href="urn:ioos:station:wmo:45005"/> <procedure xlink:href="urn:ioos:station:wmo:45006"/> <procedure xlink:href="urn:ioos:station:wmo:45007"/> <procedure xlink:href="urn:ioos:station:wmo:45008"/> <procedure xlink:href="urn:ioos:station:wmo:45012"/> <procedure xlink:href="urn:ioos:station:wmo:45015"/> <procedure xlink:href="urn:ioos:station:wmo:45016"/> <procedure xlink:href="urn:ioos:station:wmo:45017"/> <procedure xlink:href="urn:ioos:station:wmo:45018"/> <procedure xlink:href="urn:ioos:station:wmo:45019"/> <procedure xlink:href="urn:ioos:station:wmo:45020"/> <procedure xlink:href="urn:ioos:station:wmo:45021"/> <procedure xlink:href="urn:ioos:station:wmo:45022"/> <procedure xlink:href="urn:ioos:station:wmo:45023"/> <procedure xlink:href="urn:ioos:station:wmo:45024"/> <procedure xlink:href="urn:ioos:station:wmo:45025"/> <procedure xlink:href="urn:ioos:station:wmo:45026"/> <procedure xlink:href="urn:ioos:station:wmo:45027"/> <procedure xlink:href="urn:ioos:station:wmo:45028"/> <procedure xlink:href="urn:ioos:station:wmo:46001"/> <procedure xlink:href="urn:ioos:station:wmo:46002"/> <procedure xlink:href="urn:ioos:station:wmo:46005"/> <procedure xlink:href="urn:ioos:station:wmo:46006"/> <procedure xlink:href="urn:ioos:station:wmo:46011"/> <procedure xlink:href="urn:ioos:station:wmo:46012"/> <procedure xlink:href="urn:ioos:station:wmo:46013"/> <procedure xlink:href="urn:ioos:station:wmo:46014"/> <procedure xlink:href="urn:ioos:station:wmo:46015"/> <procedure xlink:href="urn:ioos:station:wmo:46022"/> <procedure xlink:href="urn:ioos:station:wmo:46023"/> <procedure xlink:href="urn:ioos:station:wmo:46025"/> <procedure xlink:href="urn:ioos:station:wmo:46026"/> <procedure xlink:href="urn:ioos:station:wmo:46027"/> <procedure xlink:href="urn:ioos:station:wmo:46028"/> <procedure xlink:href="urn:ioos:station:wmo:46029"/> <procedure xlink:href="urn:ioos:station:wmo:46035"/> <procedure xlink:href="urn:ioos:station:wmo:46041"/> <procedure xlink:href="urn:ioos:station:wmo:46042"/> <procedure xlink:href="urn:ioos:station:wmo:46047"/> <procedure xlink:href="urn:ioos:station:wmo:46050"/> <procedure xlink:href="urn:ioos:station:wmo:46053"/> <procedure xlink:href="urn:ioos:station:wmo:46054"/> <procedure xlink:href="urn:ioos:station:wmo:46059"/> <procedure xlink:href="urn:ioos:station:wmo:46060"/> <procedure xlink:href="urn:ioos:station:wmo:46061"/> <procedure xlink:href="urn:ioos:station:wmo:46063"/> <procedure xlink:href="urn:ioos:station:wmo:46066"/> <procedure xlink:href="urn:ioos:station:wmo:46069"/> <procedure xlink:href="urn:ioos:station:wmo:46070"/> <procedure xlink:href="urn:ioos:station:wmo:46071"/> <procedure xlink:href="urn:ioos:station:wmo:46072"/> <procedure xlink:href="urn:ioos:station:wmo:46073"/> <procedure xlink:href="urn:ioos:station:wmo:46075"/> <procedure xlink:href="urn:ioos:station:wmo:46076"/> <procedure xlink:href="urn:ioos:station:wmo:46077"/> <procedure xlink:href="urn:ioos:station:wmo:46078"/> <procedure xlink:href="urn:ioos:station:wmo:46080"/> <procedure xlink:href="urn:ioos:station:wmo:46081"/> <procedure xlink:href="urn:ioos:station:wmo:46082"/> <procedure xlink:href="urn:ioos:station:wmo:46083"/> <procedure xlink:href="urn:ioos:station:wmo:46084"/> <procedure xlink:href="urn:ioos:station:wmo:46085"/> <procedure xlink:href="urn:ioos:station:wmo:46086"/> <procedure xlink:href="urn:ioos:station:wmo:46087"/> <procedure xlink:href="urn:ioos:station:wmo:46088"/> <procedure xlink:href="urn:ioos:station:wmo:46089"/> <procedure xlink:href="urn:ioos:station:wmo:46091"/> <procedure xlink:href="urn:ioos:station:wmo:46092"/> <procedure xlink:href="urn:ioos:station:wmo:46093"/> <procedure xlink:href="urn:ioos:station:wmo:46094"/> <procedure xlink:href="urn:ioos:station:wmo:46096"/> <procedure xlink:href="urn:ioos:station:wmo:46105"/> <procedure xlink:href="urn:ioos:station:wmo:46106"/> <procedure xlink:href="urn:ioos:station:wmo:46107"/> <procedure xlink:href="urn:ioos:station:wmo:46108"/> <procedure xlink:href="urn:ioos:station:wmo:46109"/> <procedure xlink:href="urn:ioos:station:wmo:46110"/> <procedure xlink:href="urn:ioos:station:wmo:46111"/> <procedure xlink:href="urn:ioos:station:wmo:46112"/> <procedure xlink:href="urn:ioos:station:wmo:46113"/> <procedure xlink:href="urn:ioos:station:wmo:46114"/> <procedure xlink:href="urn:ioos:station:wmo:46115"/> <procedure xlink:href="urn:ioos:station:wmo:46120"/> <procedure xlink:href="urn:ioos:station:wmo:46121"/> <procedure xlink:href="urn:ioos:station:wmo:46122"/> <procedure xlink:href="urn:ioos:station:wmo:46123"/> <procedure xlink:href="urn:ioos:station:wmo:46124"/> <procedure xlink:href="urn:ioos:station:wmo:46125"/> <procedure xlink:href="urn:ioos:station:wmo:46138"/> <procedure xlink:href="urn:ioos:station:wmo:46139"/> <procedure xlink:href="urn:ioos:station:wmo:46211"/> <procedure xlink:href="urn:ioos:station:wmo:46212"/> <procedure xlink:href="urn:ioos:station:wmo:46213"/> <procedure xlink:href="urn:ioos:station:wmo:46214"/> <procedure xlink:href="urn:ioos:station:wmo:46215"/> <procedure xlink:href="urn:ioos:station:wmo:46216"/> <procedure xlink:href="urn:ioos:station:wmo:46217"/> <procedure xlink:href="urn:ioos:station:wmo:46218"/> <procedure xlink:href="urn:ioos:station:wmo:46219"/> <procedure xlink:href="urn:ioos:station:wmo:46221"/> <procedure xlink:href="urn:ioos:station:wmo:46222"/> <procedure xlink:href="urn:ioos:station:wmo:46223"/> <procedure xlink:href="urn:ioos:station:wmo:46224"/> <procedure xlink:href="urn:ioos:station:wmo:46225"/> <procedure xlink:href="urn:ioos:station:wmo:46229"/> <procedure xlink:href="urn:ioos:station:wmo:46231"/> <procedure xlink:href="urn:ioos:station:wmo:46232"/> <procedure xlink:href="urn:ioos:station:wmo:46235"/> <procedure xlink:href="urn:ioos:station:wmo:46236"/> <procedure xlink:href="urn:ioos:station:wmo:46237"/> <procedure xlink:href="urn:ioos:station:wmo:46238"/> <procedure xlink:href="urn:ioos:station:wmo:46239"/> <procedure xlink:href="urn:ioos:station:wmo:46240"/> <procedure xlink:href="urn:ioos:station:wmo:46241"/> <procedure xlink:href="urn:ioos:station:wmo:46242"/> <procedure xlink:href="urn:ioos:station:wmo:46243"/> <procedure xlink:href="urn:ioos:station:wmo:46244"/> <procedure xlink:href="urn:ioos:station:wmo:46245"/> <procedure xlink:href="urn:ioos:station:wmo:46246"/> <procedure xlink:href="urn:ioos:station:wmo:46247"/> <procedure xlink:href="urn:ioos:station:wmo:46248"/> <procedure xlink:href="urn:ioos:station:wmo:46249"/> <procedure xlink:href="urn:ioos:station:wmo:46250"/> <procedure xlink:href="urn:ioos:station:wmo:46402"/> <procedure xlink:href="urn:ioos:station:wmo:46403"/> <procedure xlink:href="urn:ioos:station:wmo:46404"/> <procedure xlink:href="urn:ioos:station:wmo:46407"/> <procedure xlink:href="urn:ioos:station:wmo:46408"/> <procedure xlink:href="urn:ioos:station:wmo:46409"/> <procedure xlink:href="urn:ioos:station:wmo:46410"/> <procedure xlink:href="urn:ioos:station:wmo:46411"/> <procedure xlink:href="urn:ioos:station:wmo:46412"/> <procedure xlink:href="urn:ioos:station:wmo:46413"/> <procedure xlink:href="urn:ioos:station:wmo:46419"/> <procedure xlink:href="urn:ioos:station:wmo:48211"/> <procedure xlink:href="urn:ioos:station:wmo:48212"/> <procedure xlink:href="urn:ioos:station:wmo:48900"/> <procedure xlink:href="urn:ioos:station:wmo:48901"/> <procedure xlink:href="urn:ioos:station:wmo:48902"/> <procedure xlink:href="urn:ioos:station:wmo:48903"/> <procedure xlink:href="urn:ioos:station:wmo:48904"/> <procedure xlink:href="urn:ioos:station:wmo:48905"/> <procedure xlink:href="urn:ioos:station:wmo:48906"/> <procedure xlink:href="urn:ioos:station:wmo:48907"/> <procedure xlink:href="urn:ioos:station:wmo:48908"/> <procedure xlink:href="urn:ioos:station:wmo:48909"/> <procedure xlink:href="urn:ioos:station:wmo:48910"/> <procedure xlink:href="urn:ioos:station:wmo:48911"/> <procedure xlink:href="urn:ioos:station:wmo:51000"/> <procedure xlink:href="urn:ioos:station:wmo:51001"/> <procedure xlink:href="urn:ioos:station:wmo:51002"/> <procedure xlink:href="urn:ioos:station:wmo:51003"/> <procedure xlink:href="urn:ioos:station:wmo:51004"/> <procedure xlink:href="urn:ioos:station:wmo:51006"/> <procedure xlink:href="urn:ioos:station:wmo:51007"/> <procedure xlink:href="urn:ioos:station:wmo:51008"/> <procedure xlink:href="urn:ioos:station:wmo:51009"/> <procedure xlink:href="urn:ioos:station:wmo:51010"/> <procedure xlink:href="urn:ioos:station:wmo:51011"/> <procedure xlink:href="urn:ioos:station:wmo:51014"/> <procedure xlink:href="urn:ioos:station:wmo:51015"/> <procedure xlink:href="urn:ioos:station:wmo:51016"/> <procedure xlink:href="urn:ioos:station:wmo:51017"/> <procedure xlink:href="urn:ioos:station:wmo:51018"/> <procedure xlink:href="urn:ioos:station:wmo:51019"/> <procedure xlink:href="urn:ioos:station:wmo:51020"/> <procedure xlink:href="urn:ioos:station:wmo:51021"/> <procedure xlink:href="urn:ioos:station:wmo:51022"/> <procedure xlink:href="urn:ioos:station:wmo:51023"/> <procedure xlink:href="urn:ioos:station:wmo:51028"/> <procedure xlink:href="urn:ioos:station:wmo:51100"/> <procedure xlink:href="urn:ioos:station:wmo:51101"/> <procedure xlink:href="urn:ioos:station:wmo:51167"/> <procedure xlink:href="urn:ioos:station:wmo:51169"/> <procedure xlink:href="urn:ioos:station:wmo:51170"/> <procedure xlink:href="urn:ioos:station:wmo:51171"/> <procedure xlink:href="urn:ioos:station:wmo:51172"/> <procedure xlink:href="urn:ioos:station:wmo:51173"/> <procedure xlink:href="urn:ioos:station:wmo:51174"/> <procedure xlink:href="urn:ioos:station:wmo:51176"/> <procedure xlink:href="urn:ioos:station:wmo:51177"/> <procedure xlink:href="urn:ioos:station:wmo:51178"/> <procedure xlink:href="urn:ioos:station:wmo:51179"/> <procedure xlink:href="urn:ioos:station:wmo:51180"/> <procedure xlink:href="urn:ioos:station:wmo:51181"/> <procedure xlink:href="urn:ioos:station:wmo:51200"/> <procedure xlink:href="urn:ioos:station:wmo:51201"/> <procedure xlink:href="urn:ioos:station:wmo:51202"/> <procedure xlink:href="urn:ioos:station:wmo:51203"/> <procedure xlink:href="urn:ioos:station:wmo:51204"/> <procedure xlink:href="urn:ioos:station:wmo:51205"/> <procedure xlink:href="urn:ioos:station:wmo:51206"/> <procedure xlink:href="urn:ioos:station:wmo:51301"/> <procedure xlink:href="urn:ioos:station:wmo:51302"/> <procedure xlink:href="urn:ioos:station:wmo:51303"/> <procedure xlink:href="urn:ioos:station:wmo:51304"/> <procedure xlink:href="urn:ioos:station:wmo:51305"/> <procedure xlink:href="urn:ioos:station:wmo:51306"/> <procedure xlink:href="urn:ioos:station:wmo:51307"/> <procedure xlink:href="urn:ioos:station:wmo:51308"/> <procedure xlink:href="urn:ioos:station:wmo:51309"/> <procedure xlink:href="urn:ioos:station:wmo:51310"/> <procedure xlink:href="urn:ioos:station:wmo:51311"/> <procedure xlink:href="urn:ioos:station:wmo:51406"/> <procedure xlink:href="urn:ioos:station:wmo:51407"/> <procedure xlink:href="urn:ioos:station:wmo:51425"/> <procedure xlink:href="urn:ioos:station:wmo:51426"/> <procedure xlink:href="urn:ioos:station:wmo:51wh0"/> <procedure xlink:href="urn:ioos:station:wmo:51x04"/> <procedure xlink:href="urn:ioos:station:wmo:52001"/> <procedure xlink:href="urn:ioos:station:wmo:52002"/> <procedure xlink:href="urn:ioos:station:wmo:52003"/> <procedure xlink:href="urn:ioos:station:wmo:52004"/> <procedure xlink:href="urn:ioos:station:wmo:52006"/> <procedure xlink:href="urn:ioos:station:wmo:52007"/> <procedure xlink:href="urn:ioos:station:wmo:52200"/> <procedure xlink:href="urn:ioos:station:wmo:52201"/> <procedure xlink:href="urn:ioos:station:wmo:52243"/> <procedure xlink:href="urn:ioos:station:wmo:52244"/> <procedure xlink:href="urn:ioos:station:wmo:52245"/> <procedure xlink:href="urn:ioos:station:wmo:52246"/> <procedure xlink:href="urn:ioos:station:wmo:52247"/> <procedure xlink:href="urn:ioos:station:wmo:52248"/> <procedure xlink:href="urn:ioos:station:wmo:52249"/> <procedure xlink:href="urn:ioos:station:wmo:52309"/> <procedure xlink:href="urn:ioos:station:wmo:52310"/> <procedure xlink:href="urn:ioos:station:wmo:52311"/> <procedure xlink:href="urn:ioos:station:wmo:52312"/> <procedure xlink:href="urn:ioos:station:wmo:52313"/> <procedure xlink:href="urn:ioos:station:wmo:52315"/> <procedure xlink:href="urn:ioos:station:wmo:52316"/> <procedure xlink:href="urn:ioos:station:wmo:52321"/> <procedure xlink:href="urn:ioos:station:wmo:52401"/> <procedure xlink:href="urn:ioos:station:wmo:52402"/> <procedure xlink:href="urn:ioos:station:wmo:52403"/> <procedure xlink:href="urn:ioos:station:wmo:52404"/> <procedure xlink:href="urn:ioos:station:wmo:52405"/> <procedure xlink:href="urn:ioos:station:wmo:52406"/> <procedure xlink:href="urn:ioos:station:wmo:53046"/> <procedure xlink:href="urn:ioos:station:wmo:54401"/> <procedure xlink:href="urn:ioos:station:wmo:55012"/> <procedure xlink:href="urn:ioos:station:wmo:55013"/> <procedure xlink:href="urn:ioos:station:wmo:55015"/> <procedure xlink:href="urn:ioos:station:wmo:55016"/> <procedure xlink:href="urn:ioos:station:wmo:55023"/> <procedure xlink:href="urn:ioos:station:wmo:55042"/> <procedure xlink:href="urn:ioos:station:wmo:56001"/> <procedure xlink:href="urn:ioos:station:wmo:56003"/> <procedure xlink:href="urn:ioos:station:wmo:58900"/> <procedure xlink:href="urn:ioos:station:wmo:58901"/> <procedure xlink:href="urn:ioos:station:wmo:58902"/> <procedure xlink:href="urn:ioos:station:wmo:58903"/> <procedure xlink:href="urn:ioos:station:wmo:58904"/> <procedure xlink:href="urn:ioos:station:wmo:58905"/> <procedure xlink:href="urn:ioos:station:wmo:58951"/> <procedure xlink:href="urn:ioos:station:wmo:58952"/> <procedure xlink:href="urn:ioos:station:wmo:58953"/> <procedure xlink:href="urn:ioos:station:wmo:78900"/> <procedure xlink:href="urn:ioos:station:wmo:78901"/> <procedure xlink:href="urn:ioos:station:wmo:aban6"/> <procedure xlink:href="urn:ioos:station:wmo:acmn4"/> <procedure xlink:href="urn:ioos:station:wmo:acqs1"/> <procedure xlink:href="urn:ioos:station:wmo:acxs1"/> <procedure xlink:href="urn:ioos:station:wmo:agmw3"/> <procedure xlink:href="urn:ioos:station:wmo:amaa2"/> <procedure xlink:href="urn:ioos:station:wmo:ancf1"/> <procedure xlink:href="urn:ioos:station:wmo:anmf1"/> <procedure xlink:href="urn:ioos:station:wmo:anmn6"/> <procedure xlink:href="urn:ioos:station:wmo:anrn6"/> <procedure xlink:href="urn:ioos:station:wmo:apnm4"/> <procedure xlink:href="urn:ioos:station:wmo:apqf1"/> <procedure xlink:href="urn:ioos:station:wmo:apxf1"/> <procedure xlink:href="urn:ioos:station:wmo:arop4"/> <procedure xlink:href="urn:ioos:station:wmo:arpf1"/> <procedure xlink:href="urn:ioos:station:wmo:auga2"/> <procedure xlink:href="urn:ioos:station:wmo:avan4"/> <procedure xlink:href="urn:ioos:station:wmo:babt2"/> <procedure xlink:href="urn:ioos:station:wmo:barn6"/> <procedure xlink:href="urn:ioos:station:wmo:bdvf1"/> <procedure xlink:href="urn:ioos:station:wmo:bgcf1"/> <procedure xlink:href="urn:ioos:station:wmo:bgxn3"/> <procedure xlink:href="urn:ioos:station:wmo:bhri3"/> <procedure xlink:href="urn:ioos:station:wmo:bigm4"/> <procedure xlink:href="urn:ioos:station:wmo:blia2"/> <procedure xlink:href="urn:ioos:station:wmo:blta2"/> <procedure xlink:href="urn:ioos:station:wmo:bnkf1"/> <procedure xlink:href="urn:ioos:station:wmo:bobf1"/> <procedure xlink:href="urn:ioos:station:wmo:brbn4"/> <procedure xlink:href="urn:ioos:station:wmo:brim2"/> <procedure xlink:href="urn:ioos:station:wmo:bsbm4"/> <procedure xlink:href="urn:ioos:station:wmo:bsca1"/> <procedure xlink:href="urn:ioos:station:wmo:bslm2"/> <procedure xlink:href="urn:ioos:station:wmo:burl1"/> <procedure xlink:href="urn:ioos:station:wmo:buzm3"/> <procedure xlink:href="urn:ioos:station:wmo:bvqw1"/> <procedure xlink:href="urn:ioos:station:wmo:bwsf1"/> <procedure xlink:href="urn:ioos:station:wmo:camf1"/> <procedure xlink:href="urn:ioos:station:wmo:canf1"/> <procedure xlink:href="urn:ioos:station:wmo:caro3"/> <procedure xlink:href="urn:ioos:station:wmo:cblo1"/> <procedure xlink:href="urn:ioos:station:wmo:cbrw3"/> <procedure xlink:href="urn:ioos:station:wmo:cdea2"/> <procedure xlink:href="urn:ioos:station:wmo:cdrf1"/> <procedure xlink:href="urn:ioos:station:wmo:chds1"/> <procedure xlink:href="urn:ioos:station:wmo:chii2"/> <procedure xlink:href="urn:ioos:station:wmo:chlv2"/> <procedure xlink:href="urn:ioos:station:wmo:chno3"/> <procedure xlink:href="urn:ioos:station:wmo:chqo3"/> <procedure xlink:href="urn:ioos:station:wmo:clkn7"/> <procedure xlink:href="urn:ioos:station:wmo:clsm4"/> <procedure xlink:href="urn:ioos:station:wmo:cnbf1"/> <procedure xlink:href="urn:ioos:station:wmo:cpnt2"/> <procedure xlink:href="urn:ioos:station:wmo:cpxc1"/> <procedure xlink:href="urn:ioos:station:wmo:crta1"/> <procedure xlink:href="urn:ioos:station:wmo:cspa2"/> <procedure xlink:href="urn:ioos:station:wmo:cvqv2"/> <procedure xlink:href="urn:ioos:station:wmo:cwaf1"/> <procedure xlink:href="urn:ioos:station:wmo:cwqo3"/> <procedure xlink:href="urn:ioos:station:wmo:cygm4"/> <procedure xlink:href="urn:ioos:station:wmo:dbln6"/> <procedure xlink:href="urn:ioos:station:wmo:dbqs1"/> <procedure xlink:href="urn:ioos:station:wmo:deqd1"/> <procedure xlink:href="urn:ioos:station:wmo:desw1"/> <procedure xlink:href="urn:ioos:station:wmo:disw3"/> <procedure xlink:href="urn:ioos:station:wmo:dkkf1"/> <procedure xlink:href="urn:ioos:station:wmo:dpha1"/> <procedure xlink:href="urn:ioos:station:wmo:dpia1"/> <procedure xlink:href="urn:ioos:station:wmo:drfa2"/> <procedure xlink:href="urn:ioos:station:wmo:drsd1"/> <procedure xlink:href="urn:ioos:station:wmo:egkf1"/> <procedure xlink:href="urn:ioos:station:wmo:elqc1"/> <procedure xlink:href="urn:ioos:station:wmo:elxc1"/> <procedure xlink:href="urn:ioos:station:wmo:eroa2"/> <procedure xlink:href="urn:ioos:station:wmo:fbis1"/> <procedure xlink:href="urn:ioos:station:wmo:fbps1"/> <procedure xlink:href="urn:ioos:station:wmo:ffia2"/> <procedure xlink:href="urn:ioos:station:wmo:fgbl1"/> <procedure xlink:href="urn:ioos:station:wmo:fhpf1"/> <procedure xlink:href="urn:ioos:station:wmo:fila2"/> <procedure xlink:href="urn:ioos:station:wmo:fptm4"/> <procedure xlink:href="urn:ioos:station:wmo:frdp4"/> <procedure xlink:href="urn:ioos:station:wmo:fsti2"/> <procedure xlink:href="urn:ioos:station:wmo:fwyf1"/> <procedure xlink:href="urn:ioos:station:wmo:gbif1"/> <procedure xlink:href="urn:ioos:station:wmo:gblw3"/> <procedure xlink:href="urn:ioos:station:wmo:gbqn3"/> <procedure xlink:href="urn:ioos:station:wmo:gbtf1"/> <procedure xlink:href="urn:ioos:station:wmo:gdqm6"/> <procedure xlink:href="urn:ioos:station:wmo:gdwv2"/> <procedure xlink:href="urn:ioos:station:wmo:gdxm6"/> <procedure xlink:href="urn:ioos:station:wmo:gelo1"/> <procedure xlink:href="urn:ioos:station:wmo:grmm4"/> <procedure xlink:href="urn:ioos:station:wmo:gslm4"/> <procedure xlink:href="urn:ioos:station:wmo:gtbm4"/> <procedure xlink:href="urn:ioos:station:wmo:gtlm4"/> <procedure xlink:href="urn:ioos:station:wmo:gtqf1"/> <procedure xlink:href="urn:ioos:station:wmo:gtrm4"/> <procedure xlink:href="urn:ioos:station:wmo:gtxf1"/> <procedure xlink:href="urn:ioos:station:wmo:hansi"/> <procedure xlink:href="urn:ioos:station:wmo:hcef1"/> <procedure xlink:href="urn:ioos:station:wmo:hhlo1"/> <procedure xlink:href="urn:ioos:station:wmo:hmra2"/> <procedure xlink:href="urn:ioos:station:wmo:hssf1"/> <procedure xlink:href="urn:ioos:station:wmo:huqn6"/> <procedure xlink:href="urn:ioos:station:wmo:ildl1"/> <procedure xlink:href="urn:ioos:station:wmo:iosn3"/> <procedure xlink:href="urn:ioos:station:wmo:jaki2"/> <procedure xlink:href="urn:ioos:station:wmo:jcqn4"/> <procedure xlink:href="urn:ioos:station:wmo:jcrn4"/> <procedure xlink:href="urn:ioos:station:wmo:jctn4"/> <procedure xlink:href="urn:ioos:station:wmo:jkyf1"/> <procedure xlink:href="urn:ioos:station:wmo:joqp4"/> <procedure xlink:href="urn:ioos:station:wmo:joxp4"/> <procedure xlink:href="urn:ioos:station:wmo:kata1"/> <procedure xlink:href="urn:ioos:station:wmo:katp"/> <procedure xlink:href="urn:ioos:station:wmo:kbbf"/> <procedure xlink:href="urn:ioos:station:wmo:kbqx"/> <procedure xlink:href="urn:ioos:station:wmo:kcha2"/> <procedure xlink:href="urn:ioos:station:wmo:kcmb"/> <procedure xlink:href="urn:ioos:station:wmo:kcrh"/> <procedure xlink:href="urn:ioos:station:wmo:kdlp"/> <procedure xlink:href="urn:ioos:station:wmo:kehc"/> <procedure xlink:href="urn:ioos:station:wmo:keir"/> <procedure xlink:href="urn:ioos:station:wmo:kemk"/> <procedure xlink:href="urn:ioos:station:wmo:kgbk"/> <procedure xlink:href="urn:ioos:station:wmo:kghb"/> <procedure xlink:href="urn:ioos:station:wmo:kgna"/> <procedure xlink:href="urn:ioos:station:wmo:kgry"/> <procedure xlink:href="urn:ioos:station:wmo:kgul"/> <procedure xlink:href="urn:ioos:station:wmo:kgvx"/> <procedure xlink:href="urn:ioos:station:wmo:khhv"/> <procedure xlink:href="urn:ioos:station:wmo:khqi"/> <procedure xlink:href="urn:ioos:station:wmo:kipn"/> <procedure xlink:href="urn:ioos:station:wmo:kmdj"/> <procedure xlink:href="urn:ioos:station:wmo:kmis"/> <procedure xlink:href="urn:ioos:station:wmo:kmiu"/> <procedure xlink:href="urn:ioos:station:wmo:kmyt"/> <procedure xlink:href="urn:ioos:station:wmo:kmzg"/> <procedure xlink:href="urn:ioos:station:wmo:knoh1"/> <procedure xlink:href="urn:ioos:station:wmo:knsw3"/> <procedure xlink:href="urn:ioos:station:wmo:kopm"/> <procedure xlink:href="urn:ioos:station:wmo:kp53"/> <procedure xlink:href="urn:ioos:station:wmo:kp58"/> <procedure xlink:href="urn:ioos:station:wmo:kp59"/> <procedure xlink:href="urn:ioos:station:wmo:kscf"/> <procedure xlink:href="urn:ioos:station:wmo:kspr"/> <procedure xlink:href="urn:ioos:station:wmo:kstz"/> <procedure xlink:href="urn:ioos:station:wmo:ktnf1"/> <procedure xlink:href="urn:ioos:station:wmo:kvaf"/> <procedure xlink:href="urn:ioos:station:wmo:kvbs"/> <procedure xlink:href="urn:ioos:station:wmo:kvky"/> <procedure xlink:href="urn:ioos:station:wmo:kvnp"/> <procedure xlink:href="urn:ioos:station:wmo:kvoa"/> <procedure xlink:href="urn:ioos:station:wmo:kvqt"/> <procedure xlink:href="urn:ioos:station:wmo:kxih"/> <procedure xlink:href="urn:ioos:station:wmo:kxpy"/> <procedure xlink:href="urn:ioos:station:wmo:lbrf1"/> <procedure xlink:href="urn:ioos:station:wmo:lbsf1"/> <procedure xlink:href="urn:ioos:station:wmo:lciy2"/> <procedure xlink:href="urn:ioos:station:wmo:lcna2"/> <procedure xlink:href="urn:ioos:station:wmo:ldlc3"/> <procedure xlink:href="urn:ioos:station:wmo:litli"/> <procedure xlink:href="urn:ioos:station:wmo:ljpc1"/> <procedure xlink:href="urn:ioos:station:wmo:lkpl1"/> <procedure xlink:href="urn:ioos:station:wmo:lkwf1"/> <procedure xlink:href="urn:ioos:station:wmo:llbp7"/> <procedure xlink:href="urn:ioos:station:wmo:lmbv4"/> <procedure xlink:href="urn:ioos:station:wmo:lmdf1"/> <procedure xlink:href="urn:ioos:station:wmo:lmfs1"/> <procedure xlink:href="urn:ioos:station:wmo:lmrf1"/> <procedure xlink:href="urn:ioos:station:wmo:lmss1"/> <procedure xlink:href="urn:ioos:station:wmo:lonf1"/> <procedure xlink:href="urn:ioos:station:wmo:lopl1"/> <procedure xlink:href="urn:ioos:station:wmo:lprp4"/> <procedure xlink:href="urn:ioos:station:wmo:lrif1"/> <procedure xlink:href="urn:ioos:station:wmo:lrkf1"/> <procedure xlink:href="urn:ioos:station:wmo:lscm4"/> <procedure xlink:href="urn:ioos:station:wmo:lsnf1"/> <procedure xlink:href="urn:ioos:station:wmo:ltqm2"/> <procedure xlink:href="urn:ioos:station:wmo:luml1"/> <procedure xlink:href="urn:ioos:station:wmo:maqt2"/> <procedure xlink:href="urn:ioos:station:wmo:maxt2"/> <procedure xlink:href="urn:ioos:station:wmo:mbla1"/> <procedure xlink:href="urn:ioos:station:wmo:mcyi3"/> <procedure xlink:href="urn:ioos:station:wmo:mdrm1"/> <procedure xlink:href="urn:ioos:station:wmo:meem4"/> <procedure xlink:href="urn:ioos:station:wmo:mgzp4"/> <procedure xlink:href="urn:ioos:station:wmo:mhpa1"/> <procedure xlink:href="urn:ioos:station:wmo:mism1"/> <procedure xlink:href="urn:ioos:station:wmo:mkgm4"/> <procedure xlink:href="urn:ioos:station:wmo:mlrf1"/> <procedure xlink:href="urn:ioos:station:wmo:mlsc1"/> <procedure xlink:href="urn:ioos:station:wmo:mlww3"/> <procedure xlink:href="urn:ioos:station:wmo:mrka2"/> <procedure xlink:href="urn:ioos:station:wmo:mrsl1"/> <procedure xlink:href="urn:ioos:station:wmo:mukf1"/> <procedure xlink:href="urn:ioos:station:wmo:nabm4"/> <procedure xlink:href="urn:ioos:station:wmo:naqr1"/> <procedure xlink:href="urn:ioos:station:wmo:naxr1"/> <procedure xlink:href="urn:ioos:station:wmo:ncht2"/> <procedure xlink:href="urn:ioos:station:wmo:nfbf1"/> <procedure xlink:href="urn:ioos:station:wmo:nglt2"/> <procedure xlink:href="urn:ioos:station:wmo:niqs1"/> <procedure xlink:href="urn:ioos:station:wmo:niws1"/> <procedure xlink:href="urn:ioos:station:wmo:noqn7"/> <procedure xlink:href="urn:ioos:station:wmo:noxn7"/> <procedure xlink:href="urn:ioos:station:wmo:npdw3"/> <procedure xlink:href="urn:ioos:station:wmo:nwpo3"/> <procedure xlink:href="urn:ioos:station:wmo:ocgn4"/> <procedure xlink:href="urn:ioos:station:wmo:ocpn7"/> <procedure xlink:href="urn:ioos:station:wmo:oksi2"/> <procedure xlink:href="urn:ioos:station:wmo:olcn6"/> <procedure xlink:href="urn:ioos:station:wmo:otnm4"/> <procedure xlink:href="urn:ioos:station:wmo:owqo1"/> <procedure xlink:href="urn:ioos:station:wmo:owxo1"/> <procedure xlink:href="urn:ioos:station:wmo:pact2"/> <procedure xlink:href="urn:ioos:station:wmo:pbfw1"/> <procedure xlink:href="urn:ioos:station:wmo:pblw1"/> <procedure xlink:href="urn:ioos:station:wmo:pbpa2"/> <procedure xlink:href="urn:ioos:station:wmo:pcgt2"/> <procedure xlink:href="urn:ioos:station:wmo:pclm4"/> <procedure xlink:href="urn:ioos:station:wmo:pcnt2"/> <procedure xlink:href="urn:ioos:station:wmo:pila2"/> <procedure xlink:href="urn:ioos:station:wmo:pilm4"/> <procedure xlink:href="urn:ioos:station:wmo:pkyf1"/> <procedure xlink:href="urn:ioos:station:wmo:plsf1"/> <procedure xlink:href="urn:ioos:station:wmo:plsp4"/> <procedure xlink:href="urn:ioos:station:wmo:pngw3"/> <procedure xlink:href="urn:ioos:station:wmo:port2"/> <procedure xlink:href="urn:ioos:station:wmo:pota2"/> <procedure xlink:href="urn:ioos:station:wmo:ppta1"/> <procedure xlink:href="urn:ioos:station:wmo:prim4"/> <procedure xlink:href="urn:ioos:station:wmo:prta2"/> <procedure xlink:href="urn:ioos:station:wmo:pscm4"/> <procedure xlink:href="urn:ioos:station:wmo:ptac1"/> <procedure xlink:href="urn:ioos:station:wmo:ptat2"/> <procedure xlink:href="urn:ioos:station:wmo:ptgc1"/> <procedure xlink:href="urn:ioos:station:wmo:ptrf1"/> <procedure xlink:href="urn:ioos:station:wmo:pvgf1"/> <procedure xlink:href="urn:ioos:station:wmo:pwaw3"/> <procedure xlink:href="urn:ioos:station:wmo:rkqf1"/> <procedure xlink:href="urn:ioos:station:wmo:rkxf1"/> <procedure xlink:href="urn:ioos:station:wmo:rlot2"/> <procedure xlink:href="urn:ioos:station:wmo:roam4"/> <procedure xlink:href="urn:ioos:station:wmo:rprn6"/> <procedure xlink:href="urn:ioos:station:wmo:rsjt2"/> <procedure xlink:href="urn:ioos:station:wmo:rtat2"/> <procedure xlink:href="urn:ioos:station:wmo:sacv4"/> <procedure xlink:href="urn:ioos:station:wmo:sanf1"/> <procedure xlink:href="urn:ioos:station:wmo:saqg1"/> <procedure xlink:href="urn:ioos:station:wmo:sauf1"/> <procedure xlink:href="urn:ioos:station:wmo:saxg1"/> <procedure xlink:href="urn:ioos:station:wmo:sbio1"/> <procedure xlink:href="urn:ioos:station:wmo:sblm4"/> <procedure xlink:href="urn:ioos:station:wmo:scld1"/> <procedure xlink:href="urn:ioos:station:wmo:scqc1"/> <procedure xlink:href="urn:ioos:station:wmo:sdia2"/> <procedure xlink:href="urn:ioos:station:wmo:sdrt2"/> <procedure xlink:href="urn:ioos:station:wmo:seqa2"/> <procedure xlink:href="urn:ioos:station:wmo:sfxc1"/> <procedure xlink:href="urn:ioos:station:wmo:sgnw3"/> <procedure xlink:href="urn:ioos:station:wmo:sgof1"/> <procedure xlink:href="urn:ioos:station:wmo:shpf1"/> <procedure xlink:href="urn:ioos:station:wmo:sisa2"/> <procedure xlink:href="urn:ioos:station:wmo:sisw1"/> <procedure xlink:href="urn:ioos:station:wmo:sjom4"/> <procedure xlink:href="urn:ioos:station:wmo:skmg1"/> <procedure xlink:href="urn:ioos:station:wmo:slvm5"/> <procedure xlink:href="urn:ioos:station:wmo:smbs1"/> <procedure xlink:href="urn:ioos:station:wmo:smkf1"/> <procedure xlink:href="urn:ioos:station:wmo:soqo3"/> <procedure xlink:href="urn:ioos:station:wmo:spag1"/> <procedure xlink:href="urn:ioos:station:wmo:spgf1"/> <procedure xlink:href="urn:ioos:station:wmo:spll1"/> <procedure xlink:href="urn:ioos:station:wmo:sptm4"/> <procedure xlink:href="urn:ioos:station:wmo:srbv3"/> <procedure xlink:href="urn:ioos:station:wmo:srst2"/> <procedure xlink:href="urn:ioos:station:wmo:ssbn7"/> <procedure xlink:href="urn:ioos:station:wmo:stdm4"/> <procedure xlink:href="urn:ioos:station:wmo:supn6"/> <procedure xlink:href="urn:ioos:station:wmo:svnm4"/> <procedure xlink:href="urn:ioos:station:wmo:sxhw3"/> <procedure xlink:href="urn:ioos:station:wmo:syww3"/> <procedure xlink:href="urn:ioos:station:wmo:taml1"/> <procedure xlink:href="urn:ioos:station:wmo:taqt2"/> <procedure xlink:href="urn:ioos:station:wmo:tarf1"/> <procedure xlink:href="urn:ioos:station:wmo:tawm4"/> <procedure xlink:href="urn:ioos:station:wmo:tcvf1"/> <procedure xlink:href="urn:ioos:station:wmo:thlo1"/> <procedure xlink:href="urn:ioos:station:wmo:tibc1"/> <procedure xlink:href="urn:ioos:station:wmo:tiqc1"/> <procedure xlink:href="urn:ioos:station:wmo:tixc1"/> <procedure xlink:href="urn:ioos:station:wmo:tkea2"/> <procedure xlink:href="urn:ioos:station:wmo:tpef1"/> <procedure xlink:href="urn:ioos:station:wmo:tplm2"/> <procedure xlink:href="urn:ioos:station:wmo:trbl1"/> <procedure xlink:href="urn:ioos:station:wmo:trrf1"/> <procedure xlink:href="urn:ioos:station:wmo:ttiw1"/> <procedure xlink:href="urn:ioos:station:wmo:vcat2"/> <procedure xlink:href="urn:ioos:station:wmo:venf1"/> <procedure xlink:href="urn:ioos:station:wmo:verv4"/> <procedure xlink:href="urn:ioos:station:wmo:vqsp4"/> <procedure xlink:href="urn:ioos:station:wmo:waqm3"/> <procedure xlink:href="urn:ioos:station:wmo:wats1"/> <procedure xlink:href="urn:ioos:station:wmo:waxm3"/> <procedure xlink:href="urn:ioos:station:wmo:wdel1"/> <procedure xlink:href="urn:ioos:station:wmo:weqm1"/> <procedure xlink:href="urn:ioos:station:wmo:wexm1"/> <procedure xlink:href="urn:ioos:station:wmo:wfpm4"/> <procedure xlink:href="urn:ioos:station:wmo:whri2"/> <procedure xlink:href="urn:ioos:station:wmo:wiwf1"/> <procedure xlink:href="urn:ioos:station:wmo:wkqa1"/> <procedure xlink:href="urn:ioos:station:wmo:wkxa1"/> <procedure xlink:href="urn:ioos:station:wmo:wplf1"/> <procedure xlink:href="urn:ioos:station:wmo:wpow1"/> <procedure xlink:href="urn:ioos:station:wmo:wrbf1"/> <procedure xlink:href="urn:ioos:station:wmo:wwef1"/> <procedure xlink:href="urn:ioos:station:wmo:yabp4"/> <procedure xlink:href="urn:ioos:station:wmo:ygnn6"/> <procedure xlink:href="urn:ioos:station:wmo:yrsv2"/> <procedure xlink:href="urn:ioos:station:wmo:zbqn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20080827103645_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081109043445_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081210043715_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081224180730_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081226160430_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081227160430_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081228020445_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20081228151815_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090101074845_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090106193245_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090109032656_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090111164815_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090120224700_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090129002930_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090201150530_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090206045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090206184145_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090207045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090208080700_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090208211045_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090209172415_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090210132000_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090211050215_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090218092730_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090219025245_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090219200130_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090222112945_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090308171930_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090310113400_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090311093030_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090312154715_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090313090700_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090315123945_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090316113700_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090317173945_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090330132900_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090331200845_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090401010100_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090401045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090401073415_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090402040445_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090402045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090403045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090403173015_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090404045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090404094730_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090404192315_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090405040230_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090405045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090405114615_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090405225145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090406045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090407045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090407220715_56003"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090408045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090409045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090410045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090411045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090411164500_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090412045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090413045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090414045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090414062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090414215045_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090415021315_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090415045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090415062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090415133215_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090416012700_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090416045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090416062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090416150030_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090417045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090417062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090417103345_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090417163915_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090418045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090418062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090418142730_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090419005800_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090419045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090419062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090419183200_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090420045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090420062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090420111515_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090420151630_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090421045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090421054400_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090421062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090422015930_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090422045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090422062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090423045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090423062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090424045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090424062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090425045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090425062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090426045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090426062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090427045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090427062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090428045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090428062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090428104430_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090428213945_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090429045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090429062630_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090430045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090501045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090502042930_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090502045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090503045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090503210515_43413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090504045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090505045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090505140830_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090506045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090506055515_43413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090506151100_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090507045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090508045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090509045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090509054145_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090510045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090511045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090511102945_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090512045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090513045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090514045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090514110600_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090515045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090516045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090517045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090518045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090519045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090520045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090521045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090521162545_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090522010845_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090522045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090522203100_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090523045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090524045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090524162145_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090525045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090526045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090527045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090527150530_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090528045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090529045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090530045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090531045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090601045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090602045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090603045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090603195200_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090604045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090605013500_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090605045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090605192130_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090606045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090607045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090608045900_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090608094700_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090608215715_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090610171900_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090610235115_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090611053430_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090612015930_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090620155130_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090620183845_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090621073615_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090721133315_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090725185915_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090804155915_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090804181600_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090805024230_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090806233715_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090812235000_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090818004700_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090906061130_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20090909121300_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091007224345_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091009210830_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091015151745_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091123165515_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091124023045_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091203085015_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091205164245_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091206064600_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091206202345_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091207200315_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091208133615_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091212075215_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091214081230_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091215214715_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091216191745_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091218001645_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091218110045_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091219023300_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091219114115_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091222234900_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091223084500_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091223135030_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091224005600_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091224121215_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091227231630_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091229192415_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091229235430_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20091230132345_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100101084651_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100107180430_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100116122200_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100116141100_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100119031107_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100119071845_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100120080715_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100122041515_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100130092930_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100205015530_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100205161100_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100205165530_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100206091030_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100207015530_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100207230730_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100208125530_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100209065600_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100210024100_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100210215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100211215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100212215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100213215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100214054830_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100214215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100215215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100216020215_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100216213500_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100216215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100217204030_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100217215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100218204030_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100218215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100219215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100220215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100221215545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100225001215_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100226071315_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100226172215_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100227070345_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100227074430_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100301012700_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100306073845_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100309072400_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100311051545_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100312012600_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100314194500_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100315082215_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100315170930_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100316052715_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100316191000_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100317082045_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100318082045_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100319082045_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100325182800_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100326200830_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100331133430_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100402234630_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100403034415_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100405082415_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100406080915_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100407080430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100408080430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100409070430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100410130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100411130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100412130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100413130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100414040115_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100414130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100415130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100416130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100417130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100418130430_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100420144100_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100421133430_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100421144100_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100422022015_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100422090830_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100423014345_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100423090830_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100423195730_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100424051630_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100424161215_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100425101945_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100425223615_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100429054515_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100429200330_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100430200330_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100503004415_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100503171430_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100503215345_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100504215345_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100505045000_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100505190630_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100506122200_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100507044900_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100507055100_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100507150345_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100507200100_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100508044900_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100508083330_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100508150345_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100509005900_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100509065515_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100509083330_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100510065515_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100511223215_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100512094115_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100514084030_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100514215115_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100515123515_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100516025015_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100523224815_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100524224815_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100525001745_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100525031045_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100526001745_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100526031045_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100526163000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100527223630_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100528061015_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100529061015_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100529230000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100530074515_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100531074515_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100531125845_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100531200315_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100601061530_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100601210700_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100602005415_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100602112200_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100603052345_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100603141145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100610142515_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100611142515_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100612212200_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100613033830_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100613112218_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100615094700_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100616000003_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100616032945_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100616055400_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100617055400_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100620014445_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100620020500_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100621191515_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100623124945_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100623170330_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100625091030_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100626091030_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100626180545_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100627092700_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100627202845_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100629205700_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100630135315_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100630190945_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100701092100_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100701141724_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100701190945_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100704045015_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100707055545_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100714143730_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100717012915_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100717100430_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100717151100_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100718012915_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100718092145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100718100430_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100718171145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100718171454_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100719092145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100719171145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100719211445_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100721051200_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100723174815_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100723232145_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100724132000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100724174815_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100725120745_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100725132000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100725181000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100726120745_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100726181000_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100727150500_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100731131330_21414"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100731195145_21414"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100801091000_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100801122400_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100801162445_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100802013400_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100802071145_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100802080600_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100802124130_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100803080600_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100804173930_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100808184830_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100808211230_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100809061245_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100810111415_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100810233615_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100811111415_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100813175415_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100815085400_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100905045145_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100905194715_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100906015715_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100906082345_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100906131730_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100907040815_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100914034000_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100919154000_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20100920192500_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101005150815_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101010032354_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101016195724_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101025061954_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101101111115_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101102075115_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101102111115_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101102165300_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101106093400_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101108200445_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101109140845_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101130090430_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101130220445_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101202174715_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101202175300_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101202220745_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101209152930_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101210131600_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101214004515_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101215014254_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101226102054_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20101230024500_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110101055830_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110106032630_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110108020545_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110108120415_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110108165100_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110109024845_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110109192415_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110109234015_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110110042830_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110110191645_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110111045000_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110131004115_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110131045915_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110131093315_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110131134130_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110131151109_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110201032515_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110201074245_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110202144015_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110211141824_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110218142530_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110220010730_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110220230730_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110222090430_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110222220500_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110224152545_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110224220430_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110225230745_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110227010445_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110228133615_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110301004854_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110302140815_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110305010445_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110311064630_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110311065345_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110311102300_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110313215200_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110314115245_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110330121900_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110404145530_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110405185900_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110406094533_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110406140100_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110406223100_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110407035200_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110407170930_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110417083630_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110430085915_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110521031830_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110522031915_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110523070930_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110524140815_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110526041215_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110618095415_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110618141300_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110627145015_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110628182600_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110629014300_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110629081730_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110629141730_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110701055030_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110701070715_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110712021245_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110713143245_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110722121145_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110729020730_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110729230130_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110730110130_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110731093615_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110731104345_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110731133945_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110731184100_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110806141500_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110807034730_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110819141645_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110819153000_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110820113515_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110821010430_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110822002115_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110822223524_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110902010715_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110904184900_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110905065730_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110906065730_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110906194915_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110907065730_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110911003645_55042"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110913191130_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110915170415_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110917034345_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110917142800_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110925092130_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110926015200_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110926223245_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110927112815_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110928114000_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110929001630_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110930133345_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20110930213409_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111001033400_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111002020315_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111006095300_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111007082615_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111015145830_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111031012500_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111101022600_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111106083109_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111108115900_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111109025745_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111109140445_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111110191945_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111111181330_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111112201730_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111113184945_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111114141430_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111115030445_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111117013215_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111118122045_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111125014354_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111128111624_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111201120630_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111203085630_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111204123845_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111205123845_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111207063230_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111208001845_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111209004130_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111212162600_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111213020030_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111213071200_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111214061415_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111217011315_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111219041845_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20111229044215_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120107111939_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120112162554_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120113015739_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120126104400_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120127105730_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120127135730_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120128022515_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120128063715_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120128145930_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120129070030_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120129185800_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120129234815_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120130161800_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120130203800_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120131004430_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120131175645_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120201023015_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120201060600_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120201063130_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120202022445_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120202203645_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120203045715_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120203175453_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120204194915_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120205074015_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120206030045_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120206081800_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120207035000_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120207134545_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120209142445_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120217231545_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120227055400_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120227144854_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120227203315_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120228144854_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120228221830_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120307202745_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120308231830_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120309062615_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120309233015_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120312035945_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120314160415_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120316075130_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120316130500_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120317034145_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120318020630_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120318092115_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120318231315_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120319080745_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120320061845_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120320072730_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120320113615_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120320195830_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120321063045_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120322152645_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120324041100_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120324124845_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120325030000_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120325110800_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120326135345_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120326215500_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120327131800_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120327221945_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120328144415_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120329014300_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120331035215_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120331203645_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120401191400_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120402034415_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120402091815_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120402153301_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120402223430_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120403025115_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120403102900_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120403104500_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120403193800_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120404062545_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120404173345_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120405121915_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120411085215_56003"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::false:20120411091915_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20080828124000_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20080911002400_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20080924023545_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20081019051345_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20081124090730_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20081220103830_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20081221092715_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20081225081315_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090103195100_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090103195615_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090115175300_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090115180000_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090115180115_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090218215815_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090319182100_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090319182530_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090319_tonga"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090330071930_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090516182745_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090528083615_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090528084500_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090528_north_of_honduras"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090715092415_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090715092430_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090715093315_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090715095030_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090725014845_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090803180500_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090803181230_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090803181600_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929175245_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929175300_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929175645_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929180300_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929180530_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929180800_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929181130_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929181400_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929181630_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929_samoa"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20090929_samoa_2d"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007221100_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007222100_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007222815_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007223345_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007224045_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007224415_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091007233715_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091008084330_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091009181845_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091013054330_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091013202745_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091013203315_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20091124125045_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100103215630_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100103220015_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100105122615_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112215645_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112220245_41420"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112220545_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112220730_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112222245_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100112_haiti"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100226203445_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100226203845_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227064500_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227065615_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227070115_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227070145_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227070415_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227070930_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227071315_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227071315_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227071345_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227071430_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227074730_56003"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227094730_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227122330_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227_chile_ptwc_supp"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100227_chile_us_aus"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228000700_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228001945_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228012700_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228020415_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228024045_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228034600_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228044715_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228052630_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228052945_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228070145_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100228073145_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100404224330_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406082415_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406222145_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406222600_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406223130_56003"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406223615_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100406223715_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718055945_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718060245_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718060615_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718060930_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718134830_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100718195330_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100723230115_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100723230445_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100730040500_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100810053645_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100810053900_55016"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100810_vanuatu"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100813212900_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100813213815_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100814231345_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100903164200_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100903164730_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100903165500_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20100929173530_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101001140630_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101025152730_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221172500_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221172600_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221172700_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221172745_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221172900_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221173000_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221173100_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221173430_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221173645_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221173945_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101221_bonin_islands"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101223140545_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101225132415_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101225132845_55016"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101225132930_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101225133000_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101225134530_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20101226134530_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110113162515_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309024900_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309025000_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309025130_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309025200_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309032130_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110309185230_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110310054900_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311054900_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311054945_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311055045_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311055230_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311055500_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311055645_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311055930_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060015_21414"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060015_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060315_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060315_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060515_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060530_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311060800_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061000_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061130_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061245_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061315_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061445_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061730_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311061815_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311062000_56003"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311063239_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311063400_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311064130_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311064630_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311064800_32413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311065345_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311101000_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311101715_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311101800_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311102330_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311102430_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311110115_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311122530_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311124330_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311135545_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311143315_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311143900_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311145930_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311162915_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311184630_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311204200_43413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311230445_32413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110311231400_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312022515_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312031815_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312054900_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312054945_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312055045_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312055230_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312070130_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312105730_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312121815_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312140515_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312140730_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312143315_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312143900_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312145915_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312145930_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312223515_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312223630_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110312223930_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110313010130_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110313014230_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110313015300_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110313024315_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110314062200_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110322095215_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110330054130_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110403201115_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110407143630_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110411082630_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110624031130_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110624031815_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110624032615_21414"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110624033115_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110706190615_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110706192500_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110706192815_55042"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110706193200_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110710010100_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110710011345_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110710160930_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110902105800_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110902110330_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110909194315_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110916192945_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20110916194115_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20111021180200_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20111028191315_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120110184530_23227"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120206040300_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120314091345_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120314091715_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120314092830_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120320180630_43413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411084100_23227"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411084215_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411084430_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411085215_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411085630_23228"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411091015_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411091030_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411091245_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411091345_21419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411091515_21401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120411092030_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::geophysical:20120412072145_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20080929173245_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20081209234800_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090112164815_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090112165345_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090112175330_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090112180245_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113160915_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113161745_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113162400_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113163245_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113170830_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090113171745_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114151745_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114152400_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114153245_43413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114154745_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114160330_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090114162400_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115153930_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115155345_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115155445_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115165430_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115183930_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090115185430_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090116150845_42407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090116151815_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090116153300_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090304014730_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090312204730_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090317225345_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090426000245_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090429220300_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090430145200_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090501160300_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090514164715_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090518181800_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090602135315_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090602135330_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090602135345_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090630170230_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090630170830_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090810211830_23401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930005345_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930012315_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930014815_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930015345_46413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930015415_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930020215_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930020315_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930020815_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930021715_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930023245_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930025345_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930044830_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930045330_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930054715_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20090930071700_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20091120143215_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100101225345_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100103225730_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227071515_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227143930_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227153830_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227174000_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227185315_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227193400_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227193815_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227202515_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227203245_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227211745_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227213015_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227222415_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227222415_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227222500_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227223900_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227224900_55013"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100227230830_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228002330_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228003230_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228011715_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228041815_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228050615_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228060030_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228111500_46404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228124715_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100228161630_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100416143215_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100416224600_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100421110530_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100501193915_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100502124730_41421"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100502193915_46419"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100508012600_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100518145045_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100524121315_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100610182830_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100615010215_21413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100618190715_52401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100621195530_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100622182515_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100623141030_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100624124945_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100624170330_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100630135315_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100701141724_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100710230445_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100714055400_55016"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100714055415_55016"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100717172815_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100727172315_51426"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100727173215_51425"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100810055315_52406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100810144030_42409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100819004430_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100830002900_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100830123545_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100922060830_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20100923135845_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20101217183245_32401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311101715_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311101800_52402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311102300_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311102330_52405"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311102430_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311110415_52403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311111745_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311111800_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311125400_51407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311130215_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311130215_55012"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311130400_55023"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311153815_46412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311185524_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311190300_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311200845_43412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311200924_51406"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311214730_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110311215330_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110312000830_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110312001715_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110418133215_54401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110502000415_55042"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110503123915_32412"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110529150330_46407"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110530230915_46411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110602063830_55015"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110613224830_46410"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110619030915_46409"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110621130815_46403"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110623033015_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110626121715_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110627024030_41424"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110701145515_46408"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110704202530_21414"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110706164700_21415"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110707121715_44402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110708183845_21416"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110713021330_21418"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110714230930_44401"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110727212400_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110902113230_46402"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20110905214030_52404"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20120217130230_32413"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20120227170815_32411"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20120411143830_56001"/> <featureOfInterest xlink:href="urn:ioos:event:tsunami::manual:20120411143915_56003"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21401"> <gml:description>250NM Southeast of Iturup Island</gml:description> <gml:name>urn:ioos:station:wmo:21401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.617 152.583</gml:lowerCorner> <gml:upperCorner>42.617 152.583</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-11-15T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21413"> <gml:description>690 NM Southeast of Tokyo, Japan</gml:description> <gml:name>urn:ioos:station:wmo:21413</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.55 152.12</gml:lowerCorner> <gml:upperCorner>30.55 152.12</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21413"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21414"> <gml:description>NW Pacific</gml:description> <gml:name>urn:ioos:station:wmo:21414</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.94 178.27</gml:lowerCorner> <gml:upperCorner>48.94 178.27</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21414"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21415"> <gml:description>175 NM S of Attu AK</gml:description> <gml:name>urn:ioos:station:wmo:21415</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>50.17 171.84</gml:lowerCorner> <gml:upperCorner>50.17 171.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21415"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21416"> <gml:description>240NM SE of Kamchatka Peninsula</gml:description> <gml:name>urn:ioos:station:wmo:21416</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.04 163.49</gml:lowerCorner> <gml:upperCorner>48.04 163.49</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T12:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21416"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21417"> <gml:description>290NM SE of the Kuril Islands</gml:description> <gml:name>urn:ioos:station:wmo:21417</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.19 157.14</gml:lowerCorner> <gml:upperCorner>43.19 157.14</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2008-08-21T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21417"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21418"> <gml:description>450 NM NE of Tokyo, Japan</gml:description> <gml:name>urn:ioos:station:wmo:21418</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.71 148.67</gml:lowerCorner> <gml:upperCorner>38.71 148.67</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T19:15:00Z</gml:beginPosition> <gml:endPosition>2011-12-08T05:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21418"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-21419"> <gml:description>209 SE of KURIL ISLANDS</gml:description> <gml:name>urn:ioos:station:wmo:21419</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.471 155.736</gml:lowerCorner> <gml:upperCorner>44.471 155.736</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-06T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:21419"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-23020"> <gml:description>Red Sea</gml:description> <gml:name>urn:ioos:station:wmo:23020</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>22.161 38.501</gml:lowerCorner> <gml:upperCorner>22.161 38.501</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:50:00Z</gml:beginPosition> <gml:endPosition>2010-12-17T03:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:23020"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-23227"> <gml:description>Bay of Bengal</gml:description> <gml:name>urn:ioos:station:wmo:23227</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>6.255 88.792</gml:lowerCorner> <gml:upperCorner>6.255 88.792</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-27T12:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:23227"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-23228"> <gml:description>Arabian Sea</gml:description> <gml:name>urn:ioos:station:wmo:23228</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.799 65.347</gml:lowerCorner> <gml:upperCorner>20.799 65.347</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-27T12:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:23228"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-23401"> <gml:description>600 NM West-Northwest of Phuket, Thailand</gml:description> <gml:name>urn:ioos:station:wmo:23401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8.9 88.54</gml:lowerCorner> <gml:upperCorner>8.9 88.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:23401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28900"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28900</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.843 122.155</gml:lowerCorner> <gml:upperCorner>24.527 127.219</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-22T11:11:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28900"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28901"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28901</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.303 120.994</gml:lowerCorner> <gml:upperCorner>24.525 127.108</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-22T11:44:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28901"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28902"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28902</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.844 122.282</gml:lowerCorner> <gml:upperCorner>24.509 127.162</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-23T01:43:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T01:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28902"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28903"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28903</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.82 126.532</gml:lowerCorner> <gml:upperCorner>24.295 127.335</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-22T21:40:00Z</gml:beginPosition> <gml:endPosition>2010-10-09T05:32:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28903"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28904"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28904</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.042 121.426</gml:lowerCorner> <gml:upperCorner>23.622 127.087</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-30T02:37:00Z</gml:beginPosition> <gml:endPosition>2012-03-15T05:33:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28904"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-28905"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:28905</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>22.005 120.325</gml:lowerCorner> <gml:upperCorner>22.029 120.33</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-03-15T07:53:00Z</gml:beginPosition> <gml:endPosition>2012-03-15T11:27:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:28905"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32012"> <gml:description>Woods Hole Stratus Wave Station </gml:description> <gml:name>urn:ioos:station:wmo:32012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-19.713 -85.585</gml:lowerCorner> <gml:upperCorner>-19.713 -85.585</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-02-28T23:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32303"> <gml:description>5N 95W</gml:description> <gml:name>urn:ioos:station:wmo:32303</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -95</gml:lowerCorner> <gml:upperCorner>5 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32303"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32304"> <gml:description>5S 95W</gml:description> <gml:name>urn:ioos:station:wmo:32304</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -95</gml:lowerCorner> <gml:upperCorner>-5 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32304"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32305"> <gml:description>8S 95W</gml:description> <gml:name>urn:ioos:station:wmo:32305</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 -95</gml:lowerCorner> <gml:upperCorner>-8 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T13:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32305"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32315"> <gml:description>5N 110W</gml:description> <gml:name>urn:ioos:station:wmo:32315</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -110</gml:lowerCorner> <gml:upperCorner>5 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32315"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32316"> <gml:description>2N 110W</gml:description> <gml:name>urn:ioos:station:wmo:32316</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -110</gml:lowerCorner> <gml:upperCorner>2 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T11:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32316"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32317"> <gml:description>2S 110W</gml:description> <gml:name>urn:ioos:station:wmo:32317</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -110</gml:lowerCorner> <gml:upperCorner>-2 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T13:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32317"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32318"> <gml:description>5S 110W</gml:description> <gml:name>urn:ioos:station:wmo:32318</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -110</gml:lowerCorner> <gml:upperCorner>-5 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-07-31T11:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32318"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32319"> <gml:description>8S 110W</gml:description> <gml:name>urn:ioos:station:wmo:32319</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 -110</gml:lowerCorner> <gml:upperCorner>-8 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-15T20:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32319"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32320"> <gml:description>2N 95W</gml:description> <gml:name>urn:ioos:station:wmo:32320</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -95</gml:lowerCorner> <gml:upperCorner>2 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2012-03-09T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32320"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32321"> <gml:description>0 95W</gml:description> <gml:name>urn:ioos:station:wmo:32321</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -95</gml:lowerCorner> <gml:upperCorner>0 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32321"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32322"> <gml:description>2S 95W</gml:description> <gml:name>urn:ioos:station:wmo:32322</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -95</gml:lowerCorner> <gml:upperCorner>-2 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-04-23T12:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32322"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32323"> <gml:description>0 110W</gml:description> <gml:name>urn:ioos:station:wmo:32323</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -110</gml:lowerCorner> <gml:upperCorner>0 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-02T04:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32323"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32401"> <gml:description>260 NM West-Southwest of Arica Chile</gml:description> <gml:name>urn:ioos:station:wmo:32401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-19.55 -74.81</gml:lowerCorner> <gml:upperCorner>-19.55 -74.81</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32411"> <gml:description>710 NM West-Southwest of Panama City, Panama</gml:description> <gml:name>urn:ioos:station:wmo:32411</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>4.92 -90.69</gml:lowerCorner> <gml:upperCorner>4.92 -90.69</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-12T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32411"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32412"> <gml:description>630 NM Southwest of Lima, Peru</gml:description> <gml:name>urn:ioos:station:wmo:32412</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-17.98 -86.39</gml:lowerCorner> <gml:upperCorner>-17.98 -86.39</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32412"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32413"> <gml:description>1000 NM WestNorthwest of Lima, Peru</gml:description> <gml:name>urn:ioos:station:wmo:32413</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-7.397 -93.5</gml:lowerCorner> <gml:upperCorner>-7.397 -93.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-08-23T02:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32413"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32487"> <gml:description>Buenaventura, Colombia</gml:description> <gml:name>urn:ioos:station:wmo:32487</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>3.517 -77.737</gml:lowerCorner> <gml:upperCorner>3.517 -77.737</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T11:25:00Z</gml:beginPosition> <gml:endPosition>2010-01-08T20:25:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32487"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32488"> <gml:description>Bahia Solano, Colombia</gml:description> <gml:name>urn:ioos:station:wmo:32488</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>6.258 -77.511</gml:lowerCorner> <gml:upperCorner>6.258 -77.511</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-01T11:10:00Z</gml:beginPosition> <gml:endPosition>2009-10-16T02:10:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32488"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-32st0"> <gml:description>Stratus</gml:description> <gml:name>urn:ioos:station:wmo:32st0</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-19.713 -85.585</gml:lowerCorner> <gml:upperCorner>-19.713 -85.585</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-14T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:32st0"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41001"> <gml:description>150 NM East of Cape HATTERAS</gml:description> <gml:name>urn:ioos:station:wmo:41001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.7 -72.73</gml:lowerCorner> <gml:upperCorner>34.7 -72.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41002"> <gml:description>S HATTERAS - 250 NM East of Charleston, SC</gml:description> <gml:name>urn:ioos:station:wmo:41002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.382 -75.415</gml:lowerCorner> <gml:upperCorner>32.382 -75.415</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-11T19:00:00Z</gml:beginPosition> <gml:endPosition>2012-02-01T13:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41004"> <gml:description>EDISTO - 41 NM Southeast of Charleston, SC</gml:description> <gml:name>urn:ioos:station:wmo:41004</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.5 -79.09</gml:lowerCorner> <gml:upperCorner>32.5 -79.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41004"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41008"> <gml:description>GRAYS REEF - 40 NM Southeast of Savannah, GA</gml:description> <gml:name>urn:ioos:station:wmo:41008</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.4 -80.87</gml:lowerCorner> <gml:upperCorner>31.4 -80.87</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41008"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41009"> <gml:description>CANAVERAL 20 NM East of Cape Canaveral, FL</gml:description> <gml:name>urn:ioos:station:wmo:41009</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.519 -80.166</gml:lowerCorner> <gml:upperCorner>28.519 -80.166</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41009"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41010"> <gml:description>CANAVERAL EAST 120NM East of Cape Canaveral</gml:description> <gml:name>urn:ioos:station:wmo:41010</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.91 -78.47</gml:lowerCorner> <gml:upperCorner>28.91 -78.47</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41010"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41012"> <gml:description>40NM ENE of St Augustine, FL</gml:description> <gml:name>urn:ioos:station:wmo:41012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.04 -80.55</gml:lowerCorner> <gml:upperCorner>30.04 -80.55</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-30T21:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41013"> <gml:description>Frying Pan Shoals, NC</gml:description> <gml:name>urn:ioos:station:wmo:41013</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.44 -77.74</gml:lowerCorner> <gml:upperCorner>33.44 -77.74</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41013"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41024"> <gml:description>Sunset Nearshore (SUN2)</gml:description> <gml:name>urn:ioos:station:wmo:41024</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.85 -78.48</gml:lowerCorner> <gml:upperCorner>33.85 -78.48</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41024"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41025"> <gml:description>Diamond Shoals</gml:description> <gml:name>urn:ioos:station:wmo:41025</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.01 -75.4</gml:lowerCorner> <gml:upperCorner>35.01 -75.4</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41025"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41029"> <gml:description>Capers Nearshore (CAP2)</gml:description> <gml:name>urn:ioos:station:wmo:41029</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.81 -79.63</gml:lowerCorner> <gml:upperCorner>32.81 -79.63</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-11T08:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41029"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41030"> <gml:description>Capers Mid-Shelf (CAP 3)</gml:description> <gml:name>urn:ioos:station:wmo:41030</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.52 -79.34</gml:lowerCorner> <gml:upperCorner>32.52 -79.34</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-10T22:00:00Z</gml:beginPosition> <gml:endPosition>2008-02-04T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41030"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41033"> <gml:description>Fripp Nearshore (FRP 2)</gml:description> <gml:name>urn:ioos:station:wmo:41033</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.28 -80.41</gml:lowerCorner> <gml:upperCorner>32.28 -80.41</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41033"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41035"> <gml:description>Onslow Bay, NC</gml:description> <gml:name>urn:ioos:station:wmo:41035</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.48 -77.28</gml:lowerCorner> <gml:upperCorner>34.48 -77.28</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-27T14:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41035"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41036"> <gml:description>Onslow Bay, NC</gml:description> <gml:name>urn:ioos:station:wmo:41036</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.21 -76.95</gml:lowerCorner> <gml:upperCorner>34.21 -76.95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41036"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41037"> <gml:description>ILM3 - 27 miles SE of Wrightsville Beach, NC</gml:description> <gml:name>urn:ioos:station:wmo:41037</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.991 -77.36</gml:lowerCorner> <gml:upperCorner>33.991 -77.36</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T22:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41037"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41038"> <gml:description>ILM2 - 5 miles SE of Wrightsville, NC</gml:description> <gml:name>urn:ioos:station:wmo:41038</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.14 -77.71</gml:lowerCorner> <gml:upperCorner>34.14 -77.71</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T01:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41038"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41040"> <gml:description>West Atlantic</gml:description> <gml:name>urn:ioos:station:wmo:41040</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.48 -53.03</gml:lowerCorner> <gml:upperCorner>14.48 -53.03</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41040"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41041"> <gml:description>Middle Atlantic</gml:description> <gml:name>urn:ioos:station:wmo:41041</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.36 -46.01</gml:lowerCorner> <gml:upperCorner>14.36 -46.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41041"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41043"> <gml:description>South Western Atlantic</gml:description> <gml:name>urn:ioos:station:wmo:41043</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.99 -65.01</gml:lowerCorner> <gml:upperCorner>20.99 -65.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41043"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41044"> <gml:description> Atlantic South</gml:description> <gml:name>urn:ioos:station:wmo:41044</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.652 -58.695</gml:lowerCorner> <gml:upperCorner>21.652 -58.695</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41044"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41046"> <gml:description>E Bahamas</gml:description> <gml:name>urn:ioos:station:wmo:41046</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24 -70.99</gml:lowerCorner> <gml:upperCorner>24 -70.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41046"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41047"> <gml:description>NE Bahamas</gml:description> <gml:name>urn:ioos:station:wmo:41047</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.47 -71.49</gml:lowerCorner> <gml:upperCorner>27.47 -71.49</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41047"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41048"> <gml:description>W Bermuda</gml:description> <gml:name>urn:ioos:station:wmo:41048</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.98 -69.65</gml:lowerCorner> <gml:upperCorner>31.98 -69.65</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41048"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41049"> <gml:description>Atlantic (South)</gml:description> <gml:name>urn:ioos:station:wmo:41049</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.5 -63</gml:lowerCorner> <gml:upperCorner>27.5 -63</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T18:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41049"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41052"> <gml:description>South of St. John, Virgin Islands</gml:description> <gml:name>urn:ioos:station:wmo:41052</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.251 -64.763</gml:lowerCorner> <gml:upperCorner>18.251 -64.763</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-16T04:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41052"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41053"> <gml:description>San Juan, PR</gml:description> <gml:name>urn:ioos:station:wmo:41053</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.476 -66.099</gml:lowerCorner> <gml:upperCorner>18.476 -66.099</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-27T11:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-07T14:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41053"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41060"> <gml:description>Woods Hole Northwest Tropical Atlantic Wave Station</gml:description> <gml:name>urn:ioos:station:wmo:41060</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.75 -50.95</gml:lowerCorner> <gml:upperCorner>14.75 -50.95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-12-10T19:40:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41060"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41109"> <gml:description>New River Inlet, NC - 190</gml:description> <gml:name>urn:ioos:station:wmo:41109</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.483 -77.3</gml:lowerCorner> <gml:upperCorner>35.483 -77.3</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-16T15:54:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41109"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41110"> <gml:description>Masonboro Inlet, NC</gml:description> <gml:name>urn:ioos:station:wmo:41110</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.141 -77.709</gml:lowerCorner> <gml:upperCorner>34.141 -77.709</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41110"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41112"> <gml:description>Offshore Fernandina Beach, FL (132)</gml:description> <gml:name>urn:ioos:station:wmo:41112</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.719 -81.293</gml:lowerCorner> <gml:upperCorner>30.719 -81.293</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41112"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41113"> <gml:description>Cape Canaveral Nearshore, FL (143)</gml:description> <gml:name>urn:ioos:station:wmo:41113</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.4 -80.53</gml:lowerCorner> <gml:upperCorner>28.4 -80.53</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41113"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41114"> <gml:description>Fort Pierce, FL (134)</gml:description> <gml:name>urn:ioos:station:wmo:41114</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.551 -80.225</gml:lowerCorner> <gml:upperCorner>27.551 -80.225</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:12:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41114"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41115"> <gml:description>Rincon, Puerto Rico (181)</gml:description> <gml:name>urn:ioos:station:wmo:41115</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.376 -67.28</gml:lowerCorner> <gml:upperCorner>18.376 -67.28</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-03T12:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41115"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41140"> <gml:description>Chistiansted, St. Croix, Virgin Islands</gml:description> <gml:name>urn:ioos:station:wmo:41140</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.769 -64.723</gml:lowerCorner> <gml:upperCorner>17.769 -64.723</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition>2010-11-02T11:52:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41140"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41141"> <gml:description>Fareham, St. Croix, Virgin Islands</gml:description> <gml:name>urn:ioos:station:wmo:41141</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.684 -64.635</gml:lowerCorner> <gml:upperCorner>17.684 -64.635</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-03T18:21:00Z</gml:beginPosition> <gml:endPosition>2011-04-13T12:21:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41141"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41193"> <gml:description>Puerto Bolivar, Colombia</gml:description> <gml:name>urn:ioos:station:wmo:41193</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>12.351 -72.218</gml:lowerCorner> <gml:upperCorner>12.351 -72.218</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-07T13:30:00Z</gml:beginPosition> <gml:endPosition>2010-01-08T22:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41193"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41194"> <gml:description>Barranquilla, Colombia</gml:description> <gml:name>urn:ioos:station:wmo:41194</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>11.161 -74.681</gml:lowerCorner> <gml:upperCorner>11.161 -74.681</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-04-20T16:10:00Z</gml:beginPosition> <gml:endPosition>2009-04-20T16:10:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41194"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41420"> <gml:description>690 NM East of Miami, FL</gml:description> <gml:name>urn:ioos:station:wmo:41420</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.31 -67.64</gml:lowerCorner> <gml:upperCorner>23.31 -67.64</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41420"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41421"> <gml:description>320 NM North of San Juan, PR</gml:description> <gml:name>urn:ioos:station:wmo:41421</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.4 -63.9</gml:lowerCorner> <gml:upperCorner>23.4 -63.9</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-12T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41421"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41424"> <gml:description>370 NM East of Charleston, SC</gml:description> <gml:name>urn:ioos:station:wmo:41424</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.93 -72.47</gml:lowerCorner> <gml:upperCorner>32.93 -72.47</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2011-09-14T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41424"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41nt0"> <gml:description>NTAS - Northwest Tropical Atlantic</gml:description> <gml:name>urn:ioos:station:wmo:41nt0</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.817 -52</gml:lowerCorner> <gml:upperCorner>14.817 -52</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-19T07:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-08T10:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41nt0"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-41x01"> <gml:description>Old 41001 (adrift)</gml:description> <gml:name>urn:ioos:station:wmo:41x01</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.704 -72.734</gml:lowerCorner> <gml:upperCorner>34.704 -72.734</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-04-21T01:50:00Z</gml:beginPosition> <gml:endPosition>2011-05-06T06:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:41x01"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42001"> <gml:description>MID GULF 180 nm South of Southwest Pass, LA</gml:description> <gml:name>urn:ioos:station:wmo:42001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.9 -89.67</gml:lowerCorner> <gml:upperCorner>25.9 -89.67</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42002"> <gml:description>W GULF 240 nm South-Southeast of Sabine, TX</gml:description> <gml:name>urn:ioos:station:wmo:42002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.17 -94.42</gml:lowerCorner> <gml:upperCorner>25.17 -94.42</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42003"> <gml:description>E GULF 262 nm South of Panama City, FL</gml:description> <gml:name>urn:ioos:station:wmo:42003</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.74 -85.73</gml:lowerCorner> <gml:upperCorner>25.74 -85.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-12-05T22:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42003"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42007"> <gml:description>BILOXI 22 nm South-Southeast of Biloxi, MS</gml:description> <gml:name>urn:ioos:station:wmo:42007</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.09 -88.769</gml:lowerCorner> <gml:upperCorner>30.09 -88.769</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:50:00Z</gml:beginPosition> <gml:endPosition>2009-12-09T11:20:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42007"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42012"> <gml:description>Orange Beach AL Buoy</gml:description> <gml:name>urn:ioos:station:wmo:42012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.065 -87.555</gml:lowerCorner> <gml:upperCorner>30.065 -87.555</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42013"> <gml:description>C10 - Navy-2</gml:description> <gml:name>urn:ioos:station:wmo:42013</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.169 -82.926</gml:lowerCorner> <gml:upperCorner>27.169 -82.926</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-01T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42013"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42019"> <gml:description>Freeport, TX 60 NM South of Freeport, TX</gml:description> <gml:name>urn:ioos:station:wmo:42019</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.91 -95.36</gml:lowerCorner> <gml:upperCorner>27.91 -95.36</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2012-03-21T18:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42019"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42020"> <gml:description>Corpus Christi, TX 50NM Southeast of Corpus Christi, TX</gml:description> <gml:name>urn:ioos:station:wmo:42020</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.96 -96.7</gml:lowerCorner> <gml:upperCorner>26.96 -96.7</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42020"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42021"> <gml:description>C14 - Pasco County Buoy, FL</gml:description> <gml:name>urn:ioos:station:wmo:42021</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.311 -83.306</gml:lowerCorner> <gml:upperCorner>28.311 -83.306</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-01T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-01T17:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42021"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42022"> <gml:description>C12 - West Florida Central Buoy</gml:description> <gml:name>urn:ioos:station:wmo:42022</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.5 -83.72</gml:lowerCorner> <gml:upperCorner>27.5 -83.72</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T18:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42022"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42023"> <gml:description>C13 - West Florida South Buoy</gml:description> <gml:name>urn:ioos:station:wmo:42023</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.064 -83.074</gml:lowerCorner> <gml:upperCorner>26.064 -83.074</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-01-09T18:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42023"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42024"> <gml:description>C16 - W. FL MERHAB</gml:description> <gml:name>urn:ioos:station:wmo:42024</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.464 -84.219</gml:lowerCorner> <gml:upperCorner>27.464 -84.219</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-01T20:00:00Z</gml:beginPosition> <gml:endPosition>2009-07-21T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42024"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42035"> <gml:description>GALVESTON 22NM East of Galveston, TX</gml:description> <gml:name>urn:ioos:station:wmo:42035</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.25 -94.41</gml:lowerCorner> <gml:upperCorner>29.25 -94.41</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42035"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42036"> <gml:description>W. TAMPA 106NM West Northwest of Tampa, FL</gml:description> <gml:name>urn:ioos:station:wmo:42036</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.5 -84.52</gml:lowerCorner> <gml:upperCorner>28.5 -84.52</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42036"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42039"> <gml:description>PENSACOLA - 115NM East Southeast of Pensacola, FL</gml:description> <gml:name>urn:ioos:station:wmo:42039</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.79 -86.01</gml:lowerCorner> <gml:upperCorner>28.79 -86.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42039"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42040"> <gml:description>MOBILE SOUTH 64 nm South of Dauphin Island, AL</gml:description> <gml:name>urn:ioos:station:wmo:42040</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.21 -88.21</gml:lowerCorner> <gml:upperCorner>29.21 -88.21</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42040"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42043"> <gml:description>GA-252 TABS B</gml:description> <gml:name>urn:ioos:station:wmo:42043</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.982 -94.919</gml:lowerCorner> <gml:upperCorner>28.982 -94.919</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-13T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42043"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42044"> <gml:description>PS-1126 TABS J</gml:description> <gml:name>urn:ioos:station:wmo:42044</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.19 -97.05</gml:lowerCorner> <gml:upperCorner>26.19 -97.05</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-06T10:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42044"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42045"> <gml:description>PI-745 TABS K</gml:description> <gml:name>urn:ioos:station:wmo:42045</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.217 -96.5</gml:lowerCorner> <gml:upperCorner>26.217 -96.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-13T19:00:00Z</gml:beginPosition> <gml:endPosition>2012-03-18T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42045"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42046"> <gml:description>HI-A595 TABS N</gml:description> <gml:name>urn:ioos:station:wmo:42046</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.89 -94.037</gml:lowerCorner> <gml:upperCorner>27.89 -94.037</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-13T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42046"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42047"> <gml:description>HI-A389 TABS V</gml:description> <gml:name>urn:ioos:station:wmo:42047</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.897 -93.597</gml:lowerCorner> <gml:upperCorner>27.897 -93.597</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-18T12:30:00Z</gml:beginPosition> <gml:endPosition>2012-05-03T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42047"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42048"> <gml:description>TABS D</gml:description> <gml:name>urn:ioos:station:wmo:42048</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.94 -96.84</gml:lowerCorner> <gml:upperCorner>27.94 -96.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-08-15T12:30:00Z</gml:beginPosition> <gml:endPosition>2008-07-24T18:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42048"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42049"> <gml:description>TABS W</gml:description> <gml:name>urn:ioos:station:wmo:42049</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.35 -96.01</gml:lowerCorner> <gml:upperCorner>28.35 -96.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:30:00Z</gml:beginPosition> <gml:endPosition>2008-01-07T10:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42049"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42050"> <gml:description>TABS F</gml:description> <gml:name>urn:ioos:station:wmo:42050</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.84 -94.24</gml:lowerCorner> <gml:upperCorner>28.84 -94.24</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T02:30:00Z</gml:beginPosition> <gml:endPosition>2008-07-24T17:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42050"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42055"> <gml:description>Bay of Campeche</gml:description> <gml:name>urn:ioos:station:wmo:42055</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>22.017 -94.046</gml:lowerCorner> <gml:upperCorner>22.017 -94.046</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42055"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42056"> <gml:description>Yucatan Basin</gml:description> <gml:name>urn:ioos:station:wmo:42056</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.87 -85.06</gml:lowerCorner> <gml:upperCorner>19.87 -85.06</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42056"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42057"> <gml:description>Western Caribbean</gml:description> <gml:name>urn:ioos:station:wmo:42057</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>16.83 -81.5</gml:lowerCorner> <gml:upperCorner>16.83 -81.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42057"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42058"> <gml:description>Central Caribbean</gml:description> <gml:name>urn:ioos:station:wmo:42058</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>15.09 -75.06</gml:lowerCorner> <gml:upperCorner>15.09 -75.06</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42058"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42059"> <gml:description>Eastern Caribbean</gml:description> <gml:name>urn:ioos:station:wmo:42059</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>15.01 -67.5</gml:lowerCorner> <gml:upperCorner>15.01 -67.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42059"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42060"> <gml:description>Eastern Carribean</gml:description> <gml:name>urn:ioos:station:wmo:42060</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>16.5 -63.5</gml:lowerCorner> <gml:upperCorner>16.5 -63.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42060"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42065"> <gml:description>Near 42058 Central Caribbean</gml:description> <gml:name>urn:ioos:station:wmo:42065</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.927 -75.064</gml:lowerCorner> <gml:upperCorner>14.927 -75.064</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-02T22:50:00Z</gml:beginPosition> <gml:endPosition>2012-02-29T05:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42065"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42067"> <gml:description>USM3M01</gml:description> <gml:name>urn:ioos:station:wmo:42067</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.044 -88.658</gml:lowerCorner> <gml:upperCorner>30.044 -88.658</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-03T19:40:00Z</gml:beginPosition> <gml:endPosition>2011-12-20T00:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42067"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42080"> <gml:description>Offshore Sand Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:42080</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.39 -81.95</gml:lowerCorner> <gml:upperCorner>24.39 -81.95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-30T23:00:00Z</gml:beginPosition> <gml:endPosition>2011-03-23T21:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42080"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42085"> <gml:description>Southeast of Ponce, PR</gml:description> <gml:name>urn:ioos:station:wmo:42085</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.86 -66.524</gml:lowerCorner> <gml:upperCorner>17.86 -66.524</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-03T20:50:00Z</gml:beginPosition> <gml:endPosition>2012-01-18T23:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42085"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42099"> <gml:description>Offshore St. Petersburg, FL (144)</gml:description> <gml:name>urn:ioos:station:wmo:42099</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.34 -84.245</gml:lowerCorner> <gml:upperCorner>27.34 -84.245</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:05:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42099"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42360"> <gml:description>BW Pioneer buoy - Walker Ridge 249</gml:description> <gml:name>urn:ioos:station:wmo:42360</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.7 -90.46</gml:lowerCorner> <gml:upperCorner>26.7 -90.46</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-02-06T05:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42360"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42361"> <gml:description>Auger - Garden Banks 426</gml:description> <gml:name>urn:ioos:station:wmo:42361</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.55 -92.49</gml:lowerCorner> <gml:upperCorner>27.55 -92.49</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-04T00:08:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42361"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42362"> <gml:description>Brutus - Green Canyon 158</gml:description> <gml:name>urn:ioos:station:wmo:42362</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.8 -90.67</gml:lowerCorner> <gml:upperCorner>27.8 -90.67</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T02:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42362"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42363"> <gml:description>Mars - Mississippi Canyon 807</gml:description> <gml:name>urn:ioos:station:wmo:42363</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.16 -89.22</gml:lowerCorner> <gml:upperCorner>28.16 -89.22</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-02-14T20:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42363"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42364"> <gml:description>Ram-Powell - Viosca Knoll 936</gml:description> <gml:name>urn:ioos:station:wmo:42364</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.06 -88.09</gml:lowerCorner> <gml:upperCorner>29.06 -88.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T02:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42364"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42365"> <gml:description>Ursa - Mississippi Canyon 809</gml:description> <gml:name>urn:ioos:station:wmo:42365</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.2 -89.12</gml:lowerCorner> <gml:upperCorner>28.2 -89.12</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T13:09:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42365"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42366"> <gml:description>Red Hawk - Garden Banks 877</gml:description> <gml:name>urn:ioos:station:wmo:42366</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.122 -91.959</gml:lowerCorner> <gml:upperCorner>27.122 -91.959</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-09T00:19:00Z</gml:beginPosition> <gml:endPosition>2011-11-09T16:20:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42366"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42367"> <gml:description>Matterhorn - Mississippi Canyon 243</gml:description> <gml:name>urn:ioos:station:wmo:42367</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.74 -88.83</gml:lowerCorner> <gml:upperCorner>28.74 -88.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:13:00Z</gml:beginPosition> <gml:endPosition>2009-06-11T12:05:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42367"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42368"> <gml:description>Magnolia - Garden Banks 783</gml:description> <gml:name>urn:ioos:station:wmo:42368</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.2 -92.2</gml:lowerCorner> <gml:upperCorner>27.2 -92.2</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42368"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42369"> <gml:description>Mad Dog - Green Canyon 782</gml:description> <gml:name>urn:ioos:station:wmo:42369</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.19 -90.27</gml:lowerCorner> <gml:upperCorner>27.19 -90.27</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42369"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42370"> <gml:description>Holstein - Green Canyon 645</gml:description> <gml:name>urn:ioos:station:wmo:42370</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.32 -90.54</gml:lowerCorner> <gml:upperCorner>27.32 -90.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:17:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42370"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42372"> <gml:description>Genesis - Green Canyon 205</gml:description> <gml:name>urn:ioos:station:wmo:42372</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.78 -90.52</gml:lowerCorner> <gml:upperCorner>27.78 -90.52</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:27:00Z</gml:beginPosition> <gml:endPosition>2012-05-11T13:39:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42372"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42373"> <gml:description>Boomvang - East Breaks 643</gml:description> <gml:name>urn:ioos:station:wmo:42373</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.354 -94.625</gml:lowerCorner> <gml:upperCorner>27.354 -94.625</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition>2011-03-08T05:48:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42373"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42374"> <gml:description>Horn Mountain - Mississippi Canyon 126 and 127</gml:description> <gml:name>urn:ioos:station:wmo:42374</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.87 -88.06</gml:lowerCorner> <gml:upperCorner>28.87 -88.06</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:20:00Z</gml:beginPosition> <gml:endPosition>2012-05-14T20:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42374"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42375"> <gml:description>Na Kika - Mississippi Canyon 474</gml:description> <gml:name>urn:ioos:station:wmo:42375</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.52 -88.29</gml:lowerCorner> <gml:upperCorner>28.52 -88.29</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T04:07:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42375"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42376"> <gml:description>Marlin - Viosca Knoll 915</gml:description> <gml:name>urn:ioos:station:wmo:42376</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.16 -87.94</gml:lowerCorner> <gml:upperCorner>29.16 -87.94</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T14:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42376"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42377"> <gml:description>Constitution - Green Canyon 680</gml:description> <gml:name>urn:ioos:station:wmo:42377</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.29 -90.97</gml:lowerCorner> <gml:upperCorner>27.29 -90.97</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42377"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42379"> <gml:description>Marco Polo - Green Canyon 608</gml:description> <gml:name>urn:ioos:station:wmo:42379</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.36 -90.18</gml:lowerCorner> <gml:upperCorner>27.36 -90.18</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:03:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42379"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42380"> <gml:description>Devil's Tower - Mississippi Canyon 773</gml:description> <gml:name>urn:ioos:station:wmo:42380</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.209 -88.738</gml:lowerCorner> <gml:upperCorner>28.209 -88.738</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-31T17:58:00Z</gml:beginPosition> <gml:endPosition>2011-06-30T19:41:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42380"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42381"> <gml:description>Gomez - Mississippi Canyon 711</gml:description> <gml:name>urn:ioos:station:wmo:42381</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.22 -89.62</gml:lowerCorner> <gml:upperCorner>28.22 -89.62</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T18:08:00Z</gml:beginPosition> <gml:endPosition>2012-05-11T21:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42381"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42382"> <gml:description>Gunnison - Garden Banks 668</gml:description> <gml:name>urn:ioos:station:wmo:42382</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.304 -93.538</gml:lowerCorner> <gml:upperCorner>27.304 -93.538</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:38:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42382"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42383"> <gml:description>Neptune - Green Canyon 613</gml:description> <gml:name>urn:ioos:station:wmo:42383</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.37 -89.92</gml:lowerCorner> <gml:upperCorner>27.37 -89.92</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T19:48:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42383"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42384"> <gml:description>Prince TLP - Ewing Bank 1003</gml:description> <gml:name>urn:ioos:station:wmo:42384</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.993 -90.326</gml:lowerCorner> <gml:upperCorner>27.993 -90.326</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-09T19:36:00Z</gml:beginPosition> <gml:endPosition>2009-10-17T02:52:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42384"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42385"> <gml:description>Blind Faith - Mississippi Canyon 696</gml:description> <gml:name>urn:ioos:station:wmo:42385</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.34 -88.266</gml:lowerCorner> <gml:upperCorner>28.34 -88.266</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-31T18:19:00Z</gml:beginPosition> <gml:endPosition>2011-09-02T17:08:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42385"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42386"> <gml:description>Tahiti - Green Canyon 641</gml:description> <gml:name>urn:ioos:station:wmo:42386</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.326 -90.714</gml:lowerCorner> <gml:upperCorner>27.326 -90.714</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-17T16:54:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42386"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42387"> <gml:description>Thunderhawk - Mississippi Canyon 734</gml:description> <gml:name>urn:ioos:station:wmo:42387</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.267 -88.399</gml:lowerCorner> <gml:upperCorner>28.267 -88.399</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42387"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42388"> <gml:description>Producer 1 - Green Canyon 237</gml:description> <gml:name>urn:ioos:station:wmo:42388</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.73 -91.109</gml:lowerCorner> <gml:upperCorner>27.73 -91.109</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-11-01T20:17:00Z</gml:beginPosition> <gml:endPosition>2012-04-11T20:17:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42388"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42390"> <gml:description>Perdido Host - Alaminos Canyon 857</gml:description> <gml:name>urn:ioos:station:wmo:42390</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.129 -94.898</gml:lowerCorner> <gml:upperCorner>26.129 -94.898</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-04-13T17:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42390"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42391"> <gml:description>Titan - Mississippi Canyon 941</gml:description> <gml:name>urn:ioos:station:wmo:42391</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.034 -89.101</gml:lowerCorner> <gml:upperCorner>28.034 -89.101</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-04-12T18:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42391"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42393"> <gml:description>Shenzi - Green Canyon 653</gml:description> <gml:name>urn:ioos:station:wmo:42393</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.301 -90.135</gml:lowerCorner> <gml:upperCorner>27.301 -90.135</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-26T11:07:00Z</gml:beginPosition> <gml:endPosition>2012-02-27T14:52:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42393"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42407"> <gml:description>230 NM South of San Juan, PR</gml:description> <gml:name>urn:ioos:station:wmo:42407</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>15.26 -68.24</gml:lowerCorner> <gml:upperCorner>15.26 -68.24</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42407"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42408"> <gml:description>310 NM South-Southeast of New Orleans, LA</gml:description> <gml:name>urn:ioos:station:wmo:42408</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.41 -86.8</gml:lowerCorner> <gml:upperCorner>25.41 -86.8</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-08-28T20:15:00Z</gml:beginPosition> <gml:endPosition>2008-11-28T00:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42408"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42409"> <gml:description>295 NM Southeast of New Orleans, LA</gml:description> <gml:name>urn:ioos:station:wmo:42409</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.658 -85.791</gml:lowerCorner> <gml:upperCorner>26.658 -85.791</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T12:15:00Z</gml:beginPosition> <gml:endPosition>2012-04-28T10:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42409"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42861"> <gml:description>Nautilus - Mississippi Canyon 807</gml:description> <gml:name>urn:ioos:station:wmo:42861</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.18 -89.23</gml:lowerCorner> <gml:upperCorner>28.18 -89.23</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T15:21:00Z</gml:beginPosition> <gml:endPosition>2012-05-05T15:39:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42861"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42862"> <gml:description>Jim Thompson - Mississippi Canyon 809</gml:description> <gml:name>urn:ioos:station:wmo:42862</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.176 -89.117</gml:lowerCorner> <gml:upperCorner>28.176 -89.117</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42862"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42863"> <gml:description>Ocean Victory - Green Canyon 646</gml:description> <gml:name>urn:ioos:station:wmo:42863</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.32 -90.48</gml:lowerCorner> <gml:upperCorner>27.32 -90.48</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-24T00:10:00Z</gml:beginPosition> <gml:endPosition>2012-04-20T09:21:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42863"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42864"> <gml:description>Noble Max Smith - Garden Banks 344</gml:description> <gml:name>urn:ioos:station:wmo:42864</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.65 -92.15</gml:lowerCorner> <gml:upperCorner>27.65 -92.15</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:28:00Z</gml:beginPosition> <gml:endPosition>2008-04-30T16:38:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42864"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42865"> <gml:description>Celtic Sea - Mississippi Canyon 459</gml:description> <gml:name>urn:ioos:station:wmo:42865</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.49 -89</gml:lowerCorner> <gml:upperCorner>28.49 -89</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T22:08:00Z</gml:beginPosition> <gml:endPosition>2008-06-27T12:27:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42865"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42866"> <gml:description>Transocean Amirante - Garden Banks 463</gml:description> <gml:name>urn:ioos:station:wmo:42866</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.5 -92.84</gml:lowerCorner> <gml:upperCorner>27.5 -92.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:10:00Z</gml:beginPosition> <gml:endPosition>2011-06-05T18:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42866"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42867"> <gml:description>DeepSeas - Walker Ridge 677</gml:description> <gml:name>urn:ioos:station:wmo:42867</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.3 -91.11</gml:lowerCorner> <gml:upperCorner>26.3 -91.11</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-25T17:34:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42867"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42868"> <gml:description>Discoverer Enterprise - Mississippi Canyon 822</gml:description> <gml:name>urn:ioos:station:wmo:42868</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.16 -88.48</gml:lowerCorner> <gml:upperCorner>28.16 -88.48</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:19:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42868"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42869"> <gml:description>Ocean Confidence - Mississippi Canyon 683</gml:description> <gml:name>urn:ioos:station:wmo:42869</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.27 -88.84</gml:lowerCorner> <gml:upperCorner>28.27 -88.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:12:00Z</gml:beginPosition> <gml:endPosition>2010-06-05T15:29:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42869"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42870"> <gml:description>Ocean America - Garden Banks 462</gml:description> <gml:name>urn:ioos:station:wmo:42870</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.5 -92.85</gml:lowerCorner> <gml:upperCorner>27.5 -92.85</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T19:59:00Z</gml:beginPosition> <gml:endPosition>2010-01-15T14:07:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42870"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42871"> <gml:description>C R Luigs - Green Canyon 610</gml:description> <gml:name>urn:ioos:station:wmo:42871</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.35 -90.1</gml:lowerCorner> <gml:upperCorner>27.35 -90.1</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:07:00Z</gml:beginPosition> <gml:endPosition>2012-05-05T02:26:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42871"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42872"> <gml:description>Deepwater Horizon - Mississippi Canyon 727</gml:description> <gml:name>urn:ioos:station:wmo:42872</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.25 -88.81</gml:lowerCorner> <gml:upperCorner>28.25 -88.81</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T05:59:00Z</gml:beginPosition> <gml:endPosition>2010-04-21T02:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42872"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42873"> <gml:description>Ocean Quest - Mississippi Canyon 667</gml:description> <gml:name>urn:ioos:station:wmo:42873</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.25 -89.62</gml:lowerCorner> <gml:upperCorner>28.25 -89.62</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:00:00Z</gml:beginPosition> <gml:endPosition>2009-01-04T18:39:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42873"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42875"> <gml:description>Amos Runner - Green Canyon 956</gml:description> <gml:name>urn:ioos:station:wmo:42875</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.015 -90.403</gml:lowerCorner> <gml:upperCorner>27.015 -90.403</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-12T18:20:00Z</gml:beginPosition> <gml:endPosition>2012-03-22T17:53:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42875"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42876"> <gml:description>Ocean Star - East Breaks 599</gml:description> <gml:name>urn:ioos:station:wmo:42876</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.38 -94.62</gml:lowerCorner> <gml:upperCorner>27.38 -94.62</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:20:00Z</gml:beginPosition> <gml:endPosition>2009-04-21T18:58:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42876"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42877"> <gml:description>Cajun Express - Mississippi Canyon 696</gml:description> <gml:name>urn:ioos:station:wmo:42877</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.31 -88.2</gml:lowerCorner> <gml:upperCorner>28.31 -88.2</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:39:00Z</gml:beginPosition> <gml:endPosition>2010-02-16T17:21:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42877"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42878"> <gml:description>Paul Romano - Green Canyon 654</gml:description> <gml:name>urn:ioos:station:wmo:42878</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.32 -90.09</gml:lowerCorner> <gml:upperCorner>27.32 -90.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T17:56:00Z</gml:beginPosition> <gml:endPosition>2010-05-23T05:20:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42878"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42879"> <gml:description>ENSCO 7500 - Walker Ridge 029</gml:description> <gml:name>urn:ioos:station:wmo:42879</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.94 -90.54</gml:lowerCorner> <gml:upperCorner>26.94 -90.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:04:00Z</gml:beginPosition> <gml:endPosition>2008-09-23T11:32:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42879"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42881"> <gml:description>Transocean Marianas - Mississippi Canyon 522</gml:description> <gml:name>urn:ioos:station:wmo:42881</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.46 -88.11</gml:lowerCorner> <gml:upperCorner>28.46 -88.11</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:27:00Z</gml:beginPosition> <gml:endPosition>2009-08-01T14:24:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42881"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42882"> <gml:description>Ocean Valiant - Green Canyon 726</gml:description> <gml:name>urn:ioos:station:wmo:42882</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.22 -90.83</gml:lowerCorner> <gml:upperCorner>27.22 -90.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:09:00Z</gml:beginPosition> <gml:endPosition>2009-06-28T15:05:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42882"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42885"> <gml:description>Development Driller II - Green Canyon 743</gml:description> <gml:name>urn:ioos:station:wmo:42885</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.22 -90.03</gml:lowerCorner> <gml:upperCorner>27.22 -90.03</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:42:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42885"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42886"> <gml:description>Discoverer Spirit - Keithley Canyon 292</gml:description> <gml:name>urn:ioos:station:wmo:42886</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.67 -92.56</gml:lowerCorner> <gml:upperCorner>26.67 -92.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:02:00Z</gml:beginPosition> <gml:endPosition>2012-02-20T10:19:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42886"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42887"> <gml:description>Thunder Horse - Mississippi Canyon 778</gml:description> <gml:name>urn:ioos:station:wmo:42887</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.19 -88.5</gml:lowerCorner> <gml:upperCorner>28.19 -88.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:01:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42887"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42889"> <gml:description>Medusa - Mississippi Canyon 582</gml:description> <gml:name>urn:ioos:station:wmo:42889</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.39 -89.47</gml:lowerCorner> <gml:upperCorner>28.39 -89.47</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42889"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42890"> <gml:description>Front Runner - Green Canyon 338</gml:description> <gml:name>urn:ioos:station:wmo:42890</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.62 -90.44</gml:lowerCorner> <gml:upperCorner>27.62 -90.44</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T17:17:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42890"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42892"> <gml:description>Ocean Baroness - Green Canyon 468</gml:description> <gml:name>urn:ioos:station:wmo:42892</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.48 -90.56</gml:lowerCorner> <gml:upperCorner>27.48 -90.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:13:00Z</gml:beginPosition> <gml:endPosition>2010-02-28T15:26:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42892"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42894"> <gml:description>Lorris Bouzigard - Garden Banks 378</gml:description> <gml:name>urn:ioos:station:wmo:42894</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.62 -92.66</gml:lowerCorner> <gml:upperCorner>27.62 -92.66</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T19:59:00Z</gml:beginPosition> <gml:endPosition>2010-09-19T13:45:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42894"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42897"> <gml:description>Development Driller 1 - Atwater Valley 618</gml:description> <gml:name>urn:ioos:station:wmo:42897</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.34 -89.83</gml:lowerCorner> <gml:upperCorner>27.34 -89.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T14:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42897"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42899"> <gml:description>Ocean Endeavor - Walker Ridge 278</gml:description> <gml:name>urn:ioos:station:wmo:42899</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.66 -91.23</gml:lowerCorner> <gml:upperCorner>26.66 -91.23</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:36:00Z</gml:beginPosition> <gml:endPosition>2009-06-26T13:48:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42899"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42900"> <gml:description>Ocean Saratoga - Green Canyon 006</gml:description> <gml:name>urn:ioos:station:wmo:42900</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.94 -91.65</gml:lowerCorner> <gml:upperCorner>27.94 -91.65</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:29:00Z</gml:beginPosition> <gml:endPosition>2008-12-06T18:39:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42900"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42901"> <gml:description>Eirik Raude - Walker Ridge 848</gml:description> <gml:name>urn:ioos:station:wmo:42901</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.26 -94.6</gml:lowerCorner> <gml:upperCorner>26.26 -94.6</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T10:31:00Z</gml:beginPosition> <gml:endPosition>2008-07-23T03:24:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42901"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42902"> <gml:description>Clyde Boudreaux - Alaminos Canyon 857</gml:description> <gml:name>urn:ioos:station:wmo:42902</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.13 -94.9</gml:lowerCorner> <gml:upperCorner>26.13 -94.9</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:57:00Z</gml:beginPosition> <gml:endPosition>2011-04-29T14:02:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42902"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42903"> <gml:description>Henry Goodrich - Green Canyon 244</gml:description> <gml:name>urn:ioos:station:wmo:42903</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.73 -90.73</gml:lowerCorner> <gml:upperCorner>27.73 -90.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:23:00Z</gml:beginPosition> <gml:endPosition>2008-07-10T18:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42903"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42904"> <gml:description>Independence Hub - Mississippi Canyon 920</gml:description> <gml:name>urn:ioos:station:wmo:42904</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.09 -87.99</gml:lowerCorner> <gml:upperCorner>28.09 -87.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:05:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42904"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42905"> <gml:description>Belford Dolphin - Green Canyon 561</gml:description> <gml:name>urn:ioos:station:wmo:42905</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.4 -90.3</gml:lowerCorner> <gml:upperCorner>27.4 -90.3</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:06:00Z</gml:beginPosition> <gml:endPosition>2009-06-22T18:25:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42905"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42906"> <gml:description>Petrolia - Block PIT Area DL1</gml:description> <gml:name>urn:ioos:station:wmo:42906</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.35 -92.24</gml:lowerCorner> <gml:upperCorner>19.35 -92.24</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T03:14:00Z</gml:beginPosition> <gml:endPosition>2008-12-22T16:56:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42906"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42908"> <gml:description>West Sirius - Keathly Canyon 291</gml:description> <gml:name>urn:ioos:station:wmo:42908</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.699 -92.627</gml:lowerCorner> <gml:upperCorner>26.699 -92.627</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:44:00Z</gml:beginPosition> <gml:endPosition>2012-05-13T14:14:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42908"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42909"> <gml:description>ENSCO 8500 - Green Canyon 639</gml:description> <gml:name>urn:ioos:station:wmo:42909</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.315 -90.788</gml:lowerCorner> <gml:upperCorner>27.315 -90.788</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-20T20:33:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42909"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42910"> <gml:description>Frontier Driller - MC762</gml:description> <gml:name>urn:ioos:station:wmo:42910</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.2 -87.95</gml:lowerCorner> <gml:upperCorner>29.2 -87.95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-09T14:58:00Z</gml:beginPosition> <gml:endPosition>2012-05-08T16:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42910"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42911"> <gml:description>Ocean Monarch - Green Canyon 643</gml:description> <gml:name>urn:ioos:station:wmo:42911</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.343 -90.605</gml:lowerCorner> <gml:upperCorner>27.343 -90.605</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:59:00Z</gml:beginPosition> <gml:endPosition>2011-08-27T17:54:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42911"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42912"> <gml:description>Discoverer Clear Leader - Walker Ridge 634</gml:description> <gml:name>urn:ioos:station:wmo:42912</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.319 -91.086</gml:lowerCorner> <gml:upperCorner>26.319 -91.086</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-03T02:28:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42912"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42913"> <gml:description>ENSCO 8501 - Green Canyon 512</gml:description> <gml:name>urn:ioos:station:wmo:42913</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.455 -90.579</gml:lowerCorner> <gml:upperCorner>27.455 -90.579</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-13T18:47:00Z</gml:beginPosition> <gml:endPosition>2012-03-29T16:43:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42913"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42914"> <gml:description>Discoverer Americas - Mississippi Canyon 540</gml:description> <gml:name>urn:ioos:station:wmo:42914</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.43 -89.389</gml:lowerCorner> <gml:upperCorner>28.43 -89.389</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-11-19T20:48:00Z</gml:beginPosition> <gml:endPosition>2012-05-14T10:25:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42914"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42915"> <gml:description>Maersk Developer - Walker Ridge 543</gml:description> <gml:name>urn:ioos:station:wmo:42915</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.442 -91.189</gml:lowerCorner> <gml:upperCorner>26.442 -91.189</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-11-05T01:06:00Z</gml:beginPosition> <gml:endPosition>2011-10-31T10:29:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42915"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42916"> <gml:description>Development Driller 3 - Grand Island</gml:description> <gml:name>urn:ioos:station:wmo:42916</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.577 -90.016</gml:lowerCorner> <gml:upperCorner>28.577 -90.016</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-01T22:20:00Z</gml:beginPosition> <gml:endPosition>2012-04-16T07:03:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42916"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42917"> <gml:description>Discoverer Inspiration - Keathley Canyon 736</gml:description> <gml:name>urn:ioos:station:wmo:42917</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.237 -92.377</gml:lowerCorner> <gml:upperCorner>26.237 -92.377</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-01-31T00:36:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42917"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42918"> <gml:description>Noble Danny Adkins - Alaminos Canyon (TBD)</gml:description> <gml:name>urn:ioos:station:wmo:42918</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.41 -94.52</gml:lowerCorner> <gml:upperCorner>26.41 -94.52</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-05T04:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42918"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42919"> <gml:description>Stenna Forth - Green Canyon 469</gml:description> <gml:name>urn:ioos:station:wmo:42919</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.504 -90.532</gml:lowerCorner> <gml:upperCorner>27.504 -90.532</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-02T16:57:00Z</gml:beginPosition> <gml:endPosition>2012-05-08T15:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42919"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42921"> <gml:description>Deepwater Pathfinder - Mississippi Canyon 771</gml:description> <gml:name>urn:ioos:station:wmo:42921</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.2 -88.793</gml:lowerCorner> <gml:upperCorner>28.2 -88.793</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-03-30T16:36:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42921"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42922"> <gml:description>Noble Jim Day - Garden Banks 506</gml:description> <gml:name>urn:ioos:station:wmo:42922</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.476 -92.858</gml:lowerCorner> <gml:upperCorner>27.476 -92.858</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-05-08T21:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42922"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42923"> <gml:description>Ensco 8502</gml:description> <gml:name>urn:ioos:station:wmo:42923</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.347 -95.573</gml:lowerCorner> <gml:upperCorner>27.347 -95.573</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-01-01T11:58:00Z</gml:beginPosition> <gml:endPosition>2012-05-12T20:07:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42923"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42924"> <gml:description>Ensco 8503 - Green Canyon 814</gml:description> <gml:name>urn:ioos:station:wmo:42924</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.149 -90.861</gml:lowerCorner> <gml:upperCorner>27.149 -90.861</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-01-01T00:24:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42924"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42925"> <gml:description>Deep Ocean Mendocino - Walker Ridge 249</gml:description> <gml:name>urn:ioos:station:wmo:42925</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.726 -90.508</gml:lowerCorner> <gml:upperCorner>26.726 -90.508</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-26T13:17:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42925"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42926"> <gml:description>Discoverer India - Walker Ridge 758</gml:description> <gml:name>urn:ioos:station:wmo:42926</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.208 -91.443</gml:lowerCorner> <gml:upperCorner>26.208 -91.443</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-26T19:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42926"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-42927"> <gml:description>Noble Bully 1 - Green Canyon 434</gml:description> <gml:name>urn:ioos:station:wmo:42927</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.555 -90.07</gml:lowerCorner> <gml:upperCorner>27.555 -90.07</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-03-13T16:36:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:42927"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-43001"> <gml:description>8N 110W</gml:description> <gml:name>urn:ioos:station:wmo:43001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 -110</gml:lowerCorner> <gml:upperCorner>8 -110</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:43001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-43301"> <gml:description>8N 95W</gml:description> <gml:name>urn:ioos:station:wmo:43301</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 -95</gml:lowerCorner> <gml:upperCorner>8 -95</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2012-03-04T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:43301"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-43412"> <gml:description>240 NM Southwest of Manzanillo, Mexico</gml:description> <gml:name>urn:ioos:station:wmo:43412</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>16.03 -107</gml:lowerCorner> <gml:upperCorner>16.03 -107</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2011-12-24T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:43412"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-43413"> <gml:description>360 NM South-Southwest of Acapulco, Mexico</gml:description> <gml:name>urn:ioos:station:wmo:43413</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>10.84 -100.08</gml:lowerCorner> <gml:upperCorner>10.84 -100.08</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:43413"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44004"> <gml:description>HOTEL 200NM East of Cape May,NJ</gml:description> <gml:name>urn:ioos:station:wmo:44004</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.48 -70.43</gml:lowerCorner> <gml:upperCorner>38.48 -70.43</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T19:50:00Z</gml:beginPosition> <gml:endPosition>2011-09-27T14:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44004"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44005"> <gml:description>GULF OF MAINE 78 NM EAST OF PORTSMOUTH,NH</gml:description> <gml:name>urn:ioos:station:wmo:44005</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.19 -69.14</gml:lowerCorner> <gml:upperCorner>43.19 -69.14</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44005"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44007"> <gml:description>12 NM Southeast of Portland, ME</gml:description> <gml:name>urn:ioos:station:wmo:44007</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.53 -70.14</gml:lowerCorner> <gml:upperCorner>43.53 -70.14</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44007"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44008"> <gml:description>54NM Southeast of Nantucket</gml:description> <gml:name>urn:ioos:station:wmo:44008</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.5 -69.43</gml:lowerCorner> <gml:upperCorner>40.5 -69.43</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44008"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44009"> <gml:description>DELAWARE BAY 26 NM Southeast of Cape May, NJ</gml:description> <gml:name>urn:ioos:station:wmo:44009</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.46 -74.7</gml:lowerCorner> <gml:upperCorner>38.46 -74.7</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44009"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44011"> <gml:description>170 NM East of Hyannis, MA</gml:description> <gml:name>urn:ioos:station:wmo:44011</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.11 -66.58</gml:lowerCorner> <gml:upperCorner>41.11 -66.58</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44011"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44013"> <gml:description>BOSTON 16 NM East of Boston, MA</gml:description> <gml:name>urn:ioos:station:wmo:44013</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.35 -70.69</gml:lowerCorner> <gml:upperCorner>42.35 -70.69</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44013"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44014"> <gml:description>64 NM East of Virginia Beach, VA</gml:description> <gml:name>urn:ioos:station:wmo:44014</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.61 -74.84</gml:lowerCorner> <gml:upperCorner>36.61 -74.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44014"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44017"> <gml:description>23 Nautical Miles Southwest of Montauk Point, NY</gml:description> <gml:name>urn:ioos:station:wmo:44017</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.69 -72.05</gml:lowerCorner> <gml:upperCorner>40.69 -72.05</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2011-08-20T01:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44017"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44018"> <gml:description>SE Cape Cod, 30NM East of Nantucket, MA</gml:description> <gml:name>urn:ioos:station:wmo:44018</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.26 -69.29</gml:lowerCorner> <gml:upperCorner>41.26 -69.29</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-11-02T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44018"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44020"> <gml:description>NANTUCKET SOUND</gml:description> <gml:name>urn:ioos:station:wmo:44020</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.443 -70.186</gml:lowerCorner> <gml:upperCorner>41.443 -70.186</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44020"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44022"> <gml:description>Execution Rocks</gml:description> <gml:name>urn:ioos:station:wmo:44022</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.88 -73.73</gml:lowerCorner> <gml:upperCorner>40.88 -73.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T04:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44022"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44024"> <gml:description>Buoy N - Northeast Channel</gml:description> <gml:name>urn:ioos:station:wmo:44024</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.312 -65.927</gml:lowerCorner> <gml:upperCorner>42.312 -65.927</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-09-22T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44024"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44025"> <gml:description>LONG ISLAND 33 NM South of Islip, NY</gml:description> <gml:name>urn:ioos:station:wmo:44025</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.25 -73.17</gml:lowerCorner> <gml:upperCorner>40.25 -73.17</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44025"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44027"> <gml:description>Jonesport, Maine</gml:description> <gml:name>urn:ioos:station:wmo:44027</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.27 -67.31</gml:lowerCorner> <gml:upperCorner>44.27 -67.31</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44027"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44029"> <gml:description>Buoy A0102 - Mass. Bay/Stellwagen</gml:description> <gml:name>urn:ioos:station:wmo:44029</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.52 -70.57</gml:lowerCorner> <gml:upperCorner>42.52 -70.57</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44029"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44030"> <gml:description>Buoy B0102 - Western Maine Shelf</gml:description> <gml:name>urn:ioos:station:wmo:44030</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.18 -70.43</gml:lowerCorner> <gml:upperCorner>43.18 -70.43</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44030"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44031"> <gml:description>Buoy C0201 - Casco Bay</gml:description> <gml:name>urn:ioos:station:wmo:44031</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.57 -70.06</gml:lowerCorner> <gml:upperCorner>43.57 -70.06</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition>2009-03-23T09:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44031"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44032"> <gml:description>Buoy E0104 - Central Maine Shelf</gml:description> <gml:name>urn:ioos:station:wmo:44032</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.71 -69.36</gml:lowerCorner> <gml:upperCorner>43.71 -69.36</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44032"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44033"> <gml:description>Buoy F0103 - West Penobscot Bay</gml:description> <gml:name>urn:ioos:station:wmo:44033</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.06 -69</gml:lowerCorner> <gml:upperCorner>44.06 -69</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44033"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44034"> <gml:description>Buoy I0103 - Eastern Maine Shelf</gml:description> <gml:name>urn:ioos:station:wmo:44034</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.11 -68.11</gml:lowerCorner> <gml:upperCorner>44.11 -68.11</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44034"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44035"> <gml:description>Buoy J0201 - Cobscook Bay</gml:description> <gml:name>urn:ioos:station:wmo:44035</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.89 -67.02</gml:lowerCorner> <gml:upperCorner>44.89 -67.02</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition>2008-12-26T18:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44035"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44037"> <gml:description>Buoy M0102 - Jordan Basin</gml:description> <gml:name>urn:ioos:station:wmo:44037</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.49 -67.88</gml:lowerCorner> <gml:upperCorner>43.49 -67.88</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44037"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44038"> <gml:description>Buoy L0102 - Scotian Shelf</gml:description> <gml:name>urn:ioos:station:wmo:44038</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.62 -66.55</gml:lowerCorner> <gml:upperCorner>43.62 -66.55</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:04:00Z</gml:beginPosition> <gml:endPosition>2008-11-17T01:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44038"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44039"> <gml:description>Central Long Island Sound</gml:description> <gml:name>urn:ioos:station:wmo:44039</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.138 -72.655</gml:lowerCorner> <gml:upperCorner>41.138 -72.655</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-04-30T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44039"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44040"> <gml:description>Western Long Island Sound</gml:description> <gml:name>urn:ioos:station:wmo:44040</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.956 -73.58</gml:lowerCorner> <gml:upperCorner>40.956 -73.58</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-04-30T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44040"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44041"> <gml:description>Jamestown, VA</gml:description> <gml:name>urn:ioos:station:wmo:44041</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.204 -76.777</gml:lowerCorner> <gml:upperCorner>37.204 -76.777</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44041"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44042"> <gml:description>Potomac, MD</gml:description> <gml:name>urn:ioos:station:wmo:44042</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.033 -76.336</gml:lowerCorner> <gml:upperCorner>38.033 -76.336</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44042"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44043"> <gml:description>Patapsco, MD</gml:description> <gml:name>urn:ioos:station:wmo:44043</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.152 -76.391</gml:lowerCorner> <gml:upperCorner>39.152 -76.391</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-11T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44043"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44054"> <gml:description>Lower Delaware Bay Buoy</gml:description> <gml:name>urn:ioos:station:wmo:44054</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.883 -75.183</gml:lowerCorner> <gml:upperCorner>38.883 -75.183</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:30:00Z</gml:beginPosition> <gml:endPosition>2010-12-10T00:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44054"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44055"> <gml:description>Central Delaware Bay</gml:description> <gml:name>urn:ioos:station:wmo:44055</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.122 -75.256</gml:lowerCorner> <gml:upperCorner>39.122 -75.256</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:30:00Z</gml:beginPosition> <gml:endPosition>2012-02-23T22:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44055"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44056"> <gml:description>Duck FRF, NC</gml:description> <gml:name>urn:ioos:station:wmo:44056</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.2 -75.714</gml:lowerCorner> <gml:upperCorner>36.2 -75.714</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T19:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44056"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44057"> <gml:description>Susquehanna, MD</gml:description> <gml:name>urn:ioos:station:wmo:44057</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.544 -76.075</gml:lowerCorner> <gml:upperCorner>39.544 -76.075</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44057"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44058"> <gml:description>Stingray Point, VA</gml:description> <gml:name>urn:ioos:station:wmo:44058</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.552 -76.251</gml:lowerCorner> <gml:upperCorner>37.552 -76.251</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44058"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44059"> <gml:description>Norfolk, VA</gml:description> <gml:name>urn:ioos:station:wmo:44059</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.846 -76.298</gml:lowerCorner> <gml:upperCorner>36.846 -76.298</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44059"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44060"> <gml:description>Eastern Long Island Sound</gml:description> <gml:name>urn:ioos:station:wmo:44060</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.2633 -72.0667</gml:lowerCorner> <gml:upperCorner>41.2633 -72.0667</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:00:00Z</gml:beginPosition> <gml:endPosition>2012-03-24T15:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44060"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44061"> <gml:description>Upper Potmac, MD</gml:description> <gml:name>urn:ioos:station:wmo:44061</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.785 -77.036</gml:lowerCorner> <gml:upperCorner>38.785 -77.036</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-17T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44061"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44062"> <gml:description>Gooses Reef, MD</gml:description> <gml:name>urn:ioos:station:wmo:44062</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.553 -76.415</gml:lowerCorner> <gml:upperCorner>38.553 -76.415</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-30T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44062"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44063"> <gml:description>Annapolis</gml:description> <gml:name>urn:ioos:station:wmo:44063</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.963 -76.448</gml:lowerCorner> <gml:upperCorner>38.963 -76.448</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-17T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44063"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44064"> <gml:description>FIRST LANDING</gml:description> <gml:name>urn:ioos:station:wmo:44064</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.979 -76.043</gml:lowerCorner> <gml:upperCorner>36.979 -76.043</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-26T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44064"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44065"> <gml:description>Entrance to New York Harbor</gml:description> <gml:name>urn:ioos:station:wmo:44065</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.369 -73.703</gml:lowerCorner> <gml:upperCorner>40.369 -73.703</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44065"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44066"> <gml:description>Texas Tower #4</gml:description> <gml:name>urn:ioos:station:wmo:44066</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.26 -72.18</gml:lowerCorner> <gml:upperCorner>39.26 -72.18</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-19T17:50:00Z</gml:beginPosition> <gml:endPosition>2012-02-26T13:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44066"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44067"> <gml:description>Potomac River, Near HWY 301</gml:description> <gml:name>urn:ioos:station:wmo:44067</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.368 -76.996</gml:lowerCorner> <gml:upperCorner>38.368 -76.996</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44067"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44070"> <gml:description>Buzzards Bay MA. Offshore</gml:description> <gml:name>urn:ioos:station:wmo:44070</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.392 -71.004</gml:lowerCorner> <gml:upperCorner>41.392 -71.004</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-11-09T18:06:00Z</gml:beginPosition> <gml:endPosition>2010-11-09T00:06:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44070"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44095"> <gml:description>Oregon Inlet, NC - 192</gml:description> <gml:name>urn:ioos:station:wmo:44095</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.583 -75.317</gml:lowerCorner> <gml:upperCorner>35.583 -75.317</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-09T21:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44095"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44096"> <gml:description>Cape Charles, VA - 186</gml:description> <gml:name>urn:ioos:station:wmo:44096</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.023 -75.81</gml:lowerCorner> <gml:upperCorner>37.023 -75.81</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-02-23T21:07:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44096"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44097"> <gml:description>Block Island, RI (154)</gml:description> <gml:name>urn:ioos:station:wmo:44097</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.981 -71.117</gml:lowerCorner> <gml:upperCorner>40.981 -71.117</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-22T00:31:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44097"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44098"> <gml:description>Jeffrey's Ledge, NH (160)</gml:description> <gml:name>urn:ioos:station:wmo:44098</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.801 -70.169</gml:lowerCorner> <gml:upperCorner>42.801 -70.169</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T16:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44098"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44099"> <gml:description>Cape Henry, VA (147)</gml:description> <gml:name>urn:ioos:station:wmo:44099</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.908 -75.775</gml:lowerCorner> <gml:upperCorner>36.908 -75.775</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44099"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44100"> <gml:description>Duck FRF 26m, NC (430)</gml:description> <gml:name>urn:ioos:station:wmo:44100</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.258 -75.591</gml:lowerCorner> <gml:upperCorner>36.258 -75.591</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:17:00Z</gml:beginPosition> <gml:endPosition>2012-03-26T13:54:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44100"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44172"> <gml:description>Halifax Harbor, NS, Canada - 176</gml:description> <gml:name>urn:ioos:station:wmo:44172</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.5 -63.408</gml:lowerCorner> <gml:upperCorner>44.5 -63.408</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-23T14:32:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44172"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44235"> <gml:description>South Ramea Island, New Foundland (170)</gml:description> <gml:name>urn:ioos:station:wmo:44235</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.263 -57.341</gml:lowerCorner> <gml:upperCorner>47.263 -57.341</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-15T20:24:00Z</gml:beginPosition> <gml:endPosition>2011-05-13T19:54:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44235"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44401"> <gml:description>790 NM NE of Bermuda</gml:description> <gml:name>urn:ioos:station:wmo:44401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.56 -50</gml:lowerCorner> <gml:upperCorner>37.56 -50</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-44402"> <gml:description>250 NM SE of Montauk Pt N.Y.</gml:description> <gml:name>urn:ioos:station:wmo:44402</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.49 -70.59</gml:lowerCorner> <gml:upperCorner>39.49 -70.59</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:44402"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45001"> <gml:description>MID SUPERIOR 60NM North Northeast Hancock, MI</gml:description> <gml:name>urn:ioos:station:wmo:45001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.06 -87.78</gml:lowerCorner> <gml:upperCorner>48.06 -87.78</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45002"> <gml:description>N MICHIGAN- Halfway between North Manitou and Washington Islands.</gml:description> <gml:name>urn:ioos:station:wmo:45002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.33 -86.43</gml:lowerCorner> <gml:upperCorner>45.33 -86.43</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45003"> <gml:description>N HURON 37NM Northeast of Alpena, MI.</gml:description> <gml:name>urn:ioos:station:wmo:45003</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.35 -82.84</gml:lowerCorner> <gml:upperCorner>45.35 -82.84</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45003"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45004"> <gml:description>78NM Northeast of Marquette, MI</gml:description> <gml:name>urn:ioos:station:wmo:45004</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.56 -86.54</gml:lowerCorner> <gml:upperCorner>47.56 -86.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45004"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45005"> <gml:description>W ERIE 28NM Northwest of Cleveland, OH</gml:description> <gml:name>urn:ioos:station:wmo:45005</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.68 -82.4</gml:lowerCorner> <gml:upperCorner>41.68 -82.4</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T21:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45005"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45006"> <gml:description>W SUPERIOR 48NM North of Ironwood, MI</gml:description> <gml:name>urn:ioos:station:wmo:45006</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.33 -89.79</gml:lowerCorner> <gml:upperCorner>47.33 -89.79</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45006"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45007"> <gml:description>S MICHIGAN 43NM East Southeast of Milwaukee, WI</gml:description> <gml:name>urn:ioos:station:wmo:45007</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.68 -87.03</gml:lowerCorner> <gml:upperCorner>42.68 -87.03</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45007"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45008"> <gml:description>S HURON 43NM East of Oscoda, MI</gml:description> <gml:name>urn:ioos:station:wmo:45008</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.28 -82.42</gml:lowerCorner> <gml:upperCorner>44.28 -82.42</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45008"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45012"> <gml:description>Lake Ontario Buoy - 20NM North Northeast of Rochester, NY</gml:description> <gml:name>urn:ioos:station:wmo:45012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.62 -77.41</gml:lowerCorner> <gml:upperCorner>43.62 -77.41</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45015"> <gml:description>Calumet Beach</gml:description> <gml:name>urn:ioos:station:wmo:45015</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.714 -87.527</gml:lowerCorner> <gml:upperCorner>41.714 -87.527</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-10T15:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-18T17:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45015"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45016"> <gml:description>Sixth-third St Beach</gml:description> <gml:name>urn:ioos:station:wmo:45016</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.783 -87.573</gml:lowerCorner> <gml:upperCorner>41.783 -87.573</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-10T15:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-18T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45016"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45017"> <gml:description>Oak St Beach</gml:description> <gml:name>urn:ioos:station:wmo:45017</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.903 -87.622</gml:lowerCorner> <gml:upperCorner>41.903 -87.622</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-10T15:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-05T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45017"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45018"> <gml:description>Montrose Ave Beach</gml:description> <gml:name>urn:ioos:station:wmo:45018</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.968 -87.637</gml:lowerCorner> <gml:upperCorner>41.968 -87.637</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-10T15:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-18T17:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45018"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45019"> <gml:description>Foster Ave. Beach</gml:description> <gml:name>urn:ioos:station:wmo:45019</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.979 -87.649</gml:lowerCorner> <gml:upperCorner>41.979 -87.649</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-10T15:00:00Z</gml:beginPosition> <gml:endPosition>2011-09-09T01:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45019"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45020"> <gml:description>Grand Traverse Bay Observing System Station 1</gml:description> <gml:name>urn:ioos:station:wmo:45020</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.789 -85.604</gml:lowerCorner> <gml:upperCorner>44.789 -85.604</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-06T22:49:00Z</gml:beginPosition> <gml:endPosition>2009-12-13T21:57:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45020"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45021"> <gml:description>Traverse Bay #3, MI</gml:description> <gml:name>urn:ioos:station:wmo:45021</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.767 -85.606</gml:lowerCorner> <gml:upperCorner>44.767 -85.606</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-17T00:55:00Z</gml:beginPosition> <gml:endPosition>2011-06-14T14:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45021"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45022"> <gml:description>Little Traverse Bay, MI</gml:description> <gml:name>urn:ioos:station:wmo:45022</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.403 -85.088</gml:lowerCorner> <gml:upperCorner>45.403 -85.088</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-05T17:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45022"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45023"> <gml:description>Portage Canal</gml:description> <gml:name>urn:ioos:station:wmo:45023</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.279 -88.611</gml:lowerCorner> <gml:upperCorner>47.279 -88.611</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-12T18:20:00Z</gml:beginPosition> <gml:endPosition>2011-09-22T20:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45023"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45024"> <gml:description>Ludington, MI</gml:description> <gml:name>urn:ioos:station:wmo:45024</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.977 -86.56</gml:lowerCorner> <gml:upperCorner>43.977 -86.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-05-10T16:40:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45024"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45025"> <gml:description>South Entrance to Keweenaw Waterway, MI</gml:description> <gml:name>urn:ioos:station:wmo:45025</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.95 -88.409</gml:lowerCorner> <gml:upperCorner>46.95 -88.409</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-14T15:30:00Z</gml:beginPosition> <gml:endPosition>2011-10-23T20:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45025"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45026"> <gml:description>St. Joseph, MI</gml:description> <gml:name>urn:ioos:station:wmo:45026</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.983 -86.617</gml:lowerCorner> <gml:upperCorner>41.983 -86.617</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-22T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45026"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45027"> <gml:description>North of Duluth, MN</gml:description> <gml:name>urn:ioos:station:wmo:45027</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.864 -91.929</gml:lowerCorner> <gml:upperCorner>46.864 -91.929</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-24T19:30:00Z</gml:beginPosition> <gml:endPosition>2011-11-09T15:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45027"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-45028"> <gml:description>Western Lake Superior</gml:description> <gml:name>urn:ioos:station:wmo:45028</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.812 -91.835</gml:lowerCorner> <gml:upperCorner>46.812 -91.835</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-23T08:50:00Z</gml:beginPosition> <gml:endPosition>2011-11-09T18:10:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:45028"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46001"> <gml:description>GULF OF AK, 88NM South of Kodiak, AK</gml:description> <gml:name>urn:ioos:station:wmo:46001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.3 -148.02</gml:lowerCorner> <gml:upperCorner>56.3 -148.02</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46002"> <gml:description>OREGON - 275NM West of Coos Bay, OR</gml:description> <gml:name>urn:ioos:station:wmo:46002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.57 -130.46</gml:lowerCorner> <gml:upperCorner>42.57 -130.46</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46005"> <gml:description>WASHINGTON 315NM West of Aberdeen, WA</gml:description> <gml:name>urn:ioos:station:wmo:46005</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.05 -131.02</gml:lowerCorner> <gml:upperCorner>46.05 -131.02</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46005"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46006"> <gml:description>SE PAPA - 600NM West of Eureka, CA</gml:description> <gml:name>urn:ioos:station:wmo:46006</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.886 -137.451</gml:lowerCorner> <gml:upperCorner>40.886 -137.451</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46006"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46011"> <gml:description>SANTA MARIA - 21 NM Northwest of Point Arguello, CA</gml:description> <gml:name>urn:ioos:station:wmo:46011</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.868 -120.857</gml:lowerCorner> <gml:upperCorner>34.868 -120.857</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46011"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46012"> <gml:description>HALF MOON BAY - 24NM South Southwest of San Francisco, CA</gml:description> <gml:name>urn:ioos:station:wmo:46012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.361 -122.881</gml:lowerCorner> <gml:upperCorner>37.361 -122.881</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46013"> <gml:description>Bodega Bay - 48NM North Northwest of San Francisco, CA</gml:description> <gml:name>urn:ioos:station:wmo:46013</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.23 -123.32</gml:lowerCorner> <gml:upperCorner>38.23 -123.32</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46013"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46014"> <gml:description>PT ARENA - 19NM North of Point Arena, CA</gml:description> <gml:name>urn:ioos:station:wmo:46014</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.22 -123.97</gml:lowerCorner> <gml:upperCorner>39.22 -123.97</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46014"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46015"> <gml:description>Port Orford - 16NM West of Port Orford, OR</gml:description> <gml:name>urn:ioos:station:wmo:46015</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.76 -124.83</gml:lowerCorner> <gml:upperCorner>42.76 -124.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-06T22:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46015"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46022"> <gml:description>EEL RIVER - 17NM West-Southwest of Eureka, CA</gml:description> <gml:name>urn:ioos:station:wmo:46022</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.78 -124.54</gml:lowerCorner> <gml:upperCorner>40.78 -124.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-27T02:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46022"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46023"> <gml:description>PT ARGUELLO - 17NM West Northwest of Point Arguello, CA</gml:description> <gml:name>urn:ioos:station:wmo:46023</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.71 -120.97</gml:lowerCorner> <gml:upperCorner>34.71 -120.97</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T19:50:00Z</gml:beginPosition> <gml:endPosition>2010-09-08T13:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46023"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46025"> <gml:description>Santa Monica Basin - 33NM West Southwest of Santa Monica, CA</gml:description> <gml:name>urn:ioos:station:wmo:46025</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.74 -119.06</gml:lowerCorner> <gml:upperCorner>33.74 -119.06</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2012-04-11T09:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46025"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46026"> <gml:description>SAN FRANCISCO - 18NM West of San Francisco, CA</gml:description> <gml:name>urn:ioos:station:wmo:46026</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.75 -122.82</gml:lowerCorner> <gml:upperCorner>37.75 -122.82</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46026"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46027"> <gml:description>ST GEORGES - 8NM West Northwest of Crescent City, CA</gml:description> <gml:name>urn:ioos:station:wmo:46027</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.85 -124.38</gml:lowerCorner> <gml:upperCorner>41.85 -124.38</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46027"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46028"> <gml:description>CAPE SAN MARTIN - 55NM West Northwest of Morro Bay, CA</gml:description> <gml:name>urn:ioos:station:wmo:46028</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.74 -121.88</gml:lowerCorner> <gml:upperCorner>35.74 -121.88</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46028"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46029"> <gml:description>COL RIVER BAR - 78NM South Southwest of Aberdeen, WA</gml:description> <gml:name>urn:ioos:station:wmo:46029</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.14 -124.51</gml:lowerCorner> <gml:upperCorner>46.14 -124.51</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46029"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46035"> <gml:description>BERING SEA 310 NM North of Adak, AK</gml:description> <gml:name>urn:ioos:station:wmo:46035</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.07 -177.75</gml:lowerCorner> <gml:upperCorner>57.07 -177.75</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46035"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46041"> <gml:description>CAPE ELIZABETH- 45NM Northwest of Aberdeen, WA</gml:description> <gml:name>urn:ioos:station:wmo:46041</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.34 -124.75</gml:lowerCorner> <gml:upperCorner>47.34 -124.75</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46041"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46042"> <gml:description>MONTEREY - 27NM West of Monterey Bay, CA</gml:description> <gml:name>urn:ioos:station:wmo:46042</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.75 -122.42</gml:lowerCorner> <gml:upperCorner>36.75 -122.42</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46042"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46047"> <gml:description>TANNER BANKS - 121NM West of San Diego, CA</gml:description> <gml:name>urn:ioos:station:wmo:46047</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.433 -119.533</gml:lowerCorner> <gml:upperCorner>32.433 -119.533</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46047"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46050"> <gml:description>STONEWALL BANKS - 20NM West of Newport, OR</gml:description> <gml:name>urn:ioos:station:wmo:46050</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.64 -124.5</gml:lowerCorner> <gml:upperCorner>44.64 -124.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46050"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46053"> <gml:description>E. SANTA BARBARA - 12NM Southwest of Santa Barbara, CA</gml:description> <gml:name>urn:ioos:station:wmo:46053</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.24 -119.85</gml:lowerCorner> <gml:upperCorner>34.24 -119.85</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46053"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46054"> <gml:description>SANTA BARBARA W 38 NM West of Santa Barbara, CA</gml:description> <gml:name>urn:ioos:station:wmo:46054</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.27 -120.45</gml:lowerCorner> <gml:upperCorner>34.27 -120.45</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46054"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46059"> <gml:description>CALIFORNIA - 357NM West of San Francisco, CA</gml:description> <gml:name>urn:ioos:station:wmo:46059</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.98 -130</gml:lowerCorner> <gml:upperCorner>37.98 -130</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46059"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46060"> <gml:description>West Orca Bay - 36NM South-Southwest of Valdez, AK</gml:description> <gml:name>urn:ioos:station:wmo:46060</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>60.59 -146.83</gml:lowerCorner> <gml:upperCorner>60.59 -146.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition>2012-02-09T08:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46060"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46061"> <gml:description>Seal Rocks 55NM South of Valdez, AK</gml:description> <gml:name>urn:ioos:station:wmo:46061</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>60.22 -146.83</gml:lowerCorner> <gml:upperCorner>60.22 -146.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46061"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46063"> <gml:description>Pt. Conception, CA - 50NM West of Santa Barbara, CA</gml:description> <gml:name>urn:ioos:station:wmo:46063</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.27 -120.7</gml:lowerCorner> <gml:upperCorner>34.27 -120.7</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition>2009-05-22T13:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46063"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46066"> <gml:description>S Aleutians 380NM Southwest of Kodiak, AK</gml:description> <gml:name>urn:ioos:station:wmo:46066</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>52.7 -154.98</gml:lowerCorner> <gml:upperCorner>52.7 -154.98</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2011-10-25T10:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46066"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46069"> <gml:description>South Santa Rosa Island, CA</gml:description> <gml:name>urn:ioos:station:wmo:46069</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.65 -120.2</gml:lowerCorner> <gml:upperCorner>33.65 -120.2</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46069"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46070"> <gml:description>S.W. Bering Sea</gml:description> <gml:name>urn:ioos:station:wmo:46070</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>55 175.28</gml:lowerCorner> <gml:upperCorner>55 175.28</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46070"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46071"> <gml:description>Western Aleutians</gml:description> <gml:name>urn:ioos:station:wmo:46071</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>51.15 179</gml:lowerCorner> <gml:upperCorner>51.15 179</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2009-11-22T05:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46071"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46072"> <gml:description>Central Aleutions - 230NM Southwest of Dutch Harbor</gml:description> <gml:name>urn:ioos:station:wmo:46072</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>51.63 -172.17</gml:lowerCorner> <gml:upperCorner>51.63 -172.17</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46072"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46073"> <gml:description>Southeast Bering Sea</gml:description> <gml:name>urn:ioos:station:wmo:46073</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>54.94 -172.03</gml:lowerCorner> <gml:upperCorner>54.94 -172.03</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2011-04-07T15:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46073"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46075"> <gml:description>Shumagin Islands, AK</gml:description> <gml:name>urn:ioos:station:wmo:46075</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>53.926 -160.806</gml:lowerCorner> <gml:upperCorner>53.926 -160.806</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-16T00:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46075"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46076"> <gml:description>Cape Cleare AK</gml:description> <gml:name>urn:ioos:station:wmo:46076</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.5 -148</gml:lowerCorner> <gml:upperCorner>59.5 -148</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2011-10-28T05:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46076"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46077"> <gml:description>Shelikof Strait, AK</gml:description> <gml:name>urn:ioos:station:wmo:46077</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.92 -154.25</gml:lowerCorner> <gml:upperCorner>57.92 -154.25</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46077"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46078"> <gml:description>Albatross Banks AK</gml:description> <gml:name>urn:ioos:station:wmo:46078</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.054 -152.451</gml:lowerCorner> <gml:upperCorner>56.054 -152.451</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-05T20:50:00Z</gml:beginPosition> <gml:endPosition>2012-01-18T05:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46078"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46080"> <gml:description>Northwest Gulf 57NM East of Kodiak, AK</gml:description> <gml:name>urn:ioos:station:wmo:46080</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.04 -149.99</gml:lowerCorner> <gml:upperCorner>58.04 -149.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46080"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46081"> <gml:description>Western Prince William Sound</gml:description> <gml:name>urn:ioos:station:wmo:46081</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>60.8 -148.28</gml:lowerCorner> <gml:upperCorner>60.8 -148.28</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-08-05T19:50:00Z</gml:beginPosition> <gml:endPosition>2011-12-04T18:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46081"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46082"> <gml:description>Cape Suckling 84NM Southeast of Cordova, AK</gml:description> <gml:name>urn:ioos:station:wmo:46082</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.69 -143.4</gml:lowerCorner> <gml:upperCorner>59.69 -143.4</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-08-02T12:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46082"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46083"> <gml:description>Fairweather Grounds 92NM Southeast of Yakutat, AK</gml:description> <gml:name>urn:ioos:station:wmo:46083</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.24 -137.99</gml:lowerCorner> <gml:upperCorner>58.24 -137.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46083"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46084"> <gml:description>Cape Edgecumbe Buoy, AK</gml:description> <gml:name>urn:ioos:station:wmo:46084</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.63 -136.15</gml:lowerCorner> <gml:upperCorner>56.63 -136.15</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46084"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46085"> <gml:description>Central Gulf of Alaska Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46085</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.85 -142.56</gml:lowerCorner> <gml:upperCorner>56.85 -142.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46085"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46086"> <gml:description>San Clemente Basin</gml:description> <gml:name>urn:ioos:station:wmo:46086</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.5 -118</gml:lowerCorner> <gml:upperCorner>32.5 -118</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46086"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46087"> <gml:description>Neah Bay, WA (Traffic Separation Lighted Buoy)</gml:description> <gml:name>urn:ioos:station:wmo:46087</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>49.89 -124.73</gml:lowerCorner> <gml:upperCorner>49.89 -124.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-09T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46087"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46088"> <gml:description>New Dungeness, WA (Hein Bank)</gml:description> <gml:name>urn:ioos:station:wmo:46088</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.33 -123.17</gml:lowerCorner> <gml:upperCorner>48.33 -123.17</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T06:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46088"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46089"> <gml:description>Tillamook, OR</gml:description> <gml:name>urn:ioos:station:wmo:46089</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.91 -125.76</gml:lowerCorner> <gml:upperCorner>45.91 -125.76</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-21T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46089"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46091"> <gml:description>MBM0</gml:description> <gml:name>urn:ioos:station:wmo:46091</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.835 -121.899</gml:lowerCorner> <gml:upperCorner>36.835 -121.899</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:12:00Z</gml:beginPosition> <gml:endPosition>2012-03-23T14:12:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46091"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46092"> <gml:description>MBM1</gml:description> <gml:name>urn:ioos:station:wmo:46092</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.75 -122.02</gml:lowerCorner> <gml:upperCorner>36.75 -122.02</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-18T18:16:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46092"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46093"> <gml:description>MBM2</gml:description> <gml:name>urn:ioos:station:wmo:46093</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.69 -122.41</gml:lowerCorner> <gml:upperCorner>36.69 -122.41</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:05:00Z</gml:beginPosition> <gml:endPosition>2011-09-29T15:16:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46093"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46094"> <gml:description>West of Newport NH-10, OR</gml:description> <gml:name>urn:ioos:station:wmo:46094</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.633 -124.304</gml:lowerCorner> <gml:upperCorner>44.633 -124.304</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-04T19:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46094"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46096"> <gml:description>Columbia River Entrance - SATURN Station #02 Offshore</gml:description> <gml:name>urn:ioos:station:wmo:46096</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.173 -124.127</gml:lowerCorner> <gml:upperCorner>46.173 -124.127</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-13T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46096"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46105"> <gml:description>South Cook Inlet AK</gml:description> <gml:name>urn:ioos:station:wmo:46105</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.049 -152.224</gml:lowerCorner> <gml:upperCorner>59.049 -152.224</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-28T13:50:00Z</gml:beginPosition> <gml:endPosition>2012-01-16T19:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46105"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46106"> <gml:description>Central Cook Inlet AK</gml:description> <gml:name>urn:ioos:station:wmo:46106</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.76 -152.09</gml:lowerCorner> <gml:upperCorner>59.76 -152.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:50:00Z</gml:beginPosition> <gml:endPosition>2011-09-01T19:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46106"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46107"> <gml:description>Montague Strait</gml:description> <gml:name>urn:ioos:station:wmo:46107</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.925 -147.992</gml:lowerCorner> <gml:upperCorner>59.925 -147.992</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:50:00Z</gml:beginPosition> <gml:endPosition>2010-07-04T21:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46107"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46108"> <gml:description>Central Cook Inlet - 175</gml:description> <gml:name>urn:ioos:station:wmo:46108</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.76 -152.09</gml:lowerCorner> <gml:upperCorner>59.76 -152.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-10T16:31:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46108"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46109"> <gml:description>Port Angeles Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46109</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.123 -123.395</gml:lowerCorner> <gml:upperCorner>48.123 -123.395</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46109"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46110"> <gml:description>Sequim Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46110</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.115 -123.032</gml:lowerCorner> <gml:upperCorner>48.115 -123.032</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46110"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46111"> <gml:description>Fort Worden Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46111</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.131 -122.748</gml:lowerCorner> <gml:upperCorner>48.131 -122.748</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46111"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46112"> <gml:description>Marrowstone Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46112</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.1 -122.73</gml:lowerCorner> <gml:upperCorner>48.1 -122.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46112"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46113"> <gml:description>Poulsbo Buoy</gml:description> <gml:name>urn:ioos:station:wmo:46113</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.73 -122.646</gml:lowerCorner> <gml:upperCorner>47.73 -122.646</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-26T02:11:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46113"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46114"> <gml:description>West Monterey Bay, CA</gml:description> <gml:name>urn:ioos:station:wmo:46114</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.71 -122.342</gml:lowerCorner> <gml:upperCorner>36.71 -122.342</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-09-28T10:34:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46114"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46115"> <gml:description>Bering Sea</gml:description> <gml:name>urn:ioos:station:wmo:46115</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.069 -177.75</gml:lowerCorner> <gml:upperCorner>57.069 -177.75</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-30T15:50:00Z</gml:beginPosition> <gml:endPosition>2010-12-08T14:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46115"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46120"> <gml:description>Pt Wells, WA (U of Wash)</gml:description> <gml:name>urn:ioos:station:wmo:46120</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.761 -122.397</gml:lowerCorner> <gml:upperCorner>47.761 -122.397</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-11T19:23:00Z</gml:beginPosition> <gml:endPosition>2012-04-25T23:26:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46120"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46121"> <gml:description>Carr Inlet, WA (U of Wash) </gml:description> <gml:name>urn:ioos:station:wmo:46121</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.28 -122.73</gml:lowerCorner> <gml:upperCorner>47.28 -122.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-11T19:24:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46121"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46122"> <gml:description>Dabob Bay, WA (U of Wash)</gml:description> <gml:name>urn:ioos:station:wmo:46122</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.803 -122.803</gml:lowerCorner> <gml:upperCorner>47.803 -122.803</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-11T19:21:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46122"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46123"> <gml:description>Twanoh - Hood Canal, WA (U of Wash)</gml:description> <gml:name>urn:ioos:station:wmo:46123</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.375 -123.008</gml:lowerCorner> <gml:upperCorner>47.375 -123.008</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-11T19:25:00Z</gml:beginPosition> <gml:endPosition>2012-04-16T15:19:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46123"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46124"> <gml:description>Hoodsport - Hood Canal, WA (U of Wash)</gml:description> <gml:name>urn:ioos:station:wmo:46124</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.422 -123.112</gml:lowerCorner> <gml:upperCorner>47.422 -123.112</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-17T13:26:00Z</gml:beginPosition> <gml:endPosition>2012-04-24T18:09:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46124"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46125"> <gml:description>Hansville - Hood Canal, WA</gml:description> <gml:name>urn:ioos:station:wmo:46125</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.907 -122.627</gml:lowerCorner> <gml:upperCorner>47.907 -122.627</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-11T20:50:00Z</gml:beginPosition> <gml:endPosition>2012-04-18T23:34:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46125"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46138"> <gml:description>South Hecate Strait, Canada (174)</gml:description> <gml:name>urn:ioos:station:wmo:46138</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>52.437 -129.795</gml:lowerCorner> <gml:upperCorner>52.437 -129.795</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-04T11:25:00Z</gml:beginPosition> <gml:endPosition>2011-10-04T09:24:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46138"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46139"> <gml:description>La Perouse Bank DWR, Canada (215)</gml:description> <gml:name>urn:ioos:station:wmo:46139</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.84 -126</gml:lowerCorner> <gml:upperCorner>48.84 -126</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-05-03T19:42:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46139"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46211"> <gml:description>Grays Harbor, WA (036)</gml:description> <gml:name>urn:ioos:station:wmo:46211</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.857 -124.244</gml:lowerCorner> <gml:upperCorner>46.857 -124.244</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:26:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46211"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46212"> <gml:description>Humboldt Bay South Spit, CA (128)</gml:description> <gml:name>urn:ioos:station:wmo:46212</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.753 -124.313</gml:lowerCorner> <gml:upperCorner>40.753 -124.313</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:01:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46212"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46213"> <gml:description>Cape Mendocino, CA (094)</gml:description> <gml:name>urn:ioos:station:wmo:46213</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.294 -124.74</gml:lowerCorner> <gml:upperCorner>40.294 -124.74</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:16:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46213"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46214"> <gml:description>Point Reyes, CA (029)</gml:description> <gml:name>urn:ioos:station:wmo:46214</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.945 -123.47</gml:lowerCorner> <gml:upperCorner>37.945 -123.47</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-21T23:34:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46214"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46215"> <gml:description>Diablo Canyon, CA (076)</gml:description> <gml:name>urn:ioos:station:wmo:46215</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.204 -120.86</gml:lowerCorner> <gml:upperCorner>35.204 -120.86</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:39:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46215"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46216"> <gml:description>Goleta Point, CA (107)</gml:description> <gml:name>urn:ioos:station:wmo:46216</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.334 -119.804</gml:lowerCorner> <gml:upperCorner>34.334 -119.804</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:04:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46216"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46217"> <gml:description>Anacapa Passage, CA (111)</gml:description> <gml:name>urn:ioos:station:wmo:46217</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.167 -119.435</gml:lowerCorner> <gml:upperCorner>34.167 -119.435</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46217"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46218"> <gml:description>Harvest, CA (071)</gml:description> <gml:name>urn:ioos:station:wmo:46218</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.451 -120.769</gml:lowerCorner> <gml:upperCorner>34.451 -120.769</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:13:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46218"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46219"> <gml:description>San Nicolas Island, CA (067)</gml:description> <gml:name>urn:ioos:station:wmo:46219</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.221 -119.882</gml:lowerCorner> <gml:upperCorner>33.221 -119.882</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-21T19:56:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46219"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46221"> <gml:description>Santa Monica Bay, CA (028)</gml:description> <gml:name>urn:ioos:station:wmo:46221</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.854 -118.633</gml:lowerCorner> <gml:upperCorner>33.854 -118.633</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46221"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46222"> <gml:description>San Pedro, CA (092)</gml:description> <gml:name>urn:ioos:station:wmo:46222</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.618 -118.317</gml:lowerCorner> <gml:upperCorner>33.618 -118.317</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46222"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46223"> <gml:description>Dana Point, CA (096)</gml:description> <gml:name>urn:ioos:station:wmo:46223</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.458 -117.767</gml:lowerCorner> <gml:upperCorner>33.458 -117.767</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46223"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46224"> <gml:description>Oceanside Offshore, CA (045)</gml:description> <gml:name>urn:ioos:station:wmo:46224</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.179 -117.471</gml:lowerCorner> <gml:upperCorner>33.179 -117.471</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46224"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46225"> <gml:description>Torrey Pines Outer, CA (100)</gml:description> <gml:name>urn:ioos:station:wmo:46225</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.93 -117.393</gml:lowerCorner> <gml:upperCorner>32.93 -117.393</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:49:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46225"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46229"> <gml:description>UMPQUA OFFSHORE, OR (139)</gml:description> <gml:name>urn:ioos:station:wmo:46229</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.769 -124.551</gml:lowerCorner> <gml:upperCorner>43.769 -124.551</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:38:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46229"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46231"> <gml:description>Mission Bay, CA (093)</gml:description> <gml:name>urn:ioos:station:wmo:46231</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.748 -117.37</gml:lowerCorner> <gml:upperCorner>32.748 -117.37</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46231"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46232"> <gml:description>Point Loma South, CA (191)</gml:description> <gml:name>urn:ioos:station:wmo:46232</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.567 -117.445</gml:lowerCorner> <gml:upperCorner>32.567 -117.445</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:24:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46232"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46235"> <gml:description>Imperial Beach Nearshore, CA (155)</gml:description> <gml:name>urn:ioos:station:wmo:46235</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.572 -117.167</gml:lowerCorner> <gml:upperCorner>32.572 -117.167</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T16:57:00Z</gml:beginPosition> <gml:endPosition>2010-01-14T12:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46235"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46236"> <gml:description>Monterey Canyon Outer, CA (156)</gml:description> <gml:name>urn:ioos:station:wmo:46236</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.761 -121.947</gml:lowerCorner> <gml:upperCorner>36.761 -121.947</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:03:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46236"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46237"> <gml:description>San Francisco Bar, CA (142)</gml:description> <gml:name>urn:ioos:station:wmo:46237</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.781 -122.599</gml:lowerCorner> <gml:upperCorner>37.781 -122.599</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46237"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46238"> <gml:description>San Nicolas Island North, CA (167)</gml:description> <gml:name>urn:ioos:station:wmo:46238</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.405 -119.467</gml:lowerCorner> <gml:upperCorner>33.405 -119.467</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46238"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46239"> <gml:description>Point Sur, CA (157)</gml:description> <gml:name>urn:ioos:station:wmo:46239</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.338 -122.101</gml:lowerCorner> <gml:upperCorner>36.338 -122.101</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46239"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46240"> <gml:description>Cabrillo Point, Monterey Bay, CA</gml:description> <gml:name>urn:ioos:station:wmo:46240</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.626 -121.907</gml:lowerCorner> <gml:upperCorner>36.626 -121.907</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46240"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46241"> <gml:description>San Elijo Nearshore, CA (161)</gml:description> <gml:name>urn:ioos:station:wmo:46241</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.169 -117.292</gml:lowerCorner> <gml:upperCorner>33.169 -117.292</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-27T22:38:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46241"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46242"> <gml:description>Camp Pendleton Nearshore, CA (043)</gml:description> <gml:name>urn:ioos:station:wmo:46242</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.22 -117.44</gml:lowerCorner> <gml:upperCorner>33.22 -117.44</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-21T15:33:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46242"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46243"> <gml:description>Clatsop Spit, OR - 162</gml:description> <gml:name>urn:ioos:station:wmo:46243</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.2 -124.117</gml:lowerCorner> <gml:upperCorner>46.2 -124.117</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-25T15:34:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46243"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46244"> <gml:description>Humboldt Bay, North Spit, CA</gml:description> <gml:name>urn:ioos:station:wmo:46244</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.888 -124.357</gml:lowerCorner> <gml:upperCorner>40.888 -124.357</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-02-09T18:20:00Z</gml:beginPosition> <gml:endPosition>2012-05-02T17:35:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46244"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46245"> <gml:description>Ventura Nearshore, CA - 169</gml:description> <gml:name>urn:ioos:station:wmo:46245</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.251 -119.308</gml:lowerCorner> <gml:upperCorner>34.251 -119.308</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-28T18:36:00Z</gml:beginPosition> <gml:endPosition>2011-02-09T14:36:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46245"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46246"> <gml:description>Ocean Station PAPA (166)</gml:description> <gml:name>urn:ioos:station:wmo:46246</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>49.985 -145.089</gml:lowerCorner> <gml:upperCorner>49.985 -145.089</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-17T21:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46246"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46247"> <gml:description>San Francisco Offshore, CA (180)</gml:description> <gml:name>urn:ioos:station:wmo:46247</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.753 -122.833</gml:lowerCorner> <gml:upperCorner>37.753 -122.833</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-02-10T20:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46247"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46248"> <gml:description>Astoria Canyon, OR (179)</gml:description> <gml:name>urn:ioos:station:wmo:46248</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.133 -124.667</gml:lowerCorner> <gml:upperCorner>46.133 -124.667</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-09T17:34:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46248"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46249"> <gml:description>Santa Cruz Island South, CA (182)</gml:description> <gml:name>urn:ioos:station:wmo:46249</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.821 -119.708</gml:lowerCorner> <gml:upperCorner>33.821 -119.708</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-10T16:42:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46249"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46250"> <gml:description>Point Mugu Offshore, CA - 184</gml:description> <gml:name>urn:ioos:station:wmo:46250</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.034 -119.09</gml:lowerCorner> <gml:upperCorner>34.034 -119.09</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-12T22:28:00Z</gml:beginPosition> <gml:endPosition>2011-09-13T17:58:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46250"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46402"> <gml:description>240 NM South of Dutch Harbor, AK</gml:description> <gml:name>urn:ioos:station:wmo:46402</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>51.07 -164.01</gml:lowerCorner> <gml:upperCorner>51.07 -164.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-11T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46402"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46403"> <gml:description>230 NM Southeast of Shumagin Island, AK</gml:description> <gml:name>urn:ioos:station:wmo:46403</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>52.65 -156.94</gml:lowerCorner> <gml:upperCorner>52.65 -156.94</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46403"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46404"> <gml:description>230 NM West of Astoria, OR</gml:description> <gml:name>urn:ioos:station:wmo:46404</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.86 -128.78</gml:lowerCorner> <gml:upperCorner>45.86 -128.78</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2011-12-26T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46404"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46407"> <gml:description>210 NM West of Coos Bay, OR</gml:description> <gml:name>urn:ioos:station:wmo:46407</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.6 -128.9</gml:lowerCorner> <gml:upperCorner>42.6 -128.9</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-04-30T12:15:00Z</gml:beginPosition> <gml:endPosition>2012-04-30T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46407"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46408"> <gml:description>NW Pacific S AK</gml:description> <gml:name>urn:ioos:station:wmo:46408</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>49.63 -169.87</gml:lowerCorner> <gml:upperCorner>49.63 -169.87</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2011-09-08T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46408"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46409"> <gml:description>240 NM Southeast of Kodiak, AK</gml:description> <gml:name>urn:ioos:station:wmo:46409</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>55.3 -148.5</gml:lowerCorner> <gml:upperCorner>55.3 -148.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46409"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46410"> <gml:description>330 NM Southeast of Anchorage, AK</gml:description> <gml:name>urn:ioos:station:wmo:46410</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.5 -144</gml:lowerCorner> <gml:upperCorner>57.5 -144</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-12-05T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46410"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46411"> <gml:description>260 NM Northwest of San Francisco, CA</gml:description> <gml:name>urn:ioos:station:wmo:46411</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.34 -127.01</gml:lowerCorner> <gml:upperCorner>39.34 -127.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46411"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46412"> <gml:description>190 NM West-Southwest of San Diego, CA</gml:description> <gml:name>urn:ioos:station:wmo:46412</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.25 -120.7</gml:lowerCorner> <gml:upperCorner>32.25 -120.7</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46412"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46413"> <gml:description>East of ADAK, AK</gml:description> <gml:name>urn:ioos:station:wmo:46413</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.86 -175.6</gml:lowerCorner> <gml:upperCorner>48.86 -175.6</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46413"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-46419"> <gml:description>300 NM West-Northwest of Seattle, WA</gml:description> <gml:name>urn:ioos:station:wmo:46419</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.76 -129.62</gml:lowerCorner> <gml:upperCorner>48.76 -129.62</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:46419"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48211"> <gml:description>Camden Bay (Shell Arctic)</gml:description> <gml:name>urn:ioos:station:wmo:48211</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>70.37 -146.038</gml:lowerCorner> <gml:upperCorner>70.37 -146.038</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-30T19:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-26T03:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48211"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48212"> <gml:description>Harrison Bay (Shell Arctic) </gml:description> <gml:name>urn:ioos:station:wmo:48212</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>70.875 -150.276</gml:lowerCorner> <gml:upperCorner>70.875 -150.276</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-30T20:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-25T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48212"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48900"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48900</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.183 -84.368</gml:lowerCorner> <gml:upperCorner>39.462 -73.767</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-30T14:53:00Z</gml:beginPosition> <gml:endPosition>2010-08-03T11:21:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48900"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48901"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48901</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.059 -84.874</gml:lowerCorner> <gml:upperCorner>28.438 -83.163</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-13T21:23:00Z</gml:beginPosition> <gml:endPosition>2010-08-10T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48901"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48902"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48902</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.461 -88.913</gml:lowerCorner> <gml:upperCorner>30.444 -83.184</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-21T22:16:00Z</gml:beginPosition> <gml:endPosition>2010-09-05T23:45:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48902"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48903"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48903</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.738 -83.793</gml:lowerCorner> <gml:upperCorner>25.405 -81.947</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-04T21:23:00Z</gml:beginPosition> <gml:endPosition>2010-07-26T03:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48903"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48904"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48904</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.831 -84.179</gml:lowerCorner> <gml:upperCorner>27.125 -81.607</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-04T18:04:00Z</gml:beginPosition> <gml:endPosition>2010-11-13T15:29:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48904"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48905"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48905</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.623 -84.759</gml:lowerCorner> <gml:upperCorner>28.481 -83.33</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-08T21:21:00Z</gml:beginPosition> <gml:endPosition>2010-07-12T05:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48905"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48906"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48906</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.814 -83.12</gml:lowerCorner> <gml:upperCorner>27.292 -81.605</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-16T00:00:00Z</gml:beginPosition> <gml:endPosition>2010-09-20T16:29:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48906"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48907"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48907</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.317 -59.99</gml:lowerCorner> <gml:upperCorner>26.658 -52.838</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-05-27T02:43:00Z</gml:beginPosition> <gml:endPosition>2010-07-07T13:02:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48907"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48908"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48908</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.45 -88.937</gml:lowerCorner> <gml:upperCorner>28.722 -86.226</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-22T17:24:00Z</gml:beginPosition> <gml:endPosition>2010-08-19T09:22:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48908"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48909"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48909</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.499 -89.047</gml:lowerCorner> <gml:upperCorner>28.734 -88.503</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-22T18:58:00Z</gml:beginPosition> <gml:endPosition>2010-08-18T05:24:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48909"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48910"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48910</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.431 -90.643</gml:lowerCorner> <gml:upperCorner>28.667 -84.725</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-07T13:28:00Z</gml:beginPosition> <gml:endPosition>2010-09-20T09:32:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48910"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-48911"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:48911</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.382 -87.101</gml:lowerCorner> <gml:upperCorner>30.084 -86.584</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-22T16:12:00Z</gml:beginPosition> <gml:endPosition>2011-07-31T13:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:48911"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51000"> <gml:description>Northern Hawaii</gml:description> <gml:name>urn:ioos:station:wmo:51000</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.464 -154</gml:lowerCorner> <gml:upperCorner>23.464 -154</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51000"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51001"> <gml:description>NW HAWAII 170 NM West Northwest of Kauai Island</gml:description> <gml:name>urn:ioos:station:wmo:51001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.445 -162.279</gml:lowerCorner> <gml:upperCorner>23.445 -162.279</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:50:00Z</gml:beginPosition> <gml:endPosition>2011-09-19T18:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51002"> <gml:description>SW Hawaii - 215NM South-Southwest of Hilo, HI</gml:description> <gml:name>urn:ioos:station:wmo:51002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.19 -157.78</gml:lowerCorner> <gml:upperCorner>17.19 -157.78</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-22T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51003"> <gml:description>W Hawaii - 205NM Southwest of Honolulu, HI</gml:description> <gml:name>urn:ioos:station:wmo:51003</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.09 -160.66</gml:lowerCorner> <gml:upperCorner>19.09 -160.66</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-22T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51003"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51004"> <gml:description>SE Hawaii - 185NM Southeast of Hilo, HI</gml:description> <gml:name>urn:ioos:station:wmo:51004</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.59 -152.46</gml:lowerCorner> <gml:upperCorner>17.59 -152.46</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-01-22T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51004"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/currents"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51006"> <gml:description>9N 140W</gml:description> <gml:name>urn:ioos:station:wmo:51006</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>9 -140</gml:lowerCorner> <gml:upperCorner>9 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-12-25T08:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51006"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51007"> <gml:description>5N 140W</gml:description> <gml:name>urn:ioos:station:wmo:51007</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -140</gml:lowerCorner> <gml:upperCorner>5 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T13:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-21T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51007"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51008"> <gml:description>2N 140W</gml:description> <gml:name>urn:ioos:station:wmo:51008</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -140</gml:lowerCorner> <gml:upperCorner>2 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51008"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51009"> <gml:description>2S 140W</gml:description> <gml:name>urn:ioos:station:wmo:51009</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -140</gml:lowerCorner> <gml:upperCorner>-2 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51009"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51010"> <gml:description>0 170W</gml:description> <gml:name>urn:ioos:station:wmo:51010</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -170</gml:lowerCorner> <gml:upperCorner>0 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T11:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51010"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51011"> <gml:description>0 125W</gml:description> <gml:name>urn:ioos:station:wmo:51011</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -125</gml:lowerCorner> <gml:upperCorner>0 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-04-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T05:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51011"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51014"> <gml:description>5S 140W</gml:description> <gml:name>urn:ioos:station:wmo:51014</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -140</gml:lowerCorner> <gml:upperCorner>-5 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-05-22T02:00:00Z</gml:beginPosition> <gml:endPosition>2011-08-30T06:20:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51014"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51015"> <gml:description>5N 125W</gml:description> <gml:name>urn:ioos:station:wmo:51015</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -125</gml:lowerCorner> <gml:upperCorner>5 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-03-19T01:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T05:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51015"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51016"> <gml:description>2N 125W</gml:description> <gml:name>urn:ioos:station:wmo:51016</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -125</gml:lowerCorner> <gml:upperCorner>2 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-20T20:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51016"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51017"> <gml:description>2S 125W</gml:description> <gml:name>urn:ioos:station:wmo:51017</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -125</gml:lowerCorner> <gml:upperCorner>-2 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-09-10T03:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T05:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51017"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51018"> <gml:description>5S 125W</gml:description> <gml:name>urn:ioos:station:wmo:51018</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -125</gml:lowerCorner> <gml:upperCorner>-5 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-03-26T14:10:00Z</gml:beginPosition> <gml:endPosition>2012-01-11T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51018"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51019"> <gml:description>5S 155W</gml:description> <gml:name>urn:ioos:station:wmo:51019</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -155</gml:lowerCorner> <gml:upperCorner>-5 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51019"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51020"> <gml:description>5N 155W</gml:description> <gml:name>urn:ioos:station:wmo:51020</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -155</gml:lowerCorner> <gml:upperCorner>5 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-02-12T06:45:00Z</gml:beginPosition> <gml:endPosition>2012-02-23T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51020"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51021"> <gml:description>2N 155W</gml:description> <gml:name>urn:ioos:station:wmo:51021</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -155</gml:lowerCorner> <gml:upperCorner>2 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T08:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51021"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51022"> <gml:description>2S 155W</gml:description> <gml:name>urn:ioos:station:wmo:51022</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -155</gml:lowerCorner> <gml:upperCorner>-2 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-07-20T07:45:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51022"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51023"> <gml:description>0 155W</gml:description> <gml:name>urn:ioos:station:wmo:51023</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -155</gml:lowerCorner> <gml:upperCorner>0 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51023"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51028"> <gml:description>Christmas Island</gml:description> <gml:name>urn:ioos:station:wmo:51028</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -153.913</gml:lowerCorner> <gml:upperCorner>0 -153.913</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-21T20:50:00Z</gml:beginPosition> <gml:endPosition>2009-03-10T23:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51028"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51100"> <gml:description>Northern Hawaii</gml:description> <gml:name>urn:ioos:station:wmo:51100</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.558 -153.9</gml:lowerCorner> <gml:upperCorner>23.558 -153.9</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:50:00Z</gml:beginPosition> <gml:endPosition>2012-01-30T15:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51100"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51101"> <gml:description>NW Hawaii</gml:description> <gml:name>urn:ioos:station:wmo:51101</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.321 -162.058</gml:lowerCorner> <gml:upperCorner>24.321 -162.058</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51101"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51167"> <gml:description>French Frigate Shoals (FFS Ocean 006)</gml:description> <gml:name>urn:ioos:station:wmo:51167</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.856 -166.275</gml:lowerCorner> <gml:upperCorner>23.856 -166.275</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-05-19T01:00:00Z</gml:beginPosition> <gml:endPosition>2011-05-22T04:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51167"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51169"> <gml:description>Jarvis Island (JAR 016)</gml:description> <gml:name>urn:ioos:station:wmo:51169</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-0.379 -159.978</gml:lowerCorner> <gml:upperCorner>-0.379 -159.978</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51169"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51170"> <gml:description>Johnston Atoll (JOH 005)</gml:description> <gml:name>urn:ioos:station:wmo:51170</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>16.759 -169.5</gml:lowerCorner> <gml:upperCorner>16.759 -169.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-19T00:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51170"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51171"> <gml:description>Kingman Reef (KIN 001)</gml:description> <gml:name>urn:ioos:station:wmo:51171</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>6.393 -162.342</gml:lowerCorner> <gml:upperCorner>6.393 -162.342</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-02-27T07:46:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51171"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51172"> <gml:description>Kure Atoll (KUR 008)</gml:description> <gml:name>urn:ioos:station:wmo:51172</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.418 -178.343</gml:lowerCorner> <gml:upperCorner>28.418 -178.343</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51172"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51173"> <gml:description>Litsianski Island (LIS 001)</gml:description> <gml:name>urn:ioos:station:wmo:51173</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.968 -173.916</gml:lowerCorner> <gml:upperCorner>25.968 -173.916</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51173"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51174"> <gml:description>Ofu Island, American Samoa (OFU 008)</gml:description> <gml:name>urn:ioos:station:wmo:51174</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.181 -169.652</gml:lowerCorner> <gml:upperCorner>-14.181 -169.652</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51174"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51176"> <gml:description>Pearl and Hermes Reef (PHR 001)</gml:description> <gml:name>urn:ioos:station:wmo:51176</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.837 -175.816</gml:lowerCorner> <gml:upperCorner>27.837 -175.816</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-01-21T20:14:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51176"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51177"> <gml:description>Rose Atoll (ROS 002)</gml:description> <gml:name>urn:ioos:station:wmo:51177</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.551 -168.16</gml:lowerCorner> <gml:upperCorner>-14.551 -168.16</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-16T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51177"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51178"> <gml:description>Tau Island, American Samoa (TAU 004)</gml:description> <gml:name>urn:ioos:station:wmo:51178</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.244 -169.509</gml:lowerCorner> <gml:upperCorner>-14.244 -169.509</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51178"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51179"> <gml:description>Southwestern Tutuila Island, American Samoa (TUT 002)</gml:description> <gml:name>urn:ioos:station:wmo:51179</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.328 -170.833</gml:lowerCorner> <gml:upperCorner>-14.328 -170.833</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-19T00:07:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51179"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51180"> <gml:description>Western Tutuila Island, American Samoa (TUT 004)</gml:description> <gml:name>urn:ioos:station:wmo:51180</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.284 -170.722</gml:lowerCorner> <gml:upperCorner>-14.284 -170.722</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-20T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51180"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51181"> <gml:description>Southern Tutuila Island, American Samoa (TUT 018)</gml:description> <gml:name>urn:ioos:station:wmo:51181</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.367 -170.763</gml:lowerCorner> <gml:upperCorner>-14.367 -170.763</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51181"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51200"> <gml:description>Barbers Point, HI (164)</gml:description> <gml:name>urn:ioos:station:wmo:51200</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.096 -158.303</gml:lowerCorner> <gml:upperCorner>21.096 -158.303</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-09T21:51:00Z</gml:beginPosition> <gml:endPosition>2010-11-08T16:13:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51200"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51201"> <gml:description>Waimea Bay, HI (106)</gml:description> <gml:name>urn:ioos:station:wmo:51201</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.673 -158.116</gml:lowerCorner> <gml:upperCorner>21.673 -158.116</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51201"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51202"> <gml:description>Mokapu Point, HI (098)</gml:description> <gml:name>urn:ioos:station:wmo:51202</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.417 -157.668</gml:lowerCorner> <gml:upperCorner>21.417 -157.668</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:44:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51202"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51203"> <gml:description>Kaumalapau, HI (146)</gml:description> <gml:name>urn:ioos:station:wmo:51203</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.788 -157.01</gml:lowerCorner> <gml:upperCorner>20.788 -157.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51203"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51204"> <gml:description>Barbers Point, HI #2 (165)</gml:description> <gml:name>urn:ioos:station:wmo:51204</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.281 -158.124</gml:lowerCorner> <gml:upperCorner>21.281 -158.124</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-10-13T00:22:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51204"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51205"> <gml:description>Pauwela, Maui, HI (187)</gml:description> <gml:name>urn:ioos:station:wmo:51205</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.019 -156.427</gml:lowerCorner> <gml:upperCorner>21.019 -156.427</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-12-05T17:48:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51205"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51206"> <gml:description>Hilo, Hawaii, HI - 188</gml:description> <gml:name>urn:ioos:station:wmo:51206</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.78 -154.97</gml:lowerCorner> <gml:upperCorner>19.78 -154.97</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-12T15:16:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51206"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51301"> <gml:description>8N 155W</gml:description> <gml:name>urn:ioos:station:wmo:51301</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 -155</gml:lowerCorner> <gml:upperCorner>8 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-05-16T07:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T07:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51301"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51302"> <gml:description>8S 155W</gml:description> <gml:name>urn:ioos:station:wmo:51302</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 -155</gml:lowerCorner> <gml:upperCorner>-8 -155</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51302"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51303"> <gml:description>5N 170W</gml:description> <gml:name>urn:ioos:station:wmo:51303</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 -170</gml:lowerCorner> <gml:upperCorner>5 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-07-31T11:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51303"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51304"> <gml:description>5S 170W</gml:description> <gml:name>urn:ioos:station:wmo:51304</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 -170</gml:lowerCorner> <gml:upperCorner>-5 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-03-27T02:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-22T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51304"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51305"> <gml:description>2N 170W</gml:description> <gml:name>urn:ioos:station:wmo:51305</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 -170</gml:lowerCorner> <gml:upperCorner>2 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2006-08-01T16:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51305"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51306"> <gml:description>2S 170W</gml:description> <gml:name>urn:ioos:station:wmo:51306</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 -170</gml:lowerCorner> <gml:upperCorner>-2 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-03-15T22:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-18T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51306"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51307"> <gml:description>8N 125W</gml:description> <gml:name>urn:ioos:station:wmo:51307</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 -125</gml:lowerCorner> <gml:upperCorner>8 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-06-15T00:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-08T15:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51307"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51308"> <gml:description>8S 125W</gml:description> <gml:name>urn:ioos:station:wmo:51308</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 -125</gml:lowerCorner> <gml:upperCorner>-8 -125</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T08:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T05:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51308"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51309"> <gml:description>8N 170W</gml:description> <gml:name>urn:ioos:station:wmo:51309</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 -170</gml:lowerCorner> <gml:upperCorner>8 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-18T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51309"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51310"> <gml:description>8S 170W</gml:description> <gml:name>urn:ioos:station:wmo:51310</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 -170</gml:lowerCorner> <gml:upperCorner>-8 -170</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T11:00:00Z</gml:beginPosition> <gml:endPosition>2012-02-23T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51310"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51311"> <gml:description>0 140W</gml:description> <gml:name>urn:ioos:station:wmo:51311</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 -140</gml:lowerCorner> <gml:upperCorner>0 -140</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-04T03:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51311"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51406"> <gml:description>2,900 NM Southeast of Hawaii</gml:description> <gml:name>urn:ioos:station:wmo:51406</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8.49 -125.01</gml:lowerCorner> <gml:upperCorner>-8.49 -125.01</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51406"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51407"> <gml:description>140 NM Southeast of Honolulu, HI</gml:description> <gml:name>urn:ioos:station:wmo:51407</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.63 -156.53</gml:lowerCorner> <gml:upperCorner>19.63 -156.53</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51407"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51425"> <gml:description>370 NM NW of Apia</gml:description> <gml:name>urn:ioos:station:wmo:51425</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-9.49 -176.25</gml:lowerCorner> <gml:upperCorner>-9.49 -176.25</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51425"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51426"> <gml:description>400NM Southeast of Tonga</gml:description> <gml:name>urn:ioos:station:wmo:51426</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-22.99 -168.1</gml:lowerCorner> <gml:upperCorner>-22.99 -168.1</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2011-12-16T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51426"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51wh0"> <gml:description>WHOTS - Woods Hole Ocean Time-series</gml:description> <gml:name>urn:ioos:station:wmo:51wh0</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>22.65 -157.933</gml:lowerCorner> <gml:upperCorner>22.65 -157.933</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-19T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51wh0"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-51x04"> <gml:description>Old 51004 (adrift)</gml:description> <gml:name>urn:ioos:station:wmo:51x04</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.586 -152.461</gml:lowerCorner> <gml:upperCorner>17.586 -152.461</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-09T13:50:00Z</gml:beginPosition> <gml:endPosition>2010-05-21T19:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:51x04"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52001"> <gml:description>2N 165E</gml:description> <gml:name>urn:ioos:station:wmo:52001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 165</gml:lowerCorner> <gml:upperCorner>2 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-08-26T08:45:00Z</gml:beginPosition> <gml:endPosition>2011-10-18T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52002"> <gml:description>2S 165E</gml:description> <gml:name>urn:ioos:station:wmo:52002</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 165</gml:lowerCorner> <gml:upperCorner>-2 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-08-21T14:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52002"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52003"> <gml:description>5N 165E</gml:description> <gml:name>urn:ioos:station:wmo:52003</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 165</gml:lowerCorner> <gml:upperCorner>5 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2006-08-01T17:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52003"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52004"> <gml:description>5S 165E</gml:description> <gml:name>urn:ioos:station:wmo:52004</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 165</gml:lowerCorner> <gml:upperCorner>-5 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T10:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52004"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52006"> <gml:description>8N 165E</gml:description> <gml:name>urn:ioos:station:wmo:52006</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 165</gml:lowerCorner> <gml:upperCorner>8 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-03-18T01:00:00Z</gml:beginPosition> <gml:endPosition>2011-08-30T04:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52006"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52007"> <gml:description>8S 165E</gml:description> <gml:name>urn:ioos:station:wmo:52007</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 165</gml:lowerCorner> <gml:upperCorner>-8 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2006-07-31T07:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52007"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52200"> <gml:description>Ipan, Guam (121)</gml:description> <gml:name>urn:ioos:station:wmo:52200</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>13.354 144.789</gml:lowerCorner> <gml:upperCorner>13.354 144.789</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52200"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52201"> <gml:description>Kalo, Majuro, Marshall Islands - 163</gml:description> <gml:name>urn:ioos:station:wmo:52201</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>7.092 171.395</gml:lowerCorner> <gml:upperCorner>7.092 171.395</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-04-24T02:55:00Z</gml:beginPosition> <gml:endPosition>2011-09-09T16:28:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52201"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52243"> <gml:description>Wake Island (WAK 002)</gml:description> <gml:name>urn:ioos:station:wmo:52243</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.308 166.622</gml:lowerCorner> <gml:upperCorner>19.308 166.622</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52243"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52244"> <gml:description>Maug Islands (MAU 002)</gml:description> <gml:name>urn:ioos:station:wmo:52244</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.029 145.232</gml:lowerCorner> <gml:upperCorner>20.029 145.232</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52244"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52245"> <gml:description>Pagan Island (PAG 001)</gml:description> <gml:name>urn:ioos:station:wmo:52245</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.127 145.757</gml:lowerCorner> <gml:upperCorner>18.127 145.757</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52245"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52246"> <gml:description>Saipan Island (SAI 008)</gml:description> <gml:name>urn:ioos:station:wmo:52246</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>15.172 145.695</gml:lowerCorner> <gml:upperCorner>15.172 145.695</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52246"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52247"> <gml:description>Rota Island (ROT 002)</gml:description> <gml:name>urn:ioos:station:wmo:52247</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>14.128 145.164</gml:lowerCorner> <gml:upperCorner>14.128 145.164</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition>2011-06-25T16:03:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52247"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52248"> <gml:description>Guam (GUA 003)</gml:description> <gml:name>urn:ioos:station:wmo:52248</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>13.529 144.801</gml:lowerCorner> <gml:upperCorner>13.529 144.801</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-09T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-01-12T00:06:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52248"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52249"> <gml:description>Kimbe, New Britain, PNG (KIM 001)</gml:description> <gml:name>urn:ioos:station:wmo:52249</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5.157 150.299</gml:lowerCorner> <gml:upperCorner>-5.157 150.299</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-26T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-19T07:07:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52249"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52309"> <gml:description>5N 180E</gml:description> <gml:name>urn:ioos:station:wmo:52309</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>5 180</gml:lowerCorner> <gml:upperCorner>5 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-05-31T09:00:00Z</gml:beginPosition> <gml:endPosition>2011-04-23T00:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52309"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52310"> <gml:description>2N 180E</gml:description> <gml:name>urn:ioos:station:wmo:52310</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>2 180</gml:lowerCorner> <gml:upperCorner>2 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T07:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-27T03:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52310"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52311"> <gml:description>0 180E</gml:description> <gml:name>urn:ioos:station:wmo:52311</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 180</gml:lowerCorner> <gml:upperCorner>0 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-01-12T23:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52311"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52312"> <gml:description>2S 180E</gml:description> <gml:name>urn:ioos:station:wmo:52312</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-2 180</gml:lowerCorner> <gml:upperCorner>-2 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2006-07-27T21:10:00Z</gml:beginPosition> <gml:endPosition>2011-12-22T12:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52312"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52313"> <gml:description>5S 180E</gml:description> <gml:name>urn:ioos:station:wmo:52313</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5 180</gml:lowerCorner> <gml:upperCorner>-5 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T09:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-09T08:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52313"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52315"> <gml:description>8N 180E</gml:description> <gml:name>urn:ioos:station:wmo:52315</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>8 180</gml:lowerCorner> <gml:upperCorner>8 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T13:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-30T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52315"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52316"> <gml:description>8S 180E</gml:description> <gml:name>urn:ioos:station:wmo:52316</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-8 180</gml:lowerCorner> <gml:upperCorner>-8 180</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T04:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-18T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52316"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52321"> <gml:description>0 165E</gml:description> <gml:name>urn:ioos:station:wmo:52321</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>0 165</gml:lowerCorner> <gml:upperCorner>0 165</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2007-02-12T13:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-18T09:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52321"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52401"> <gml:description>610 NM Northeast of Saipan</gml:description> <gml:name>urn:ioos:station:wmo:52401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.29 155.77</gml:lowerCorner> <gml:upperCorner>19.29 155.77</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52402"> <gml:description>790 NM Northwest of Kwajalein</gml:description> <gml:name>urn:ioos:station:wmo:52402</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>11.57 154.59</gml:lowerCorner> <gml:upperCorner>11.57 154.59</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52402"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52403"> <gml:description>430 NM Southwest of Truk</gml:description> <gml:name>urn:ioos:station:wmo:52403</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>4 145.54</gml:lowerCorner> <gml:upperCorner>4 145.54</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-02-12T15:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52403"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52404"> <gml:description>760 NM Northeast of Manila, Philippines</gml:description> <gml:name>urn:ioos:station:wmo:52404</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.94 132.31</gml:lowerCorner> <gml:upperCorner>20.94 132.31</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-02-05T17:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52404"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52405"> <gml:description>740 NM West of Agana, Guam</gml:description> <gml:name>urn:ioos:station:wmo:52405</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>12.88 132.33</gml:lowerCorner> <gml:upperCorner>12.88 132.33</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52405"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-52406"> <gml:description>450 NM Northeast of the Guadalcanal</gml:description> <gml:name>urn:ioos:station:wmo:52406</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-5.36 165.05</gml:lowerCorner> <gml:upperCorner>-5.36 165.05</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:52406"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-53046"> <gml:description>South Bali</gml:description> <gml:name>urn:ioos:station:wmo:53046</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-11.445 113.607</gml:lowerCorner> <gml:upperCorner>-11.445 113.607</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-18T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:53046"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-54401"> <gml:description>640NM Northeast of Auckland, New Zealand</gml:description> <gml:name>urn:ioos:station:wmo:54401</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-33.01 -172.99</gml:lowerCorner> <gml:upperCorner>-33.01 -172.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition>2012-04-03T14:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:54401"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55012"> <gml:description>DART Coral Sea</gml:description> <gml:name>urn:ioos:station:wmo:55012</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-15.8 158.5</gml:lowerCorner> <gml:upperCorner>-15.8 158.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55012"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55013"> <gml:description>ETD TASMAN</gml:description> <gml:name>urn:ioos:station:wmo:55013</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-46.67 161</gml:lowerCorner> <gml:upperCorner>-46.67 161</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55013"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55015"> <gml:description>DART TASMAN SEA 1</gml:description> <gml:name>urn:ioos:station:wmo:55015</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-46.92 160.56</gml:lowerCorner> <gml:upperCorner>-46.92 160.56</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-07-16T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55015"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55016"> <gml:description>Fiji Basin</gml:description> <gml:name>urn:ioos:station:wmo:55016</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-26 176</gml:lowerCorner> <gml:upperCorner>-26 176</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-06-17T06:15:00Z</gml:beginPosition> <gml:endPosition>2011-01-04T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55016"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55023"> <gml:description>DART Coral Sea</gml:description> <gml:name>urn:ioos:station:wmo:55023</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.803 153.585</gml:lowerCorner> <gml:upperCorner>-14.803 153.585</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-23T12:15:00Z</gml:beginPosition> <gml:endPosition>2012-02-02T02:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55023"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-55042"> <gml:description>Tasman Sea 2</gml:description> <gml:name>urn:ioos:station:wmo:55042</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-44.853 161.728</gml:lowerCorner> <gml:upperCorner>-44.853 161.728</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-04-27T12:15:00Z</gml:beginPosition> <gml:endPosition>2011-12-16T06:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:55042"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-56001"> <gml:description>Indian Ocean 1</gml:description> <gml:name>urn:ioos:station:wmo:56001</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-13.961 110.004</gml:lowerCorner> <gml:upperCorner>-13.961 110.004</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T12:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:56001"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-56003"> <gml:description>STB Indian Ocean 3 </gml:description> <gml:name>urn:ioos:station:wmo:56003</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-15.021 117.989</gml:lowerCorner> <gml:upperCorner>-15.021 117.989</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-13T18:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:56003"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_floor_depth_below_sea_surface"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58900"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58900</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>23.201 126.128</gml:lowerCorner> <gml:upperCorner>23.225 126.147</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-23T15:27:00Z</gml:beginPosition> <gml:endPosition>2010-09-26T00:59:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58900"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58901"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58901</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.823 121.143</gml:lowerCorner> <gml:upperCorner>24.161 127.158</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-24T10:50:00Z</gml:beginPosition> <gml:endPosition>2011-09-19T07:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58901"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58902"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58902</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>20.614 121.265</gml:lowerCorner> <gml:upperCorner>23.993 126.58</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-23T19:13:00Z</gml:beginPosition> <gml:endPosition>2011-11-08T23:36:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58902"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58903"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58903</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.584 -122.417</gml:lowerCorner> <gml:upperCorner>47.739 126.312</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-24T10:47:00Z</gml:beginPosition> <gml:endPosition>2011-11-13T07:43:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58903"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58904"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58904</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.384 -122.414</gml:lowerCorner> <gml:upperCorner>47.722 120.326</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-12T08:17:00Z</gml:beginPosition> <gml:endPosition>2012-05-14T19:47:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58904"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58905"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58905</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.63 119.891</gml:lowerCorner> <gml:upperCorner>22.014 120.539</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-02-07T15:28:00Z</gml:beginPosition> <gml:endPosition>2012-03-15T14:02:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58905"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58951"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58951</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-31.932 113.502</gml:lowerCorner> <gml:upperCorner>-29.118 115.054</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-09-14T08:29:00Z</gml:beginPosition> <gml:endPosition>2011-10-12T00:13:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58951"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58952"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58952</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-14.443 144.732</gml:lowerCorner> <gml:upperCorner>-13.327 146.548</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-09-14T09:15:00Z</gml:beginPosition> <gml:endPosition>2011-10-05T16:14:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58952"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-58953"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:58953</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-46.279 142.048</gml:lowerCorner> <gml:upperCorner>-46.013 142.52</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-09-14T07:51:00Z</gml:beginPosition> <gml:endPosition>2011-09-27T01:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:58953"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-78900"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:78900</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-77.44 -179.995</gml:lowerCorner> <gml:upperCorner>-76.34 179.995</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-12-07T19:28:00Z</gml:beginPosition> <gml:endPosition>2011-12-25T19:04:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:78900"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-78901"> <gml:description>Glider</gml:description> <gml:name>urn:ioos:station:wmo:78901</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>-77.466 170.193</gml:lowerCorner> <gml:upperCorner>-76.089 179.914</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-12-09T04:04:00Z</gml:beginPosition> <gml:endPosition>2011-12-08T09:24:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:78901"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-aban6"> <gml:description>Alexandria Bay, NY</gml:description> <gml:name>urn:ioos:station:wmo:aban6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.333 -75.933</gml:lowerCorner> <gml:upperCorner>44.333 -75.933</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition>2009-02-12T20:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:aban6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-acmn4"> <gml:description>Atlantic City Marina, NJ</gml:description> <gml:name>urn:ioos:station:wmo:acmn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.38 -74.42</gml:lowerCorner> <gml:upperCorner>39.38 -74.42</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:59:00Z</gml:beginPosition> <gml:endPosition>2011-10-02T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:acmn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-acqs1"> <gml:description>St. Pierre, Ace Basin Reserve, SC</gml:description> <gml:name>urn:ioos:station:wmo:acqs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.523 -80.357</gml:lowerCorner> <gml:upperCorner>32.523 -80.357</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:acqs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-acxs1"> <gml:description>ACE Basin Reserve, SC</gml:description> <gml:name>urn:ioos:station:wmo:acxs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.559 -80.454</gml:lowerCorner> <gml:upperCorner>32.559 -80.454</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:acxs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-agmw3"> <gml:description>Algoma City Marina WI</gml:description> <gml:name>urn:ioos:station:wmo:agmw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.608 -87.433</gml:lowerCorner> <gml:upperCorner>44.608 -87.433</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:19:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:agmw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-amaa2"> <gml:description>East Amatuli Station Light, AK</gml:description> <gml:name>urn:ioos:station:wmo:amaa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.915 -151.952</gml:lowerCorner> <gml:upperCorner>58.915 -151.952</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:amaa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ancf1"> <gml:description>Anclote Gulf Park, FL</gml:description> <gml:name>urn:ioos:station:wmo:ancf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.193 -82.789</gml:lowerCorner> <gml:upperCorner>28.193 -82.789</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-20T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ancf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-anmf1"> <gml:description>ANM - Anna Maria, FL</gml:description> <gml:name>urn:ioos:station:wmo:anmf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.55 -82.75</gml:lowerCorner> <gml:upperCorner>27.55 -82.75</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:anmf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-anmn6"> <gml:description>Hudson River Reserve, NY</gml:description> <gml:name>urn:ioos:station:wmo:anmn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.018 -73.917</gml:lowerCorner> <gml:upperCorner>42.018 -73.917</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:anmn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-anrn6"> <gml:description>Tivoli South, Hudson River Reserve, NY</gml:description> <gml:name>urn:ioos:station:wmo:anrn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.027 -73.926</gml:lowerCorner> <gml:upperCorner>42.027 -73.926</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition>2012-05-03T21:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:anrn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-apnm4"> <gml:description>Alpena Harbor Light, MI</gml:description> <gml:name>urn:ioos:station:wmo:apnm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.06 -83.424</gml:lowerCorner> <gml:upperCorner>45.06 -83.424</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:apnm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-apqf1"> <gml:description>East Bay, Apalachicola Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:apqf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.786 -84.875</gml:lowerCorner> <gml:upperCorner>29.786 -84.875</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-01T01:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:apqf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-apxf1"> <gml:description>Apalachicola Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:apxf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.791 -84.883</gml:lowerCorner> <gml:upperCorner>29.791 -84.883</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:apxf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-arop4"> <gml:description>9757809 - Arecibo, PR</gml:description> <gml:name>urn:ioos:station:wmo:arop4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.48 -66.702</gml:lowerCorner> <gml:upperCorner>18.48 -66.702</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:12:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:arop4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-arpf1"> <gml:description>APK - Aripeka, FL</gml:description> <gml:name>urn:ioos:station:wmo:arpf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.433 -82.667</gml:lowerCorner> <gml:upperCorner>28.433 -82.667</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-15T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:arpf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-auga2"> <gml:description>Augustine Island, AK</gml:description> <gml:name>urn:ioos:station:wmo:auga2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.378 -153.348</gml:lowerCorner> <gml:upperCorner>59.378 -153.348</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:auga2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-avan4"> <gml:description>Avalon, NJ</gml:description> <gml:name>urn:ioos:station:wmo:avan4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.09 -74.72</gml:lowerCorner> <gml:upperCorner>39.09 -74.72</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:59:00Z</gml:beginPosition> <gml:endPosition>2011-07-04T06:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:avan4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-babt2"> <gml:description>8776604 - Baffin Bay; Point of Rocks, TX</gml:description> <gml:name>urn:ioos:station:wmo:babt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.301 -97.416</gml:lowerCorner> <gml:upperCorner>27.301 -97.416</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:babt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-barn6"> <gml:description>Barcelona Harbor, NY</gml:description> <gml:name>urn:ioos:station:wmo:barn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.346 -79.596</gml:lowerCorner> <gml:upperCorner>42.346 -79.596</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-01-24T18:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:barn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bdvf1"> <gml:description>Broad River, FL</gml:description> <gml:name>urn:ioos:station:wmo:bdvf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.476 -80.99</gml:lowerCorner> <gml:upperCorner>25.476 -80.99</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bdvf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bgcf1"> <gml:description>Big Carlos Pass, FL</gml:description> <gml:name>urn:ioos:station:wmo:bgcf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.404 -81.881</gml:lowerCorner> <gml:upperCorner>26.404 -81.881</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bgcf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bgxn3"> <gml:description>Great Bay Reserve, NH</gml:description> <gml:name>urn:ioos:station:wmo:bgxn3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.059 -70.83</gml:lowerCorner> <gml:upperCorner>43.059 -70.83</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bgxn3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bhri3"> <gml:description>Burns Harbor, IN</gml:description> <gml:name>urn:ioos:station:wmo:bhri3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.647 -87.147</gml:lowerCorner> <gml:upperCorner>41.647 -87.147</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-01T16:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bhri3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bigm4"> <gml:description>Big Bay, MI</gml:description> <gml:name>urn:ioos:station:wmo:bigm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.83 -87.73</gml:lowerCorner> <gml:upperCorner>46.83 -87.73</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bigm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-blia2"> <gml:description>Bligh Reef Light, AK</gml:description> <gml:name>urn:ioos:station:wmo:blia2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>60.84 -146.88</gml:lowerCorner> <gml:upperCorner>60.84 -146.88</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:58:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:blia2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-blta2"> <gml:description>Bartlet Cove AK</gml:description> <gml:name>urn:ioos:station:wmo:blta2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.455 -135.888</gml:lowerCorner> <gml:upperCorner>58.455 -135.888</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:blta2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bnkf1"> <gml:description>Butternut Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:bnkf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.087 -80.519</gml:lowerCorner> <gml:upperCorner>25.087 -80.519</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bnkf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bobf1"> <gml:description>Bob Allen, FL</gml:description> <gml:name>urn:ioos:station:wmo:bobf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.024 -80.682</gml:lowerCorner> <gml:upperCorner>25.024 -80.682</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bobf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-brbn4"> <gml:description>Brant Beach, NJ</gml:description> <gml:name>urn:ioos:station:wmo:brbn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.61 -74.2</gml:lowerCorner> <gml:upperCorner>39.61 -74.2</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:59:00Z</gml:beginPosition> <gml:endPosition>2011-03-21T15:10:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:brbn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-brim2"> <gml:description>Railroad, Chesapeake Bay Reserve, MD</gml:description> <gml:name>urn:ioos:station:wmo:brim2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.781 -76.714</gml:lowerCorner> <gml:upperCorner>38.781 -76.714</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:brim2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bsbm4"> <gml:description>Big Sable Point, MI</gml:description> <gml:name>urn:ioos:station:wmo:bsbm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.055 -86.514</gml:lowerCorner> <gml:upperCorner>44.055 -86.514</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bsbm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bsca1"> <gml:description>Bon Secour, AL</gml:description> <gml:name>urn:ioos:station:wmo:bsca1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.329 -87.829</gml:lowerCorner> <gml:upperCorner>30.329 -87.829</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-07T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bsca1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bslm2"> <gml:description>Chesapeake Bay, MD</gml:description> <gml:name>urn:ioos:station:wmo:bslm2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.781 -76.708</gml:lowerCorner> <gml:upperCorner>38.781 -76.708</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T13:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bslm2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-burl1"> <gml:description>Southwest Pass, LA</gml:description> <gml:name>urn:ioos:station:wmo:burl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.905 -89.428</gml:lowerCorner> <gml:upperCorner>28.905 -89.428</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-10T21:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:burl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-buzm3"> <gml:description>Buzzards Bay, MA</gml:description> <gml:name>urn:ioos:station:wmo:buzm3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.397 -71.033</gml:lowerCorner> <gml:upperCorner>41.397 -71.033</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:buzm3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bvqw1"> <gml:description>Bayview Channel - Padilla Bay, WA</gml:description> <gml:name>urn:ioos:station:wmo:bvqw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.496 -122.501</gml:lowerCorner> <gml:upperCorner>48.496 -122.501</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-28T07:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bvqw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-bwsf1"> <gml:description>Blackwater Sound, FL</gml:description> <gml:name>urn:ioos:station:wmo:bwsf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.177 -80.438</gml:lowerCorner> <gml:upperCorner>25.177 -80.438</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:bwsf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-camf1"> <gml:description>Campbell Park, FL</gml:description> <gml:name>urn:ioos:station:wmo:camf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.765 -82.649</gml:lowerCorner> <gml:upperCorner>27.765 -82.649</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:camf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-canf1"> <gml:description>Cane Patch, FL</gml:description> <gml:name>urn:ioos:station:wmo:canf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.42 -80.943</gml:lowerCorner> <gml:upperCorner>25.42 -80.943</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:canf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-caro3"> <gml:description>Cape Arago, OR</gml:description> <gml:name>urn:ioos:station:wmo:caro3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.342 -124.375</gml:lowerCorner> <gml:upperCorner>43.342 -124.375</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:caro3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cblo1"> <gml:description>Conneaut Breakwater Light, OH</gml:description> <gml:name>urn:ioos:station:wmo:cblo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.981 -80.555</gml:lowerCorner> <gml:upperCorner>41.981 -80.555</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-03T11:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cblo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cbrw3"> <gml:description>Chambers Island, WI</gml:description> <gml:name>urn:ioos:station:wmo:cbrw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.198 -87.36</gml:lowerCorner> <gml:upperCorner>45.198 -87.36</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cbrw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cdea2"> <gml:description>Cape Decision, AK</gml:description> <gml:name>urn:ioos:station:wmo:cdea2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.002 -134.133</gml:lowerCorner> <gml:upperCorner>56.002 -134.133</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cdea2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cdrf1"> <gml:description>Cedar Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:cdrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.136 -83.029</gml:lowerCorner> <gml:upperCorner>29.136 -83.029</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cdrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-chds1"> <gml:description>Strom Thurmond Dam, SC</gml:description> <gml:name>urn:ioos:station:wmo:chds1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.662 -82.2</gml:lowerCorner> <gml:upperCorner>33.662 -82.2</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:chds1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-chii2"> <gml:description>Chicago, IL</gml:description> <gml:name>urn:ioos:station:wmo:chii2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42 -87.5</gml:lowerCorner> <gml:upperCorner>42 -87.5</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:chii2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-chlv2"> <gml:description>Chesapeake Light, VA</gml:description> <gml:name>urn:ioos:station:wmo:chlv2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.91 -75.71</gml:lowerCorner> <gml:upperCorner>36.91 -75.71</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-12-02T20:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:chlv2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-chno3"> <gml:description>South Slough Reserve, OR </gml:description> <gml:name>urn:ioos:station:wmo:chno3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.345 -124.329</gml:lowerCorner> <gml:upperCorner>43.345 -124.329</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:chno3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-chqo3"> <gml:description>Winchester Arm - South Slough, OR</gml:description> <gml:name>urn:ioos:station:wmo:chqo3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.282 -124.32</gml:lowerCorner> <gml:upperCorner>43.282 -124.32</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-10-20T20:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:chqo3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-clkn7"> <gml:description>Cape Lookout, NC</gml:description> <gml:name>urn:ioos:station:wmo:clkn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.622 -76.525</gml:lowerCorner> <gml:upperCorner>34.622 -76.525</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-11-12T01:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:clkn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-clsm4"> <gml:description>St. Clair Shores, MI</gml:description> <gml:name>urn:ioos:station:wmo:clsm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.471 -82.877</gml:lowerCorner> <gml:upperCorner>42.471 -82.877</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:40:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:clsm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cnbf1"> <gml:description>Cannon Bay, FL</gml:description> <gml:name>urn:ioos:station:wmo:cnbf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.7 -81.186</gml:lowerCorner> <gml:upperCorner>25.7 -81.186</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cnbf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cpnt2"> <gml:description>Copano Bay, TX</gml:description> <gml:name>urn:ioos:station:wmo:cpnt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.118 -97.022</gml:lowerCorner> <gml:upperCorner>28.118 -97.022</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-11T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cpnt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cpxc1"> <gml:description>Cal Poly Pier, CA</gml:description> <gml:name>urn:ioos:station:wmo:cpxc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>35.17 -120.741</gml:lowerCorner> <gml:upperCorner>35.17 -120.741</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:03:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cpxc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-crta1"> <gml:description>Cedar Point, AL</gml:description> <gml:name>urn:ioos:station:wmo:crta1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.308 -88.14</gml:lowerCorner> <gml:upperCorner>30.308 -88.14</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-11T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:crta1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cspa2"> <gml:description>Cape Spencer, AK</gml:description> <gml:name>urn:ioos:station:wmo:cspa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.199 -136.639</gml:lowerCorner> <gml:upperCorner>58.199 -136.639</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition>2012-01-02T23:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cspa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cvqv2"> <gml:description>Sweet Hall, Chesapeake Bay Reserve, VA</gml:description> <gml:name>urn:ioos:station:wmo:cvqv2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.571 -76.884</gml:lowerCorner> <gml:upperCorner>37.571 -76.884</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cvqv2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cwaf1"> <gml:description>Clear Water Pass, FL </gml:description> <gml:name>urn:ioos:station:wmo:cwaf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.295 -81.013</gml:lowerCorner> <gml:upperCorner>25.295 -81.013</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-01-25T23:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cwaf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cwqo3"> <gml:description>Charleston Bridge, South Slough Reserve, OR</gml:description> <gml:name>urn:ioos:station:wmo:cwqo3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.338 -124.321</gml:lowerCorner> <gml:upperCorner>43.338 -124.321</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cwqo3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-cygm4"> <gml:description>Cheybogan, MI</gml:description> <gml:name>urn:ioos:station:wmo:cygm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.651 -84.472</gml:lowerCorner> <gml:upperCorner>45.651 -84.472</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-25T18:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:cygm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-dbln6"> <gml:description>Dunkirk, NY</gml:description> <gml:name>urn:ioos:station:wmo:dbln6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.493 -79.353</gml:lowerCorner> <gml:upperCorner>42.493 -79.353</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:dbln6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-dbqs1"> <gml:description>Debidue Creek - North Inlet - Winyah Bay, NC</gml:description> <gml:name>urn:ioos:station:wmo:dbqs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.36 -79.168</gml:lowerCorner> <gml:upperCorner>33.36 -79.168</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-28T07:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:dbqs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-deqd1"> <gml:description>Lebanon Landing, Delaware Reserve, DE</gml:description> <gml:name>urn:ioos:station:wmo:deqd1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.114 -75.499</gml:lowerCorner> <gml:upperCorner>39.114 -75.499</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-15T13:45:00Z</gml:beginPosition> <gml:endPosition>2010-07-14T13:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:deqd1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-desw1"> <gml:description>Destruction Is., WA</gml:description> <gml:name>urn:ioos:station:wmo:desw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.675 -124.485</gml:lowerCorner> <gml:upperCorner>47.675 -124.485</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:desw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-disw3"> <gml:description>Devils Island, WI</gml:description> <gml:name>urn:ioos:station:wmo:disw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.08 -90.728</gml:lowerCorner> <gml:upperCorner>47.08 -90.728</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:disw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-dkkf1"> <gml:description>Duck Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:dkkf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.18 -80.49</gml:lowerCorner> <gml:upperCorner>25.18 -80.49</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:dkkf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-dpha1"> <gml:description>Dauphin Island, AL</gml:description> <gml:name>urn:ioos:station:wmo:dpha1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.251 -88.078</gml:lowerCorner> <gml:upperCorner>30.251 -88.078</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition>2010-07-19T16:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:dpha1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-dpia1"> <gml:description>Dauphin Island, AL</gml:description> <gml:name>urn:ioos:station:wmo:dpia1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.248 -88.073</gml:lowerCorner> <gml:upperCorner>30.248 -88.073</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:05:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:dpia1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-drfa2"> <gml:description>Drift River Terminal, AK</gml:description> <gml:name>urn:ioos:station:wmo:drfa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>60.553 -152.137</gml:lowerCorner> <gml:upperCorner>60.553 -152.137</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:drfa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-drsd1"> <gml:description>Delaware Reserve, DE</gml:description> <gml:name>urn:ioos:station:wmo:drsd1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.089 -75.437</gml:lowerCorner> <gml:upperCorner>39.089 -75.437</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:drsd1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-egkf1"> <gml:description>EGK - Egmont Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:egkf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.601 -82.76</gml:lowerCorner> <gml:upperCorner>27.601 -82.76</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:egkf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-elqc1"> <gml:description>South Marsh, Elkhorn Slough Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:elqc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.818 -121.739</gml:lowerCorner> <gml:upperCorner>36.818 -121.739</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:30:00Z</gml:beginPosition> <gml:endPosition>2012-03-27T00:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:elqc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-elxc1"> <gml:description>Elkhorn Slough Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:elxc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.815 -121.738</gml:lowerCorner> <gml:upperCorner>36.815 -121.738</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:elxc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-eroa2"> <gml:description>Eldred Rock, AK</gml:description> <gml:name>urn:ioos:station:wmo:eroa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.971 -135.22</gml:lowerCorner> <gml:upperCorner>58.971 -135.22</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:eroa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fbis1"> <gml:description>Folly Island, SC</gml:description> <gml:name>urn:ioos:station:wmo:fbis1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.685 -79.888</gml:lowerCorner> <gml:upperCorner>32.685 -79.888</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fbis1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fbps1"> <gml:description>Folly Beach Pier, SC</gml:description> <gml:name>urn:ioos:station:wmo:fbps1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.652 -79.938</gml:lowerCorner> <gml:upperCorner>32.652 -79.938</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-20T22:49:00Z</gml:beginPosition> <gml:endPosition>2010-09-16T03:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fbps1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ffia2"> <gml:description>Five Finger, AK</gml:description> <gml:name>urn:ioos:station:wmo:ffia2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.272 -133.63</gml:lowerCorner> <gml:upperCorner>57.272 -133.63</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ffia2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fgbl1"> <gml:description>High Island 334</gml:description> <gml:name>urn:ioos:station:wmo:fgbl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.118 -93.67</gml:lowerCorner> <gml:upperCorner>28.118 -93.67</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:14:00Z</gml:beginPosition> <gml:endPosition>2010-12-19T17:44:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fgbl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fhpf1"> <gml:description>Fred Howard Park, FL</gml:description> <gml:name>urn:ioos:station:wmo:fhpf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.153 -82.801</gml:lowerCorner> <gml:upperCorner>28.153 -82.801</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-03T13:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fhpf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fila2"> <gml:description>Flat Island Light, AK</gml:description> <gml:name>urn:ioos:station:wmo:fila2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.332 -151.995</gml:lowerCorner> <gml:upperCorner>59.332 -151.995</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fila2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fptm4"> <gml:description>Fairport, MI</gml:description> <gml:name>urn:ioos:station:wmo:fptm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.619 -86.659</gml:lowerCorner> <gml:upperCorner>45.619 -86.659</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fptm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-frdp4"> <gml:description>9753216 - Fajardo, PR</gml:description> <gml:name>urn:ioos:station:wmo:frdp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.335 -65.631</gml:lowerCorner> <gml:upperCorner>18.335 -65.631</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:36:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:frdp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fsti2"> <gml:description>Foster Ave Chicago, IL (CPD)</gml:description> <gml:name>urn:ioos:station:wmo:fsti2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.976 -87.648</gml:lowerCorner> <gml:upperCorner>41.976 -87.648</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-11T19:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-10T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fsti2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-fwyf1"> <gml:description>Fowey Rocks, FL</gml:description> <gml:name>urn:ioos:station:wmo:fwyf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.59 -80.097</gml:lowerCorner> <gml:upperCorner>25.59 -80.097</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:fwyf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gbif1"> <gml:description>Gunboat Island, FL</gml:description> <gml:name>urn:ioos:station:wmo:gbif1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.376 -81.029</gml:lowerCorner> <gml:upperCorner>25.376 -81.029</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-08T18:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gbif1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gblw3"> <gml:description>Green Bay Entrance Light WI</gml:description> <gml:name>urn:ioos:station:wmo:gblw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.655 -87.902</gml:lowerCorner> <gml:upperCorner>44.655 -87.902</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:06:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gblw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gbqn3"> <gml:description>Oyster River, Great Bay Reserve, NH</gml:description> <gml:name>urn:ioos:station:wmo:gbqn3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.134 -70.911</gml:lowerCorner> <gml:upperCorner>43.134 -70.911</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gbqn3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gbtf1"> <gml:description>Garfield Bight, FL</gml:description> <gml:name>urn:ioos:station:wmo:gbtf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.17 -80.797</gml:lowerCorner> <gml:upperCorner>25.17 -80.797</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gbtf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gdqm6"> <gml:description>Bangs Lake, Grand Bay Reserve, MS</gml:description> <gml:name>urn:ioos:station:wmo:gdqm6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.357 -88.463</gml:lowerCorner> <gml:upperCorner>30.357 -88.463</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-17T10:00:00Z</gml:beginPosition> <gml:endPosition>2012-03-19T19:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gdqm6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gdwv2"> <gml:description>Goodwin Island, Chesapeake Bay Reserve, VA</gml:description> <gml:name>urn:ioos:station:wmo:gdwv2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.218 -76.395</gml:lowerCorner> <gml:upperCorner>37.218 -76.395</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-07-27T12:30:00Z</gml:beginPosition> <gml:endPosition>2012-05-08T13:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gdwv2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gdxm6"> <gml:description>Grand Bay Reserve, MS</gml:description> <gml:name>urn:ioos:station:wmo:gdxm6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.359 -88.42</gml:lowerCorner> <gml:upperCorner>30.359 -88.42</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gdxm6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gelo1"> <gml:description>Geneva on the Lake, OH</gml:description> <gml:name>urn:ioos:station:wmo:gelo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.86 -80.974</gml:lowerCorner> <gml:upperCorner>41.86 -80.974</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-12T01:48:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gelo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-grmm4"> <gml:description>Grand Marais, MI</gml:description> <gml:name>urn:ioos:station:wmo:grmm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.68 -85.97</gml:lowerCorner> <gml:upperCorner>46.68 -85.97</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-04T11:40:00Z</gml:beginPosition> <gml:endPosition>2012-03-18T08:23:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:grmm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gslm4"> <gml:description>Gravelly Shoals Light MI</gml:description> <gml:name>urn:ioos:station:wmo:gslm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.018 -83.537</gml:lowerCorner> <gml:upperCorner>44.018 -83.537</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-21T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gslm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gtbm4"> <gml:description>Grand Traverse Bay Observing System Station 2</gml:description> <gml:name>urn:ioos:station:wmo:gtbm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.767 -85.606</gml:lowerCorner> <gml:upperCorner>44.767 -85.606</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-08T14:55:00Z</gml:beginPosition> <gml:endPosition>2010-10-15T12:05:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gtbm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gtlm4"> <gml:description>Grand Traverse Light, MI</gml:description> <gml:name>urn:ioos:station:wmo:gtlm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.211 -85.55</gml:lowerCorner> <gml:upperCorner>45.211 -85.55</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:24:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gtlm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gtqf1"> <gml:description>Pellicer Creek, Guan Tolomato Matanzas Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:gtqf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.669 -81.256</gml:lowerCorner> <gml:upperCorner>29.669 -81.256</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gtqf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gtrm4"> <gml:description>Superior Grand Traverse Bay, MI</gml:description> <gml:name>urn:ioos:station:wmo:gtrm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.179 -88.242</gml:lowerCorner> <gml:upperCorner>47.179 -88.242</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gtrm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-gtxf1"> <gml:description>Guana Tolomato Matanzas Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:gtxf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.658 -81.22</gml:lowerCorner> <gml:upperCorner>29.658 -81.22</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:gtxf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-hansi"> <gml:description>Hans Island, Arctic</gml:description> <gml:name>urn:ioos:station:wmo:hansi</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>80.81 -66.4</gml:lowerCorner> <gml:upperCorner>80.81 -66.4</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-02T15:03:00Z</gml:beginPosition> <gml:endPosition>2010-07-19T16:03:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:hansi"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-hcef1"> <gml:description>Highway Creek, FL</gml:description> <gml:name>urn:ioos:station:wmo:hcef1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.254 -80.444</gml:lowerCorner> <gml:upperCorner>25.254 -80.444</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:hcef1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-hhlo1"> <gml:description>Huron Light, OH</gml:description> <gml:name>urn:ioos:station:wmo:hhlo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.401 -82.545</gml:lowerCorner> <gml:upperCorner>41.401 -82.545</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-01T20:29:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:hhlo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-hmra2"> <gml:description>Kachemak Bay Reserve, AK</gml:description> <gml:name>urn:ioos:station:wmo:hmra2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.601 -151.416</gml:lowerCorner> <gml:upperCorner>59.601 -151.416</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:hmra2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-hssf1"> <gml:description>HOM - Homosassa, FL</gml:description> <gml:name>urn:ioos:station:wmo:hssf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.772 -82.707</gml:lowerCorner> <gml:upperCorner>28.772 -82.707</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-13T22:00:00Z</gml:beginPosition> <gml:endPosition>2009-08-03T09:54:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:hssf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-huqn6"> <gml:description>Tivoli North, Hudson River Reserve, NY</gml:description> <gml:name>urn:ioos:station:wmo:huqn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.037 -73.925</gml:lowerCorner> <gml:upperCorner>42.037 -73.925</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-03T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:huqn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ildl1"> <gml:description>Isle Dernieres, LA / CSI05</gml:description> <gml:name>urn:ioos:station:wmo:ildl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.053 -90.533</gml:lowerCorner> <gml:upperCorner>29.053 -90.533</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-13T22:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ildl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-iosn3"> <gml:description>Isle of Shoals, NH</gml:description> <gml:name>urn:ioos:station:wmo:iosn3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.967 -70.623</gml:lowerCorner> <gml:upperCorner>42.967 -70.623</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:iosn3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-jaki2"> <gml:description>63rd ST, Chicago, IL (CPD)</gml:description> <gml:name>urn:ioos:station:wmo:jaki2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.781 -87.573</gml:lowerCorner> <gml:upperCorner>41.781 -87.573</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-11T19:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-08T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:jaki2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-jcqn4"> <gml:description>Chestnut Neck, Jacques Cousteau Reserve, NJ</gml:description> <gml:name>urn:ioos:station:wmo:jcqn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.548 -74.461</gml:lowerCorner> <gml:upperCorner>39.548 -74.461</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:jcqn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-jcrn4"> <gml:description>Jacques Cousteau Reserve, NJ</gml:description> <gml:name>urn:ioos:station:wmo:jcrn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.535 -74.464</gml:lowerCorner> <gml:upperCorner>39.535 -74.464</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:jcrn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-jctn4"> <gml:description>Buoy 126, Jacques Cousteau Reserve, NJ</gml:description> <gml:name>urn:ioos:station:wmo:jctn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.508 -74.338</gml:lowerCorner> <gml:upperCorner>39.508 -74.338</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:jctn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-jkyf1"> <gml:description>Johnson Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:jkyf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.05 -80.904</gml:lowerCorner> <gml:upperCorner>25.05 -80.904</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:jkyf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-joqp4"> <gml:description>Station 20, Jobes Bay Reserve, Puerto Rico</gml:description> <gml:name>urn:ioos:station:wmo:joqp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.93 -66.211</gml:lowerCorner> <gml:upperCorner>17.93 -66.211</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-09T16:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:joqp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-joxp4"> <gml:description>Jobos Bay Reserve, Puerto Rico</gml:description> <gml:name>urn:ioos:station:wmo:joxp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.956 -66.239</gml:lowerCorner> <gml:upperCorner>17.956 -66.239</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:joxp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kata1"> <gml:description>Katrina Cut, AL</gml:description> <gml:name>urn:ioos:station:wmo:kata1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.258 -88.213</gml:lowerCorner> <gml:upperCorner>30.258 -88.213</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-06-11T19:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kata1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-katp"> <gml:description>Green Canyon 787 / Atlantis (BP)</gml:description> <gml:name>urn:ioos:station:wmo:katp</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.195 -90.027</gml:lowerCorner> <gml:upperCorner>27.195 -90.027</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-10-25T17:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:katp"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kbbf"> <gml:description>Brazos 133B (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kbbf</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.058 -95.872</gml:lowerCorner> <gml:upperCorner>28.058 -95.872</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kbbf"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kbqx"> <gml:description>Brazos 451 (Medco Energi)</gml:description> <gml:name>urn:ioos:station:wmo:kbqx</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.493 -95.724</gml:lowerCorner> <gml:upperCorner>28.493 -95.724</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-15T18:35:00Z</gml:beginPosition> <gml:endPosition>2011-03-06T14:05:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kbqx"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kcha2"> <gml:description>Homer Deep, Kachemak Bay Reserve, AK</gml:description> <gml:name>urn:ioos:station:wmo:kcha2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.603 -151.408</gml:lowerCorner> <gml:upperCorner>59.603 -151.408</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kcha2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kcmb"> <gml:description>East Cameron 47JP (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kcmb</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.441 -92.979</gml:lowerCorner> <gml:upperCorner>29.441 -92.979</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kcmb"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kcrh"> <gml:description>West Cameron 368A (Century Exploration)</gml:description> <gml:name>urn:ioos:station:wmo:kcrh</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.909 -93.302</gml:lowerCorner> <gml:upperCorner>28.909 -93.302</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kcrh"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kdlp"> <gml:description>West Delta 27A (AngloSuisse Offshore Partners)</gml:description> <gml:name>urn:ioos:station:wmo:kdlp</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.121 -89.547</gml:lowerCorner> <gml:upperCorner>29.121 -89.547</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-23T18:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kdlp"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kehc"> <gml:description>East Cameron 278B (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kehc</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.429 -92.878</gml:lowerCorner> <gml:upperCorner>28.429 -92.878</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kehc"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-keir"> <gml:description>Eugene Island 215 (McMoRan Oil &amp; Gas)</gml:description> <gml:name>urn:ioos:station:wmo:keir</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.634 -91.489</gml:lowerCorner> <gml:upperCorner>28.634 -91.489</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:keir"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kemk"> <gml:description>East Breaks 165 (SandRidge Energy)</gml:description> <gml:name>urn:ioos:station:wmo:kemk</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.819 -94.323</gml:lowerCorner> <gml:upperCorner>27.819 -94.323</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kemk"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kgbk"> <gml:description>Garden Banks 783 / Magnolia TLP (ConocoPhillips)</gml:description> <gml:name>urn:ioos:station:wmo:kgbk</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.204 -92.203</gml:lowerCorner> <gml:upperCorner>27.204 -92.203</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kgbk"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kghb"> <gml:description>Garden Banks 172 / Salsa (Shell E &amp; P)</gml:description> <gml:name>urn:ioos:station:wmo:kghb</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.84 -91.988</gml:lowerCorner> <gml:upperCorner>27.84 -91.988</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-05T20:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kghb"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kgna"> <gml:description>Bay of Grand Marais, MN</gml:description> <gml:name>urn:ioos:station:wmo:kgna</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.745 -90.346</gml:lowerCorner> <gml:upperCorner>47.745 -90.346</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:56:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kgna"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kgry"> <gml:description>Green Canyon 338 / Front Runner (Murphy E&amp;P)</gml:description> <gml:name>urn:ioos:station:wmo:kgry</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.625 -90.441</gml:lowerCorner> <gml:upperCorner>27.625 -90.441</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-11-05T00:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kgry"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kgul"> <gml:description>Garden Banks 668 / Gunnison Spar (Anadarko)</gml:description> <gml:name>urn:ioos:station:wmo:kgul</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.304 -93.538</gml:lowerCorner> <gml:upperCorner>27.304 -93.538</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kgul"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kgvx"> <gml:description>Galveston 424C (Nippon Oil Exploration)</gml:description> <gml:name>urn:ioos:station:wmo:kgvx</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.577 -94.976</gml:lowerCorner> <gml:upperCorner>28.577 -94.976</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kgvx"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-khhv"> <gml:description>Alaminos Canyon 25 / Hoover-Diana (ExxonMobile Corp)</gml:description> <gml:name>urn:ioos:station:wmo:khhv</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.939 -94.689</gml:lowerCorner> <gml:upperCorner>26.939 -94.689</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-24T16:15:00Z</gml:beginPosition> <gml:endPosition>2012-05-09T13:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:khhv"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-khqi"> <gml:description>High Island 376B (Apache)</gml:description> <gml:name>urn:ioos:station:wmo:khqi</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.934 -93.669</gml:lowerCorner> <gml:upperCorner>27.934 -93.669</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:khqi"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kipn"> <gml:description>Mississippi Canyon 920 / Independence Hub (Anadarko / Enterprise)</gml:description> <gml:name>urn:ioos:station:wmo:kipn</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.085 -87.986</gml:lowerCorner> <gml:upperCorner>28.085 -87.986</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kipn"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kmdj"> <gml:description>Mississippi Canyon 311A (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kmdj</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.643 -89.794</gml:lowerCorner> <gml:upperCorner>28.643 -89.794</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kmdj"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kmis"> <gml:description>MP 140B AWOS (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kmis</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.296 -88.842</gml:lowerCorner> <gml:upperCorner>29.296 -88.842</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-05T19:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kmis"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kmiu"> <gml:description>Mustang Island A31B (Merit Energy)</gml:description> <gml:name>urn:ioos:station:wmo:kmiu</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.289 -96.736</gml:lowerCorner> <gml:upperCorner>27.289 -96.736</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kmiu"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kmyt"> <gml:description>Mississippi Canyon 711 / ATP Innovator (ATP Oil &amp; Gas)</gml:description> <gml:name>urn:ioos:station:wmo:kmyt</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.221 -89.615</gml:lowerCorner> <gml:upperCorner>28.221 -89.615</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kmyt"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kmzg"> <gml:description>Mustang Island A85A (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kmzg</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.727 -96.191</gml:lowerCorner> <gml:upperCorner>27.727 -96.191</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kmzg"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-knoh1"> <gml:description>Kilo Nalu Observatory, Hawaii</gml:description> <gml:name>urn:ioos:station:wmo:knoh1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>21.288 -157.865</gml:lowerCorner> <gml:upperCorner>21.288 -157.865</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:30:00Z</gml:beginPosition> <gml:endPosition>2012-01-18T15:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:knoh1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-knsw3"> <gml:description>Kenosha, WI</gml:description> <gml:name>urn:ioos:station:wmo:knsw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.589 -87.809</gml:lowerCorner> <gml:upperCorner>42.589 -87.809</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:knsw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kopm"> <gml:description>North Padre Island 975 (Peregrine Oil &amp; Gas)</gml:description> <gml:name>urn:ioos:station:wmo:kopm</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.833 -96.94</gml:lowerCorner> <gml:upperCorner>26.833 -96.94</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-20T16:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kopm"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kp53"> <gml:description>Munising Lake Shore, MI</gml:description> <gml:name>urn:ioos:station:wmo:kp53</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.417 -86.65</gml:lowerCorner> <gml:upperCorner>46.417 -86.65</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:56:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kp53"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kp58"> <gml:description>Port Hope, MI</gml:description> <gml:name>urn:ioos:station:wmo:kp58</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.017 -82.8</gml:lowerCorner> <gml:upperCorner>44.017 -82.8</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kp58"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kp59"> <gml:description>Copper Harbor, MI</gml:description> <gml:name>urn:ioos:station:wmo:kp59</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.467 -87.883</gml:lowerCorner> <gml:upperCorner>47.467 -87.883</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:51:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kp59"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kscf"> <gml:description>South Marsh 268A (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kscf</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.116 -91.871</gml:lowerCorner> <gml:upperCorner>29.116 -91.871</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kscf"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kspr"> <gml:description>Ship Shoal 178 (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kspr</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.599 -91.206</gml:lowerCorner> <gml:upperCorner>28.599 -91.206</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition>2012-05-09T00:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kspr"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kstz"> <gml:description>South Timballer 301B / Popeye (Shell E &amp; P)</gml:description> <gml:name>urn:ioos:station:wmo:kstz</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.16 -90.666</gml:lowerCorner> <gml:upperCorner>28.16 -90.666</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-25T14:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kstz"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ktnf1"> <gml:description>Keaton Beach, FL</gml:description> <gml:name>urn:ioos:station:wmo:ktnf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.817 -83.592</gml:lowerCorner> <gml:upperCorner>29.817 -83.592</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ktnf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvaf"> <gml:description>East Breaks 643 / Boomvang Spar (Anadarko)</gml:description> <gml:name>urn:ioos:station:wmo:kvaf</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.354 -94.625</gml:lowerCorner> <gml:upperCorner>27.354 -94.625</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvaf"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvbs"> <gml:description>Sabine Pass 13B (Nippon Oil Exploration)</gml:description> <gml:name>urn:ioos:station:wmo:kvbs</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.478 -93.638</gml:lowerCorner> <gml:upperCorner>29.478 -93.638</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvbs"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvky"> <gml:description>Main Pass 289C (Apache Corp.)</gml:description> <gml:name>urn:ioos:station:wmo:kvky</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.248 -88.441</gml:lowerCorner> <gml:upperCorner>29.248 -88.441</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-05T19:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvky"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvnp"> <gml:description>Vermillion 26 (Mariner Energy)</gml:description> <gml:name>urn:ioos:station:wmo:kvnp</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.467 -92.368</gml:lowerCorner> <gml:upperCorner>29.467 -92.368</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-09T14:35:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvnp"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvoa"> <gml:description>Visco Knoll 786 / Petronius (Chevron)</gml:description> <gml:name>urn:ioos:station:wmo:kvoa</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.229 -87.781</gml:lowerCorner> <gml:upperCorner>29.229 -87.781</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-05T19:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvoa"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kvqt"> <gml:description>Vermillon 331A (ERT / Helix)</gml:description> <gml:name>urn:ioos:station:wmo:kvqt</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.27 -92.264</gml:lowerCorner> <gml:upperCorner>28.27 -92.264</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-05T19:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kvqt"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kxih"> <gml:description>High Island 179A AWOS (Apache Corp)</gml:description> <gml:name>urn:ioos:station:wmo:kxih</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.18 -94.521</gml:lowerCorner> <gml:upperCorner>29.18 -94.521</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-11-22T16:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kxih"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-kxpy"> <gml:description>Fourchon Heliport (Era Helicopters)</gml:description> <gml:name>urn:ioos:station:wmo:kxpy</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.123 -90.202</gml:lowerCorner> <gml:upperCorner>29.123 -90.202</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-30T18:55:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:kxpy"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lbrf1"> <gml:description>Broad River Lower, FL</gml:description> <gml:name>urn:ioos:station:wmo:lbrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.484 -81.111</gml:lowerCorner> <gml:upperCorner>25.484 -81.111</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lbrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lbsf1"> <gml:description>Little Blackwater, FL</gml:description> <gml:name>urn:ioos:station:wmo:lbsf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.212 -80.433</gml:lowerCorner> <gml:upperCorner>25.212 -80.433</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lbsf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lciy2"> <gml:description>Little Caymans Research Centre, Cayman Islands</gml:description> <gml:name>urn:ioos:station:wmo:lciy2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.699 -80.061</gml:lowerCorner> <gml:upperCorner>19.699 -80.061</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-31T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lciy2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lcna2"> <gml:description>Lincoln Rock, AK</gml:description> <gml:name>urn:ioos:station:wmo:lcna2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>56.057 -132.696</gml:lowerCorner> <gml:upperCorner>56.057 -132.696</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-05T03:00:00Z</gml:beginPosition> <gml:endPosition>2011-12-26T22:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lcna2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ldlc3"> <gml:description>New London Ledge CT - Ledge Light Weather Station</gml:description> <gml:name>urn:ioos:station:wmo:ldlc3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.305 -72.077</gml:lowerCorner> <gml:upperCorner>41.305 -72.077</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ldlc3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-litli"> <gml:description>Littleton Island, Arctic</gml:description> <gml:name>urn:ioos:station:wmo:litli</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>78.363 -72.865</gml:lowerCorner> <gml:upperCorner>78.363 -72.865</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-10-02T15:01:00Z</gml:beginPosition> <gml:endPosition>2010-07-19T16:01:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:litli"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ljpc1"> <gml:description>La Jolla, CA (073)</gml:description> <gml:name>urn:ioos:station:wmo:ljpc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.867 -117.257</gml:lowerCorner> <gml:upperCorner>32.867 -117.257</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:16:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ljpc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lkpl1"> <gml:description>Western Lake Ponchartrain, LA</gml:description> <gml:name>urn:ioos:station:wmo:lkpl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.315 -90.281</gml:lowerCorner> <gml:upperCorner>30.315 -90.281</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-03-11T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lkpl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lkwf1"> <gml:description>Lake Worth, FL</gml:description> <gml:name>urn:ioos:station:wmo:lkwf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.612 -80.033</gml:lowerCorner> <gml:upperCorner>26.612 -80.033</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lkwf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-llbp7"> <gml:description>Lao Lao Bay, Saipan, CNMI</gml:description> <gml:name>urn:ioos:station:wmo:llbp7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>15.157 145.77</gml:lowerCorner> <gml:upperCorner>15.157 145.77</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-09-13T20:30:00Z</gml:beginPosition> <gml:endPosition>2012-05-12T14:18:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:llbp7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lmbv4"> <gml:description>La Mancha Beach, Mexico</gml:description> <gml:name>urn:ioos:station:wmo:lmbv4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.594 -96.379</gml:lowerCorner> <gml:upperCorner>19.594 -96.379</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-02-27T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lmbv4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lmdf1"> <gml:description>Little Madeira, FL</gml:description> <gml:name>urn:ioos:station:wmo:lmdf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.174 -80.632</gml:lowerCorner> <gml:upperCorner>25.174 -80.632</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lmdf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lmfs1"> <gml:description>Lake Murray SC</gml:description> <gml:name>urn:ioos:station:wmo:lmfs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.107 -81.271</gml:lowerCorner> <gml:upperCorner>34.107 -81.271</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-12T03:17:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lmfs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lmrf1"> <gml:description>Lostmans River, FL</gml:description> <gml:name>urn:ioos:station:wmo:lmrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.554 -81.169</gml:lowerCorner> <gml:upperCorner>25.554 -81.169</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lmrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lmss1"> <gml:description>Lake Marion, SC</gml:description> <gml:name>urn:ioos:station:wmo:lmss1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.552 -80.501</gml:lowerCorner> <gml:upperCorner>33.552 -80.501</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-14T21:50:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lmss1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lonf1"> <gml:description>Long Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:lonf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.843 -80.862</gml:lowerCorner> <gml:upperCorner>24.843 -80.862</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-08-18T15:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-14T03:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lonf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lopl1"> <gml:description>Louisiana Offshore Oil Port, LA</gml:description> <gml:name>urn:ioos:station:wmo:lopl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.885 -90.024</gml:lowerCorner> <gml:upperCorner>28.885 -90.024</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-07-31T23:42:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lopl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lprp4"> <gml:description>Media Luna, La Parguera, PR</gml:description> <gml:name>urn:ioos:station:wmo:lprp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.939 -67.052</gml:lowerCorner> <gml:upperCorner>17.939 -67.052</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:10:00Z</gml:beginPosition> <gml:endPosition>2012-04-16T19:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lprp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lrif1"> <gml:description>Lane River, FL </gml:description> <gml:name>urn:ioos:station:wmo:lrif1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.284 -80.894</gml:lowerCorner> <gml:upperCorner>25.284 -80.894</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-01-25T23:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lrif1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lrkf1"> <gml:description>Little Rabbit Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:lrkf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.979 -80.826</gml:lowerCorner> <gml:upperCorner>24.979 -80.826</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lrkf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lscm4"> <gml:description>Lake St Clair, MI</gml:description> <gml:name>urn:ioos:station:wmo:lscm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.465 -82.755</gml:lowerCorner> <gml:upperCorner>42.465 -82.755</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-10T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lscm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-lsnf1"> <gml:description>Long Sound, FL</gml:description> <gml:name>urn:ioos:station:wmo:lsnf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.233 -80.457</gml:lowerCorner> <gml:upperCorner>25.233 -80.457</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:lsnf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ltqm2"> <gml:description>Otter Point Creek, Chesapeake Bay Reserve, MD</gml:description> <gml:name>urn:ioos:station:wmo:ltqm2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.451 -76.275</gml:lowerCorner> <gml:upperCorner>39.451 -76.275</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ltqm2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-luml1"> <gml:description>LUMCON Marine Center, LA</gml:description> <gml:name>urn:ioos:station:wmo:luml1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.253 -90.663</gml:lowerCorner> <gml:upperCorner>29.253 -90.663</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-03-11T23:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-26T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:luml1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-maqt2"> <gml:description>Mission-Aransas Reserve, TX</gml:description> <gml:name>urn:ioos:station:wmo:maqt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.081 -97.203</gml:lowerCorner> <gml:upperCorner>28.081 -97.203</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-16T00:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-02T13:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:maqt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-maxt2"> <gml:description>Mission-Aransas Reserve, TX</gml:description> <gml:name>urn:ioos:station:wmo:maxt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.132 -97.034</gml:lowerCorner> <gml:upperCorner>28.132 -97.034</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:maxt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mbla1"> <gml:description>Middle Bay Light, AL</gml:description> <gml:name>urn:ioos:station:wmo:mbla1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.437 -88.012</gml:lowerCorner> <gml:upperCorner>30.437 -88.012</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mbla1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mcyi3"> <gml:description>Michigan City, IN</gml:description> <gml:name>urn:ioos:station:wmo:mcyi3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.729 -86.913</gml:lowerCorner> <gml:upperCorner>41.729 -86.913</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mcyi3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mdrm1"> <gml:description>Mt Desert Rock, ME</gml:description> <gml:name>urn:ioos:station:wmo:mdrm1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.968 -68.128</gml:lowerCorner> <gml:upperCorner>43.968 -68.128</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-12-15T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mdrm1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-meem4"> <gml:description>Manistee Harbor, MI</gml:description> <gml:name>urn:ioos:station:wmo:meem4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.248 -86.346</gml:lowerCorner> <gml:upperCorner>44.248 -86.346</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-11-14T18:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:meem4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mgzp4"> <gml:description>9759394 - Mayaguez, PR</gml:description> <gml:name>urn:ioos:station:wmo:mgzp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.218 -67.159</gml:lowerCorner> <gml:upperCorner>18.218 -67.159</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-16T13:18:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mgzp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mhpa1"> <gml:description>Meaher Park, AL</gml:description> <gml:name>urn:ioos:station:wmo:mhpa1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.667 -87.936</gml:lowerCorner> <gml:upperCorner>30.667 -87.936</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mhpa1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mism1"> <gml:description>Matinicus Rock, ME</gml:description> <gml:name>urn:ioos:station:wmo:mism1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.783 -68.855</gml:lowerCorner> <gml:upperCorner>43.783 -68.855</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mism1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mkgm4"> <gml:description>Muskegon, MI</gml:description> <gml:name>urn:ioos:station:wmo:mkgm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.228 -86.339</gml:lowerCorner> <gml:upperCorner>43.228 -86.339</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mkgm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mlrf1"> <gml:description>Molasses Reef, FL</gml:description> <gml:name>urn:ioos:station:wmo:mlrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.01 -80.38</gml:lowerCorner> <gml:upperCorner>25.01 -80.38</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mlrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mlsc1"> <gml:description>Moss Landing, South Harbor, CA</gml:description> <gml:name>urn:ioos:station:wmo:mlsc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>36.807 -121.788</gml:lowerCorner> <gml:upperCorner>36.807 -121.788</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-26T16:44:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mlsc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mlww3"> <gml:description>Milwaukee, WI</gml:description> <gml:name>urn:ioos:station:wmo:mlww3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.046 -87.879</gml:lowerCorner> <gml:upperCorner>43.046 -87.879</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mlww3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mrka2"> <gml:description>Middle Rock Light, AK</gml:description> <gml:name>urn:ioos:station:wmo:mrka2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>61.082 -146.662</gml:lowerCorner> <gml:upperCorner>61.082 -146.662</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mrka2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mrsl1"> <gml:description>Marsh Island, LA / CSI03</gml:description> <gml:name>urn:ioos:station:wmo:mrsl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.44 -92.061</gml:lowerCorner> <gml:upperCorner>29.44 -92.061</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mrsl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-mukf1"> <gml:description>Murray Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:mukf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.104 -80.942</gml:lowerCorner> <gml:upperCorner>25.104 -80.942</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:mukf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-nabm4"> <gml:description>Naubinway, MI</gml:description> <gml:name>urn:ioos:station:wmo:nabm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.087 -85.443</gml:lowerCorner> <gml:upperCorner>46.087 -85.443</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:nabm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-naqr1"> <gml:description>T-Wharf Bottom, Narragansett Bay Reserve, RI</gml:description> <gml:name>urn:ioos:station:wmo:naqr1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.579 -71.321</gml:lowerCorner> <gml:upperCorner>41.579 -71.321</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:naqr1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-naxr1"> <gml:description>Narragansett Bay Reserve, RI</gml:description> <gml:name>urn:ioos:station:wmo:naxr1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.639 -71.339</gml:lowerCorner> <gml:upperCorner>41.639 -71.339</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T05:45:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:naxr1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ncht2"> <gml:description>8770777 - Manchester, TX </gml:description> <gml:name>urn:ioos:station:wmo:ncht2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.726 -95.266</gml:lowerCorner> <gml:upperCorner>29.726 -95.266</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-06T20:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ncht2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-nfbf1"> <gml:description>NFB - Northwest Florida Bay, FL</gml:description> <gml:name>urn:ioos:station:wmo:nfbf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.084 -81.096</gml:lowerCorner> <gml:upperCorner>25.084 -81.096</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:nfbf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-nglt2"> <gml:description>8775283 - Port Ingleside, TX</gml:description> <gml:name>urn:ioos:station:wmo:nglt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.822 -97.203</gml:lowerCorner> <gml:upperCorner>27.822 -97.203</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:nglt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-niqs1"> <gml:description>Oyster Landing, North Inlet-Winyah Bay Reserve, SC</gml:description> <gml:name>urn:ioos:station:wmo:niqs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.349 -79.193</gml:lowerCorner> <gml:upperCorner>33.349 -79.193</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:niqs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-niws1"> <gml:description>North Inlet-Winyah Bay Reserve, SC</gml:description> <gml:name>urn:ioos:station:wmo:niws1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.349 -79.193</gml:lowerCorner> <gml:upperCorner>33.349 -79.193</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:niws1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-noqn7"> <gml:description>Research Creek, North Carolina Reserve, NC</gml:description> <gml:name>urn:ioos:station:wmo:noqn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.156 -77.85</gml:lowerCorner> <gml:upperCorner>34.156 -77.85</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:noqn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-noxn7"> <gml:description>North Carolina Reserve, NC</gml:description> <gml:name>urn:ioos:station:wmo:noxn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.156 -77.851</gml:lowerCorner> <gml:upperCorner>34.156 -77.851</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:noxn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-npdw3"> <gml:description>Northport Pier at Death's Door WI</gml:description> <gml:name>urn:ioos:station:wmo:npdw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.29 -86.978</gml:lowerCorner> <gml:upperCorner>45.29 -86.978</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T16:46:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:npdw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-nwpo3"> <gml:description>Newport, OR</gml:description> <gml:name>urn:ioos:station:wmo:nwpo3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.613 -124.067</gml:lowerCorner> <gml:upperCorner>44.613 -124.067</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:nwpo3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ocgn4"> <gml:description>Ocean Grove, NJ</gml:description> <gml:name>urn:ioos:station:wmo:ocgn4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>40.209 -74.004</gml:lowerCorner> <gml:upperCorner>40.209 -74.004</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-08-09T03:10:00Z</gml:beginPosition> <gml:endPosition>2011-05-18T17:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ocgn4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ocpn7"> <gml:description>OCP1 - Ocean Crest Pier, NC</gml:description> <gml:name>urn:ioos:station:wmo:ocpn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.908 -78.148</gml:lowerCorner> <gml:upperCorner>33.908 -78.148</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-19T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T00:32:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ocpn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-oksi2"> <gml:description>Oak ST, Chicago, IL (CPD)</gml:description> <gml:name>urn:ioos:station:wmo:oksi2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.912 -87.624</gml:lowerCorner> <gml:upperCorner>41.912 -87.624</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-08-11T19:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-08T20:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:oksi2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-olcn6"> <gml:description>Olcott Harbor, NY</gml:description> <gml:name>urn:ioos:station:wmo:olcn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.341 -78.719</gml:lowerCorner> <gml:upperCorner>43.341 -78.719</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:olcn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-otnm4"> <gml:description>Ontonagon, MI</gml:description> <gml:name>urn:ioos:station:wmo:otnm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.874 -89.329</gml:lowerCorner> <gml:upperCorner>46.874 -89.329</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-02T06:55:00Z</gml:beginPosition> <gml:endPosition>2011-07-07T12:40:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:otnm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-owqo1"> <gml:description>OL, Old Woman Creek Reserve, OH</gml:description> <gml:name>urn:ioos:station:wmo:owqo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.382 -82.514</gml:lowerCorner> <gml:upperCorner>41.382 -82.514</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-30T12:45:00Z</gml:beginPosition> <gml:endPosition>2011-12-09T14:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:owqo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-owxo1"> <gml:description>Old Woman Creek, OH</gml:description> <gml:name>urn:ioos:station:wmo:owxo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.378 -82.508</gml:lowerCorner> <gml:upperCorner>41.378 -82.508</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:owxo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pact2"> <gml:description>8775792 - Packery Channel, TX</gml:description> <gml:name>urn:ioos:station:wmo:pact2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.633 -97.237</gml:lowerCorner> <gml:upperCorner>27.633 -97.237</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pact2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pbfw1"> <gml:description>Padilla Bay Reserve, WA</gml:description> <gml:name>urn:ioos:station:wmo:pbfw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.464 -122.468</gml:lowerCorner> <gml:upperCorner>48.464 -122.468</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pbfw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pblw1"> <gml:description>Joe Leary Slough, Padilla Bay Reserve, WA</gml:description> <gml:name>urn:ioos:station:wmo:pblw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.518 -122.473</gml:lowerCorner> <gml:upperCorner>48.518 -122.473</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pblw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pbpa2"> <gml:description>Point Bishop, AK</gml:description> <gml:name>urn:ioos:station:wmo:pbpa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.203 -134.148</gml:lowerCorner> <gml:upperCorner>58.203 -134.148</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-20T02:35:00Z</gml:beginPosition> <gml:endPosition>2011-12-25T01:35:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pbpa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pcgt2"> <gml:description>8779748 - South Padre Island CGS, TX </gml:description> <gml:name>urn:ioos:station:wmo:pcgt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.077 -97.177</gml:lowerCorner> <gml:upperCorner>26.077 -97.177</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-06T20:00:00Z</gml:beginPosition> <gml:endPosition>2012-02-02T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pcgt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pclm4"> <gml:description>Portage Canal, MI</gml:description> <gml:name>urn:ioos:station:wmo:pclm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.276 -88.528</gml:lowerCorner> <gml:upperCorner>47.276 -88.528</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pclm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pcnt2"> <gml:description>8773701 - Matagorda Bay; Port O'Connor, TX</gml:description> <gml:name>urn:ioos:station:wmo:pcnt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.452 -96.388</gml:lowerCorner> <gml:upperCorner>28.452 -96.388</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-21T20:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pcnt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pila2"> <gml:description>Pilot Rock, AK</gml:description> <gml:name>urn:ioos:station:wmo:pila2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.742 -149.47</gml:lowerCorner> <gml:upperCorner>59.742 -149.47</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pila2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pilm4"> <gml:description>Passage Island, MI</gml:description> <gml:name>urn:ioos:station:wmo:pilm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.223 -88.367</gml:lowerCorner> <gml:upperCorner>48.223 -88.367</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pilm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pkyf1"> <gml:description>Peterson Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:pkyf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.917 -80.746</gml:lowerCorner> <gml:upperCorner>24.917 -80.746</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pkyf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-plsf1"> <gml:description>Pulaski Shoal Light, FL</gml:description> <gml:name>urn:ioos:station:wmo:plsf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.693 -82.773</gml:lowerCorner> <gml:upperCorner>24.693 -82.773</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition>2011-08-30T18:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:plsf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-plsp4"> <gml:description>9758053 - Penuelas, PR</gml:description> <gml:name>urn:ioos:station:wmo:plsp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.973 -66.762</gml:lowerCorner> <gml:upperCorner>17.973 -66.762</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:12:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:plsp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pngw3"> <gml:description>Port Wing, WI</gml:description> <gml:name>urn:ioos:station:wmo:pngw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.792 -91.386</gml:lowerCorner> <gml:upperCorner>46.792 -91.386</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pngw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-port2"> <gml:description>8770475 - Port Arthur, TX</gml:description> <gml:name>urn:ioos:station:wmo:port2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.867 -93.93</gml:lowerCorner> <gml:upperCorner>29.867 -93.93</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T22:06:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:port2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pota2"> <gml:description>Potato Point, AK</gml:description> <gml:name>urn:ioos:station:wmo:pota2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>61.06 -146.7</gml:lowerCorner> <gml:upperCorner>61.06 -146.7</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T15:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pota2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ppta1"> <gml:description>Perdido Key, AL</gml:description> <gml:name>urn:ioos:station:wmo:ppta1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.279 -87.556</gml:lowerCorner> <gml:upperCorner>30.279 -87.556</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-11-23T02:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ppta1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-prim4"> <gml:description>Presque Isle Light, MI</gml:description> <gml:name>urn:ioos:station:wmo:prim4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.356 -83.492</gml:lowerCorner> <gml:upperCorner>45.356 -83.492</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-25T18:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:prim4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-prta2"> <gml:description>Point Retreat, AK</gml:description> <gml:name>urn:ioos:station:wmo:prta2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.412 -134.953</gml:lowerCorner> <gml:upperCorner>58.412 -134.953</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:prta2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pscm4"> <gml:description>Port Sanilac, MI</gml:description> <gml:name>urn:ioos:station:wmo:pscm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.423 -82.536</gml:lowerCorner> <gml:upperCorner>43.423 -82.536</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:22:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pscm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ptac1"> <gml:description>Point Arena, CA</gml:description> <gml:name>urn:ioos:station:wmo:ptac1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.955 -123.74</gml:lowerCorner> <gml:upperCorner>38.955 -123.74</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ptac1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ptat2"> <gml:description>Port Aransas, TX</gml:description> <gml:name>urn:ioos:station:wmo:ptat2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.828 -97.05</gml:lowerCorner> <gml:upperCorner>27.828 -97.05</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ptat2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ptgc1"> <gml:description>Point Arguello, CA</gml:description> <gml:name>urn:ioos:station:wmo:ptgc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.577 -120.648</gml:lowerCorner> <gml:upperCorner>34.577 -120.648</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ptgc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ptrf1"> <gml:description>PAS -Port Richey, FL</gml:description> <gml:name>urn:ioos:station:wmo:ptrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.285 -82.733</gml:lowerCorner> <gml:upperCorner>28.285 -82.733</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition>2010-08-20T19:54:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ptrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pvgf1"> <gml:description>Port Everglades Channel, FL</gml:description> <gml:name>urn:ioos:station:wmo:pvgf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.092 -80.109</gml:lowerCorner> <gml:upperCorner>26.092 -80.109</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-25T23:06:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pvgf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-pwaw3"> <gml:description>Port Washington, WI</gml:description> <gml:name>urn:ioos:station:wmo:pwaw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.388 -87.868</gml:lowerCorner> <gml:upperCorner>43.388 -87.868</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:20:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:pwaw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rkqf1"> <gml:description>Lower Henderson, Rockery Bay Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:rkqf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.026 -81.733</gml:lowerCorner> <gml:upperCorner>26.026 -81.733</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rkqf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rkxf1"> <gml:description>Rookery Bay Reserve, FL</gml:description> <gml:name>urn:ioos:station:wmo:rkxf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.05 -81.701</gml:lowerCorner> <gml:upperCorner>26.05 -81.701</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rkxf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rlot2"> <gml:description>8770971 - Rollover Pass, TX</gml:description> <gml:name>urn:ioos:station:wmo:rlot2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.515 -94.513</gml:lowerCorner> <gml:upperCorner>29.515 -94.513</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rlot2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-roam4"> <gml:description>Rock of Ages, MI</gml:description> <gml:name>urn:ioos:station:wmo:roam4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.867 -89.313</gml:lowerCorner> <gml:upperCorner>47.867 -89.313</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-08T02:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:roam4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rprn6"> <gml:description>Rochester, NY</gml:description> <gml:name>urn:ioos:station:wmo:rprn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.258 -77.592</gml:lowerCorner> <gml:upperCorner>43.258 -77.592</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rprn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rsjt2"> <gml:description>8777812 - Rincon del San Jose; Potrero Lopeno SW, TX</gml:description> <gml:name>urn:ioos:station:wmo:rsjt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.801 -97.483</gml:lowerCorner> <gml:upperCorner>26.801 -97.483</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rsjt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-rtat2"> <gml:description>8775237 - Port Aransas, TX</gml:description> <gml:name>urn:ioos:station:wmo:rtat2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.84 -97.073</gml:lowerCorner> <gml:upperCorner>27.84 -97.073</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:rtat2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sacv4"> <gml:description>Sacrifice Island, Mexico</gml:description> <gml:name>urn:ioos:station:wmo:sacv4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.174 -96.093</gml:lowerCorner> <gml:upperCorner>19.174 -96.093</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-16T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sacv4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sanf1"> <gml:description>Sand Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:sanf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.46 -81.88</gml:lowerCorner> <gml:upperCorner>24.46 -81.88</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sanf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-saqg1"> <gml:description>Lower Duplin, Sapelo Island Reserve, GA</gml:description> <gml:name>urn:ioos:station:wmo:saqg1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.418 -81.296</gml:lowerCorner> <gml:upperCorner>31.418 -81.296</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:saqg1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sauf1"> <gml:description>St. Augustine, FL</gml:description> <gml:name>urn:ioos:station:wmo:sauf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.857 -81.265</gml:lowerCorner> <gml:upperCorner>29.857 -81.265</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-02-15T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sauf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-saxg1"> <gml:description>Sapelo Island Reserve, GA</gml:description> <gml:name>urn:ioos:station:wmo:saxg1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.418 -81.295</gml:lowerCorner> <gml:upperCorner>31.418 -81.295</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:saxg1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sbio1"> <gml:description>South Bass Island, OH</gml:description> <gml:name>urn:ioos:station:wmo:sbio1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.628 -82.842</gml:lowerCorner> <gml:upperCorner>41.628 -82.842</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sbio1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sblm4"> <gml:description>Saginaw Bay Light #1, MI</gml:description> <gml:name>urn:ioos:station:wmo:sblm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.806 -83.719</gml:lowerCorner> <gml:upperCorner>43.806 -83.719</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sblm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-scld1"> <gml:description>Scotton Landing, Delaware Reserve, DE</gml:description> <gml:name>urn:ioos:station:wmo:scld1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>39.085 -75.461</gml:lowerCorner> <gml:upperCorner>39.085 -75.461</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:45:00Z</gml:beginPosition> <gml:endPosition>2010-07-19T16:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:scld1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-scqc1"> <gml:description>China Camp, San Francisco Bay Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:scqc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.001 -122.46</gml:lowerCorner> <gml:upperCorner>38.001 -122.46</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T13:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:scqc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sdia2"> <gml:description>South Douglas, AK</gml:description> <gml:name>urn:ioos:station:wmo:sdia2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.277 -134.389</gml:lowerCorner> <gml:upperCorner>58.277 -134.389</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:22:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sdia2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sdrt2"> <gml:description>8773037 - Seadrift, TX</gml:description> <gml:name>urn:ioos:station:wmo:sdrt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.407 -96.712</gml:lowerCorner> <gml:upperCorner>28.407 -96.712</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sdrt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-seqa2"> <gml:description>Katchemak Bay near Seldovia, AK</gml:description> <gml:name>urn:ioos:station:wmo:seqa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>59.441 -151.719</gml:lowerCorner> <gml:upperCorner>59.441 -151.719</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-16T00:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-08T19:15:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:seqa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sfxc1"> <gml:description>San Francisco Bay Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:sfxc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.223 -122.026</gml:lowerCorner> <gml:upperCorner>38.223 -122.026</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sfxc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sgnw3"> <gml:description>Sheboygan, WI</gml:description> <gml:name>urn:ioos:station:wmo:sgnw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.75 -87.692</gml:lowerCorner> <gml:upperCorner>43.75 -87.692</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sgnw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sgof1"> <gml:description>Tyndall AFB Tower C (N4), FL</gml:description> <gml:name>urn:ioos:station:wmo:sgof1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.407 -84.863</gml:lowerCorner> <gml:upperCorner>29.407 -84.863</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sgof1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-shpf1"> <gml:description>SHP - Shell Point, FL</gml:description> <gml:name>urn:ioos:station:wmo:shpf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.06 -84.291</gml:lowerCorner> <gml:upperCorner>30.06 -84.291</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:shpf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sisa2"> <gml:description>Sisters Island, AK</gml:description> <gml:name>urn:ioos:station:wmo:sisa2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>58.171 -135.256</gml:lowerCorner> <gml:upperCorner>58.171 -135.256</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T23:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sisa2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sisw1"> <gml:description>Smith Island, WA</gml:description> <gml:name>urn:ioos:station:wmo:sisw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.318 -122.843</gml:lowerCorner> <gml:upperCorner>48.318 -122.843</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sisw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sjom4"> <gml:description>St. Joseph, MI</gml:description> <gml:name>urn:ioos:station:wmo:sjom4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.099 -86.494</gml:lowerCorner> <gml:upperCorner>42.099 -86.494</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-01T00:50:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sjom4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-skmg1"> <gml:description>U.S. Navy Tower M2R6 GA</gml:description> <gml:name>urn:ioos:station:wmo:skmg1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.534 -80.236</gml:lowerCorner> <gml:upperCorner>31.534 -80.236</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:36:00Z</gml:beginPosition> <gml:endPosition>2009-10-01T12:38:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:skmg1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-slvm5"> <gml:description>Silver Bay, MN</gml:description> <gml:name>urn:ioos:station:wmo:slvm5</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.269 -91.252</gml:lowerCorner> <gml:upperCorner>47.269 -91.252</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-01T22:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:slvm5"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-smbs1"> <gml:description>Springmaid pier, SC</gml:description> <gml:name>urn:ioos:station:wmo:smbs1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.655 -78.918</gml:lowerCorner> <gml:upperCorner>33.655 -78.918</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:49:00Z</gml:beginPosition> <gml:endPosition>2010-11-29T20:49:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:smbs1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-smkf1"> <gml:description>Sombrero Key, FL</gml:description> <gml:name>urn:ioos:station:wmo:smkf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>24.627 -81.11</gml:lowerCorner> <gml:upperCorner>24.627 -81.11</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-01-26T05:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:smkf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-soqo3"> <gml:description>Valino Island, South Slough Reserve, OR</gml:description> <gml:name>urn:ioos:station:wmo:soqo3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.317 -124.322</gml:lowerCorner> <gml:upperCorner>43.317 -124.322</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:soqo3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-spag1"> <gml:description>U.S. Navy Tower R2 GA</gml:description> <gml:name>urn:ioos:station:wmo:spag1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>31.375 -80.567</gml:lowerCorner> <gml:upperCorner>31.375 -80.567</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-28T15:33:00Z</gml:beginPosition> <gml:endPosition>2009-10-01T12:36:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:spag1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-spgf1"> <gml:description>Settlement Point, GBI</gml:description> <gml:name>urn:ioos:station:wmo:spgf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>26.704 -78.994</gml:lowerCorner> <gml:upperCorner>26.704 -78.994</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-11-14T09:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:spgf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-spll1"> <gml:description>South Timbalier Block 52, LA / CSI06</gml:description> <gml:name>urn:ioos:station:wmo:spll1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.867 -90.483</gml:lowerCorner> <gml:upperCorner>28.867 -90.483</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:spll1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sptm4"> <gml:description>Sturgeon Point Light, MI</gml:description> <gml:name>urn:ioos:station:wmo:sptm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.713 -83.273</gml:lowerCorner> <gml:upperCorner>44.713 -83.273</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-25T18:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sptm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-srbv3"> <gml:description>Salt River Bay, St. Croix, U.S. Virgin Islands</gml:description> <gml:name>urn:ioos:station:wmo:srbv3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>17.784 -64.762</gml:lowerCorner> <gml:upperCorner>17.784 -64.762</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-22T12:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:srbv3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-srst2"> <gml:description>Sabine Pass, TX</gml:description> <gml:name>urn:ioos:station:wmo:srst2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.67 -94.05</gml:lowerCorner> <gml:upperCorner>29.67 -94.05</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-02-04T18:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:srst2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ssbn7"> <gml:description>Sunset Beach Nearshore Waves</gml:description> <gml:name>urn:ioos:station:wmo:ssbn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.842 -78.476</gml:lowerCorner> <gml:upperCorner>33.842 -78.476</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-04T14:59:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ssbn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/waves"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-stdm4"> <gml:description>Stannard Rock, MI</gml:description> <gml:name>urn:ioos:station:wmo:stdm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.183 -87.225</gml:lowerCorner> <gml:upperCorner>47.183 -87.225</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-27T22:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:stdm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-supn6"> <gml:description>Superior Shoals, NY</gml:description> <gml:name>urn:ioos:station:wmo:supn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.467 -75.8</gml:lowerCorner> <gml:upperCorner>44.467 -75.8</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T18:00:00Z</gml:beginPosition> <gml:endPosition>2009-11-16T14:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:supn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-svnm4"> <gml:description>South Haven, MI</gml:description> <gml:name>urn:ioos:station:wmo:svnm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.401 -86.289</gml:lowerCorner> <gml:upperCorner>42.401 -86.289</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:svnm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-sxhw3"> <gml:description>Saxon Harbor, WI</gml:description> <gml:name>urn:ioos:station:wmo:sxhw3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.563 -90.44</gml:lowerCorner> <gml:upperCorner>46.563 -90.44</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:sxhw3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-syww3"> <gml:description>Yacht Works Sister Bay WI</gml:description> <gml:name>urn:ioos:station:wmo:syww3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>45.202 -87.121</gml:lowerCorner> <gml:upperCorner>45.202 -87.121</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T17:07:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:syww3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-taml1"> <gml:description>Tambour Bay, LA</gml:description> <gml:name>urn:ioos:station:wmo:taml1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.188 -90.665</gml:lowerCorner> <gml:upperCorner>29.188 -90.665</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-03-23T18:00:00Z</gml:beginPosition> <gml:endPosition>2011-10-03T15:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:taml1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-taqt2"> <gml:description>8775296 - Texas State Aquarium, TX</gml:description> <gml:name>urn:ioos:station:wmo:taqt2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.812 -97.39</gml:lowerCorner> <gml:upperCorner>27.812 -97.39</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2011-10-06T20:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:taqt2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tarf1"> <gml:description>TAS - Tarpon Springs, FL</gml:description> <gml:name>urn:ioos:station:wmo:tarf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.156 -82.758</gml:lowerCorner> <gml:upperCorner>28.156 -82.758</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tarf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tawm4"> <gml:description>Tawas City, MI</gml:description> <gml:name>urn:ioos:station:wmo:tawm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>44.256 -83.443</gml:lowerCorner> <gml:upperCorner>44.256 -83.443</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-25T18:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tawm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tcvf1"> <gml:description>Trout Cove, FL</gml:description> <gml:name>urn:ioos:station:wmo:tcvf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.209 -80.533</gml:lowerCorner> <gml:upperCorner>25.209 -80.533</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tcvf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-thlo1"> <gml:description>Toledo Light No. 2 OH</gml:description> <gml:name>urn:ioos:station:wmo:thlo1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.826 -83.194</gml:lowerCorner> <gml:upperCorner>41.826 -83.194</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-01T00:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:thlo1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tibc1"> <gml:description>Tiburon Pier, San Francisco Bay, CA</gml:description> <gml:name>urn:ioos:station:wmo:tibc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.891 -122.447</gml:lowerCorner> <gml:upperCorner>37.891 -122.447</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:12:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tibc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tiqc1"> <gml:description>Oneonta Slough, Tijuana River Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:tiqc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.568 -117.131</gml:lowerCorner> <gml:upperCorner>32.568 -117.131</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-15T00:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tiqc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tixc1"> <gml:description>Tijuana River Reserve, CA</gml:description> <gml:name>urn:ioos:station:wmo:tixc1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>32.574 -117.121</gml:lowerCorner> <gml:upperCorner>32.574 -117.121</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tixc1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tkea2"> <gml:description>Tenakee Springs, AK</gml:description> <gml:name>urn:ioos:station:wmo:tkea2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>57.779 -135.219</gml:lowerCorner> <gml:upperCorner>57.779 -135.219</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-17T15:20:00Z</gml:beginPosition> <gml:endPosition>2012-04-21T22:30:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tkea2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tpef1"> <gml:description>Tarpon Bay East, FL</gml:description> <gml:name>urn:ioos:station:wmo:tpef1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.408 -80.964</gml:lowerCorner> <gml:upperCorner>25.408 -80.964</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tpef1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-tplm2"> <gml:description>Thomas Point, MD</gml:description> <gml:name>urn:ioos:station:wmo:tplm2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>38.898 -76.437</gml:lowerCorner> <gml:upperCorner>38.898 -76.437</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:tplm2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-trbl1"> <gml:description>Terrebonne Bay, LA</gml:description> <gml:name>urn:ioos:station:wmo:trbl1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>29.167 -90.583</gml:lowerCorner> <gml:upperCorner>29.167 -90.583</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-08-26T21:00:00Z</gml:beginPosition> <gml:endPosition>2012-04-26T21:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:trbl1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-trrf1"> <gml:description>Taylor River, FL</gml:description> <gml:name>urn:ioos:station:wmo:trrf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.223 -80.653</gml:lowerCorner> <gml:upperCorner>25.223 -80.653</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:trrf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ttiw1"> <gml:description>Tatoosh Island, WA</gml:description> <gml:name>urn:ioos:station:wmo:ttiw1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>48.392 -124.735</gml:lowerCorner> <gml:upperCorner>48.392 -124.735</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-22T03:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ttiw1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-vcat2"> <gml:description>8773259 - Port Lavaca, TX </gml:description> <gml:name>urn:ioos:station:wmo:vcat2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.64 -96.595</gml:lowerCorner> <gml:upperCorner>28.64 -96.595</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-04-26T15:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:vcat2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-venf1"> <gml:description>Venice, FL</gml:description> <gml:name>urn:ioos:station:wmo:venf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>27.07 -82.45</gml:lowerCorner> <gml:upperCorner>27.07 -82.45</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-12T09:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:venf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-verv4"> <gml:description>Veracurz Harbor, Mexico</gml:description> <gml:name>urn:ioos:station:wmo:verv4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>19.202 -96.113</gml:lowerCorner> <gml:upperCorner>19.202 -96.113</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-16T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:verv4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-vqsp4"> <gml:description>9752619 - Isabel Segunda, Vieques, PR</gml:description> <gml:name>urn:ioos:station:wmo:vqsp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.153 -65.444</gml:lowerCorner> <gml:upperCorner>18.153 -65.444</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:36:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:vqsp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-waqm3"> <gml:description>Menauhant, Waquoit Bay Reserve, MA</gml:description> <gml:name>urn:ioos:station:wmo:waqm3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.553 -70.549</gml:lowerCorner> <gml:upperCorner>41.553 -70.549</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-04T08:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:waqm3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wats1"> <gml:description>Lake Wateree, SC</gml:description> <gml:name>urn:ioos:station:wmo:wats1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>34.335 -80.702</gml:lowerCorner> <gml:upperCorner>34.335 -80.702</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:40:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wats1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-waxm3"> <gml:description>Waquoit Bay Reserve, MA</gml:description> <gml:name>urn:ioos:station:wmo:waxm3</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>41.582 -70.525</gml:lowerCorner> <gml:upperCorner>41.582 -70.525</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-09-06T00:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:waxm3"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wdel1"> <gml:description>Shell West Delta 143</gml:description> <gml:name>urn:ioos:station:wmo:wdel1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>28.662 -89.551</gml:lowerCorner> <gml:upperCorner>28.662 -89.551</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-11-25T19:30:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wdel1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-weqm1"> <gml:description>Skinner Mill, Wells Reserve, ME</gml:description> <gml:name>urn:ioos:station:wmo:weqm1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.347 -70.554</gml:lowerCorner> <gml:upperCorner>43.347 -70.554</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:weqm1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wexm1"> <gml:description>Wells Reserve, ME</gml:description> <gml:name>urn:ioos:station:wmo:wexm1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.338 -70.55</gml:lowerCorner> <gml:upperCorner>43.338 -70.55</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wexm1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wfpm4"> <gml:description>Whitefish Point, MI</gml:description> <gml:name>urn:ioos:station:wmo:wfpm4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>46.762 -84.966</gml:lowerCorner> <gml:upperCorner>46.762 -84.966</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-03-25T18:52:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wfpm4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-whri2"> <gml:description>Waukegan Harbor, IL</gml:description> <gml:name>urn:ioos:station:wmo:whri2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>42.361 -87.813</gml:lowerCorner> <gml:upperCorner>42.361 -87.813</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:09:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:whri2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wiwf1"> <gml:description>Willy Willy, FL</gml:description> <gml:name>urn:ioos:station:wmo:wiwf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.619 -81.044</gml:lowerCorner> <gml:upperCorner>25.619 -81.044</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-22T17:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wiwf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wkqa1"> <gml:description>Fish River, Weeks Bay Reserve, AL</gml:description> <gml:name>urn:ioos:station:wmo:wkqa1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.416 -87.823</gml:lowerCorner> <gml:upperCorner>30.416 -87.823</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wkqa1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wkxa1"> <gml:description>Weeks Bay Reserve, AL</gml:description> <gml:name>urn:ioos:station:wmo:wkxa1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>30.421 -87.829</gml:lowerCorner> <gml:upperCorner>30.421 -87.829</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-06-17T23:15:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wkxa1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wplf1"> <gml:description>Watson Place, FL</gml:description> <gml:name>urn:ioos:station:wmo:wplf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.708 -81.248</gml:lowerCorner> <gml:upperCorner>25.708 -81.248</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T16:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T13:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wplf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wpow1"> <gml:description>West Point, WA</gml:description> <gml:name>urn:ioos:station:wmo:wpow1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>47.662 -122.436</gml:lowerCorner> <gml:upperCorner>47.662 -122.436</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2008-10-07T16:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wpow1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wrbf1"> <gml:description>Whipray Basin, FL</gml:description> <gml:name>urn:ioos:station:wmo:wrbf1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.077 -80.728</gml:lowerCorner> <gml:upperCorner>25.077 -80.728</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-07-01T21:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wrbf1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-wwef1"> <gml:description>White Water -West, FL</gml:description> <gml:name>urn:ioos:station:wmo:wwef1</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>25.23 -80.939</gml:lowerCorner> <gml:upperCorner>25.23 -80.939</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2012-01-25T23:00:00Z</gml:beginPosition> <gml:endPosition>2012-05-15T11:00:00Z</gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:wwef1"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-yabp4"> <gml:description>9754228 - Yabucoa Harbor, PR</gml:description> <gml:name>urn:ioos:station:wmo:yabp4</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>18.055 -65.833</gml:lowerCorner> <gml:upperCorner>18.055 -65.833</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T15:12:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:yabp4"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-ygnn6"> <gml:description>Niagara Coast Guard Station, NY</gml:description> <gml:name>urn:ioos:station:wmo:ygnn6</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>43.261 -79.064</gml:lowerCorner> <gml:upperCorner>43.261 -79.064</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T16:10:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:ygnn6"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-yrsv2"> <gml:description>Chesapeake Bay,VA</gml:description> <gml:name>urn:ioos:station:wmo:yrsv2</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>37.414 -76.713</gml:lowerCorner> <gml:upperCorner>37.414 -76.713</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2009-05-14T14:45:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:yrsv2"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_temperature"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/air_pressure_at_sea_level"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/winds"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> <ObservationOffering gml:id="station-zbqn7"> <gml:description>Zeke's Basin, North Carolina</gml:description> <gml:name>urn:ioos:station:wmo:zbqn7</gml:name> <gml:srsName>urn:ogc:def:crs:epsg::4326</gml:srsName> <gml:boundedBy> <gml:Envelope srsName="urn:ogc:def:crs:epsg::4326"> <gml:lowerCorner>33.955 -77.935</gml:lowerCorner> <gml:upperCorner>33.955 -77.935</gml:upperCorner> </gml:Envelope> </gml:boundedBy> <time> <gml:TimePeriod> <gml:beginPosition>2010-09-28T06:00:00Z</gml:beginPosition> <gml:endPosition indeterminatePosition="now"></gml:endPosition> </gml:TimePeriod> </time> <procedure xlink:href="urn:ioos:station:wmo:zbqn7"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_electrical_conductivity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_salinity"/> <observedProperty xlink:href="http://mmisw.org/ont/cf/parameter/sea_water_temperature"/> <featureOfInterest xlink:href="urn:cgi:Feature:CGI:EarthOcean"/> <responseFormat>text/xml;schema="ioos/0.6.1"</responseFormat> <responseFormat>application/ioos+xml;version=0.6.1</responseFormat> <responseFormat>text/csv</responseFormat> <responseFormat>text/tab-separated-values</responseFormat> <responseFormat>application/vnd.google-earth.kml+xml</responseFormat> <resultModel>om:Observation</resultModel> <responseMode>inline</responseMode> </ObservationOffering> </ObservationOfferingList> </Contents> </Capabilities> ���������������������������OWSLib-0.16.0/tests/resources/sos_ngmp.xml����������������������������������������������������������0000664�0000000�0000000�00000136372�13217064120�0020430�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:Capabilities xmlns:sos="http://www.opengis.net/sos/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:swes="http://www.opengis.net/swes/2.0" xmlns:gml="http://www.opengis.net/gml/3.2" version="2.0.0" xsi:schemaLocation="http://www.opengis.net/sos/2.0 http://schemas.opengis.net/sos/2.0/sos.xsd"> <ows:ServiceIdentification> <ows:Title>GNS Science New Zealand, NGMP SOS timeseries</ows:Title> <ows:Abstract>GNS Hydrogeology Section, serving NGMP groundwater level through customised 52N SOS, data quality cannot be represented yet, there is no liability regarding this service, for more information go to http://ggw.gns.cri.nz/ggwdata/ (SVN: 0 @ 2013-01-12 19:55:25)</ows:Abstract> <ows:Keywords> <ows:Keyword>water level</ows:Keyword> <ows:Keyword>groundwater</ows:Keyword> <ows:Keyword>hydrogeology</ows:Keyword> <ows:Keyword>ngmp</ows:Keyword> </ows:Keywords> <ows:ServiceType codeSpace="http://opengeospatial.net">OGC:SOS</ows:ServiceType> <ows:ServiceTypeVersion>2.0.0</ows:ServiceTypeVersion> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/samplingPoint</ows:Profile> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/soap</ows:Profile> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/req/SWEArrayObservation</ows:Profile> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>SERVICE IS IN TEST MODE, NOT RELIABLE, DATA QUALITY NOT YET VISIBLE</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>GNS Science</ows:ProviderName> <ows:ProviderSite xlink:href="http://ggw.gns.cri.nz/ggwdata/"/> <ows:ServiceContact> <ows:IndividualName>Alex Kmoch</ows:IndividualName> <ows:PositionName>STU</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>+647374 8211</ows:Voice> </ows:Phone> <ows:Address> <ows:DeliveryPoint>114 Karetoto Road</ows:DeliveryPoint> <ows:City>Wairakei</ows:City> <ows:AdministrativeArea>Waikato</ows:AdministrativeArea> <ows:PostalCode>3377</ows:PostalCode> <ows:Country>New Zealand</ows:Country> <ows:ElectronicMailAddress>a.kmoch@gns.cri.nz</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> <ows:Role/> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?"/> <ows:Post xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="updateSequence"> <ows:AnyValue/> </ows:Parameter> <ows:Parameter name="AcceptVersions"> <ows:AllowedValues> <ows:Value>1.0.0</ows:Value> <ows:Value>2.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="Sections"> <ows:AllowedValues> <ows:Value>ServiceIdentification</ows:Value> <ows:Value>ServiceProvider</ows:Value> <ows:Value>OperationsMetadata</ows:Value> <ows:Value>FilterCapabilities</ows:Value> <ows:Value>Contents</ows:Value> <ows:Value>All</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="AcceptFormats"> <ows:AllowedValues> <ows:Value>text/xml</ows:Value> <ows:Value>application/zip</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeSensor"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?"/> <ows:Post xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/acidity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/chloride_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/iron_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/manganese_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/temperature_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/tritium_sampling</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedureDescriptionFormat"> <ows:AllowedValues> <ows:Value>http://www.opengis.net/sensorML/1.0.1</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetObservation"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?"/> <ows:Post xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="srsName"> <ows:NoValues/> </ows:Parameter> <ows:Parameter name="offering"> <ows:AllowedValues> <ows:Value>NGMP_HYDRAULIC_CONDUCTIVITY</ows:Value> <ows:Value>NGMP_TRITIUM_ALL_FORMS</ows:Value> <ows:Value>NGMP_DISSOLVED_MANGANESE</ows:Value> <ows:Value>NGMP_TEMPERATURE</ows:Value> <ows:Value>NGMP_DISSOLVED_IRON</ows:Value> <ows:Value>NGMP_CONDUCTIVITY</ows:Value> <ows:Value>NGMP_ACIDITY</ows:Value> <ows:Value>NGMP_GROUNDWATER_LEVEL</ows:Value> <ows:Value>NGMP_DISSOLVED_NITRATE_NO3_AS_N</ows:Value> <ows:Value>NGMP_DISSOLVED_CHLORIDE</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="temporalFilter"> <ows:AllowedValues> <ows:Range> <ows:MinimumValue>0012-01-23T09:05:56.000+12:00</ows:MinimumValue> <ows:MaximumValue>2012-12-19T13:30:00.000+12:00</ows:MaximumValue> </ows:Range> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/acidity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/chloride_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/iron_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/manganese_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/temperature_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/tritium_sampling</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="observedProperty"> <ows:AllowedValues> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/hydraulic_conductivity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/tritium_all_forms</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_manganese</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/temperature</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_iron</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/conductivity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/acidity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/groundwaterlevel</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_nitrate_no3_as_n</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_chloride</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="featureOfInterest"> <ows:AllowedValues> <ows:Value>10</ows:Value> <ows:Value>11</ows:Value> <ows:Value>12</ows:Value> <ows:Value>13</ows:Value> <ows:Value>139</ows:Value> <ows:Value>14</ows:Value> <ows:Value>140</ows:Value> <ows:Value>15</ows:Value> <ows:Value>16</ows:Value> <ows:Value>17</ows:Value> <ows:Value>18</ows:Value> <ows:Value>19</ows:Value> <ows:Value>1993</ows:Value> <ows:Value>20</ows:Value> <ows:Value>2013</ows:Value> <ows:Value>2015</ows:Value> <ows:Value>2016</ows:Value> <ows:Value>2039</ows:Value> <ows:Value>2069</ows:Value> <ows:Value>2080</ows:Value> <ows:Value>21</ows:Value> <ows:Value>2103</ows:Value> <ows:Value>22</ows:Value> <ows:Value>23</ows:Value> <ows:Value>24</ows:Value> <ows:Value>2466</ows:Value> <ows:Value>2470</ows:Value> <ows:Value>2479</ows:Value> <ows:Value>25</ows:Value> <ows:Value>26</ows:Value> <ows:Value>27</ows:Value> <ows:Value>28</ows:Value> <ows:Value>29</ows:Value> <ows:Value>3</ows:Value> <ows:Value>30</ows:Value> <ows:Value>31</ows:Value> <ows:Value>32</ows:Value> <ows:Value>3200</ows:Value> <ows:Value>3258</ows:Value> <ows:Value>3280</ows:Value> <ows:Value>3281</ows:Value> <ows:Value>33</ows:Value> <ows:Value>3325</ows:Value> <ows:Value>3327</ows:Value> <ows:Value>3336</ows:Value> <ows:Value>338</ows:Value> <ows:Value>339</ows:Value> <ows:Value>34</ows:Value> <ows:Value>340</ows:Value> <ows:Value>346</ows:Value> <ows:Value>347</ows:Value> <ows:Value>348</ows:Value> <ows:Value>349</ows:Value> <ows:Value>35</ows:Value> <ows:Value>350</ows:Value> <ows:Value>351</ows:Value> <ows:Value>352</ows:Value> <ows:Value>353</ows:Value> <ows:Value>354</ows:Value> <ows:Value>355</ows:Value> <ows:Value>356</ows:Value> <ows:Value>358</ows:Value> <ows:Value>359</ows:Value> <ows:Value>36</ows:Value> <ows:Value>360</ows:Value> <ows:Value>361</ows:Value> <ows:Value>362</ows:Value> <ows:Value>363</ows:Value> <ows:Value>364</ows:Value> <ows:Value>37</ows:Value> <ows:Value>3705</ows:Value> <ows:Value>3706</ows:Value> <ows:Value>3707</ows:Value> <ows:Value>3708</ows:Value> <ows:Value>3709</ows:Value> <ows:Value>3710</ows:Value> <ows:Value>3711</ows:Value> <ows:Value>3712</ows:Value> <ows:Value>378</ows:Value> <ows:Value>379</ows:Value> <ows:Value>38</ows:Value> <ows:Value>380</ows:Value> <ows:Value>381</ows:Value> <ows:Value>382</ows:Value> <ows:Value>383</ows:Value> <ows:Value>384</ows:Value> <ows:Value>386</ows:Value> <ows:Value>387</ows:Value> <ows:Value>388</ows:Value> <ows:Value>389</ows:Value> <ows:Value>39</ows:Value> <ows:Value>390</ows:Value> <ows:Value>391</ows:Value> <ows:Value>392</ows:Value> <ows:Value>393</ows:Value> <ows:Value>394</ows:Value> <ows:Value>395</ows:Value> <ows:Value>4</ows:Value> <ows:Value>40</ows:Value> <ows:Value>401</ows:Value> <ows:Value>402</ows:Value> <ows:Value>403</ows:Value> <ows:Value>404</ows:Value> <ows:Value>405</ows:Value> <ows:Value>406</ows:Value> <ows:Value>407</ows:Value> <ows:Value>408</ows:Value> <ows:Value>409</ows:Value> <ows:Value>41</ows:Value> <ows:Value>410</ows:Value> <ows:Value>411</ows:Value> <ows:Value>412</ows:Value> <ows:Value>413</ows:Value> <ows:Value>414</ows:Value> <ows:Value>415</ows:Value> <ows:Value>416</ows:Value> <ows:Value>417</ows:Value> <ows:Value>418</ows:Value> <ows:Value>419</ows:Value> <ows:Value>42</ows:Value> <ows:Value>420</ows:Value> <ows:Value>421</ows:Value> <ows:Value>422</ows:Value> <ows:Value>423</ows:Value> <ows:Value>43</ows:Value> <ows:Value>437</ows:Value> <ows:Value>44</ows:Value> <ows:Value>443</ows:Value> <ows:Value>444</ows:Value> <ows:Value>445</ows:Value> <ows:Value>446</ows:Value> <ows:Value>447</ows:Value> <ows:Value>448</ows:Value> <ows:Value>449</ows:Value> <ows:Value>45</ows:Value> <ows:Value>451</ows:Value> <ows:Value>452</ows:Value> <ows:Value>453</ows:Value> <ows:Value>454</ows:Value> <ows:Value>455</ows:Value> <ows:Value>456</ows:Value> <ows:Value>458</ows:Value> <ows:Value>46</ows:Value> <ows:Value>464</ows:Value> <ows:Value>465</ows:Value> <ows:Value>466</ows:Value> <ows:Value>467</ows:Value> <ows:Value>468</ows:Value> <ows:Value>469</ows:Value> <ows:Value>47</ows:Value> <ows:Value>48</ows:Value> <ows:Value>49</ows:Value> <ows:Value>5</ows:Value> <ows:Value>50</ows:Value> <ows:Value>51</ows:Value> <ows:Value>511</ows:Value> <ows:Value>512</ows:Value> <ows:Value>52</ows:Value> <ows:Value>53</ows:Value> <ows:Value>54</ows:Value> <ows:Value>55</ows:Value> <ows:Value>552</ows:Value> <ows:Value>553</ows:Value> <ows:Value>56</ows:Value> <ows:Value>57</ows:Value> <ows:Value>58</ows:Value> <ows:Value>59</ows:Value> <ows:Value>6</ows:Value> <ows:Value>60</ows:Value> <ows:Value>61</ows:Value> <ows:Value>62</ows:Value> <ows:Value>63</ows:Value> <ows:Value>64</ows:Value> <ows:Value>65</ows:Value> <ows:Value>66</ows:Value> <ows:Value>67</ows:Value> <ows:Value>68</ows:Value> <ows:Value>69</ows:Value> <ows:Value>7</ows:Value> <ows:Value>70</ows:Value> <ows:Value>71</ows:Value> <ows:Value>72</ows:Value> <ows:Value>73</ows:Value> <ows:Value>74</ows:Value> <ows:Value>75</ows:Value> <ows:Value>76</ows:Value> <ows:Value>77</ows:Value> <ows:Value>78</ows:Value> <ows:Value>79</ows:Value> <ows:Value>8</ows:Value> <ows:Value>80</ows:Value> <ows:Value>81</ows:Value> <ows:Value>82</ows:Value> <ows:Value>83</ows:Value> <ows:Value>9</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="result"> <ows:AnyValue/> </ows:Parameter> <ows:Parameter name="responseFormat"> <ows:AllowedValues> <ows:Value>http://www.ioos.gov/dif/csv/0.9</ows:Value> <ows:Value>http://www.opengis.net/waterml/2.0</ows:Value> <ows:Value>http://www.opengis.net/om/2.0</ows:Value> <ows:Value>application/zip</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetFeatureOfInterest"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?"/> <ows:Post xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="featureOfInterest"> <ows:NoValues/> </ows:Parameter> <ows:Parameter name="observableProperty"> <ows:AllowedValues> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/hydraulic_conductivity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/tritium_all_forms</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_manganese</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/temperature</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_iron</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/conductivity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/acidity</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/groundwaterlevel</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_nitrate_no3_as_n</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_chloride</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/acidity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/chloride_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/iron_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/manganese_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/temperature_sampling</ows:Value> <ows:Value>http://resources.smart-project.info/ggwdata/procedure/tritium_sampling</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="spatialFilter"> <ows:AnyValue/> </ows:Parameter> </ows:Operation> <ows:Parameter name="service"> <ows:AllowedValues> <ows:Value>SOS</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="version"> <ows:AllowedValues> <ows:Value>2.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:OperationsMetadata> <sos:filterCapabilities> <fes:Filter_Capabilities> <fes:Conformance> <fes:Constraint name="ImplementsQuery"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsAdHocQuery"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsFunctions"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsResourceld"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinStandardFilter"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsStandardFilter"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinSpatialFilter"> <ows:NoValues/> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSpatialFilter"> <ows:NoValues/> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinTemporalFilter"> <ows:NoValues/> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsTemporalFilter"> <ows:NoValues/> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsVersionNav"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSorting"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsExtendedOperators"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinimumXPath"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSchemaElementFunc"> <ows:NoValues/> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> </fes:Conformance> <fes:Spatial_Capabilities> <fes:GeometryOperands> <fes:GeometryOperand xmlns:gml="http://www.opengis.net/gml" name="gml:Envelope"/> </fes:GeometryOperands> <fes:SpatialOperators> <fes:SpatialOperator name="BBOX"> <fes:GeometryOperands> <fes:GeometryOperand xmlns:gml="http://www.opengis.net/gml" name="gml:Envelope"/> </fes:GeometryOperands> </fes:SpatialOperator> </fes:SpatialOperators> </fes:Spatial_Capabilities> <fes:Temporal_Capabilities> <fes:TemporalOperands> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimePeriod"/> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimeInstant"/> </fes:TemporalOperands> <fes:TemporalOperators> <fes:TemporalOperator name="Before"> <fes:TemporalOperands> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimeInstant"/> </fes:TemporalOperands> </fes:TemporalOperator> <fes:TemporalOperator name="TEquals"> <fes:TemporalOperands> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimeInstant"/> </fes:TemporalOperands> </fes:TemporalOperator> <fes:TemporalOperator name="After"> <fes:TemporalOperands> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimeInstant"/> </fes:TemporalOperands> </fes:TemporalOperator> <fes:TemporalOperator name="During"> <fes:TemporalOperands> <fes:TemporalOperand xmlns:gml="http://www.opengis.net/gml" name="gml:TimePeriod"/> </fes:TemporalOperands> </fes:TemporalOperator> </fes:TemporalOperators> </fes:Temporal_Capabilities> </fes:Filter_Capabilities> </sos:filterCapabilities> <sos:contents> <sos:Contents> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_HYDRAULIC_CONDUCTIVITY</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/hydraulic_conductivity_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/hydraulic_conductivity</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_HYDRAULIC_CONDUCTIVITY"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-43.49087689429214 172.54255929701253</gml:lowerCorner> <gml:upperCorner>-37.530998397034715 176.92673919793086</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_HYDRAULIC_CONDUCTIVITY"> <gml:beginPosition>1900-01-01T00:30:00.000+12:00</gml:beginPosition> <gml:endPosition>1999-03-26T12:00:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_TRITIUM_ALL_FORMS</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/tritium_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/tritium_all_forms</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_TRITIUM_ALL_FORMS"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_TRITIUM_ALL_FORMS"> <gml:beginPosition>1972-07-29T00:00:00.000+12:00</gml:beginPosition> <gml:endPosition>2011-06-13T00:00:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_DISSOLVED_MANGANESE</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/manganese_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_manganese</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_DISSOLVED_MANGANESE"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_DISSOLVED_MANGANESE"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-09-12T16:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_TEMPERATURE</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/temperature_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/temperature</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_TEMPERATURE"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_TEMPERATURE"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-12-19T13:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_DISSOLVED_IRON</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/iron_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_iron</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_DISSOLVED_IRON"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_DISSOLVED_IRON"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-09-12T16:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_CONDUCTIVITY</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/conductivity_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/conductivity</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_CONDUCTIVITY"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_CONDUCTIVITY"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-12-19T13:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_ACIDITY</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/acidity_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/acidity</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_ACIDITY"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_ACIDITY"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-12-19T13:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_GROUNDWATER_LEVEL</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/groundwaterlevel_sensor</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/groundwaterlevel</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_GROUNDWATER_LEVEL"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_GROUNDWATER_LEVEL"> <gml:beginPosition>1994-03-16T12:08:00.000+12:00</gml:beginPosition> <gml:endPosition>2012-12-19T13:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_DISSOLVED_NITRATE_NO3_AS_N</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/nitrate_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_nitrate_no3_as_n</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_DISSOLVED_NITRATE_NO3_AS_N"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_DISSOLVED_NITRATE_NO3_AS_N"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-09-12T16:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> <swes:offering xsi:type="sos:ObservationOfferingType"> <sos:ObservationOffering xmlns:ns="http://www.opengis.net/sos/2.0"> <swes:identifier>NGMP_DISSOLVED_CHLORIDE</swes:identifier> <swes:procedure>http://resources.smart-project.info/ggwdata/procedure/chloride_sampling</swes:procedure> <swes:observableProperty>http://resources.smart-project.info/ggwdata/phenomenon/dissolved_chloride</swes:observableProperty> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures_._NGMP_DISSOLVED_CHLORIDE"/> </swes:FeatureRelationship> </swes:relatedFeature> <swes:relatedFeature> <swes:FeatureRelationship> <swes:role>relatedFeature</swes:role> <swes:target xlink:href="https://geier.gns.cri.nz/ngmp-sos/sos?REQUEST=GetFeatureOfInterest&amp;service=SOS&amp;version=2.0.0&amp;featureOfInterest=allFeatures"/> </swes:FeatureRelationship> </swes:relatedFeature> <ns:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4272"> <gml:lowerCorner>-46.31316456339313 168.06194851332876</gml:lowerCorner> <gml:upperCorner>-34.85029852837112 177.9834379122022</gml:upperCorner> </gml:Envelope> </ns:observedArea> <ns:phenomenonTime> <gml:TimePeriod gml:id="pt_NGMP_DISSOLVED_CHLORIDE"> <gml:beginPosition>0012-01-23T09:05:56.000+12:00</gml:beginPosition> <gml:endPosition>2012-09-12T16:30:00.000+12:00</gml:endPosition> </gml:TimePeriod> </ns:phenomenonTime> <ns:responseFormat>http://www.ioos.gov/dif/csv/0.9</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/waterml/2.0</ns:responseFormat> <ns:responseFormat>http://www.opengis.net/om/2.0</ns:responseFormat> <ns:responseFormat>application/zip</ns:responseFormat> <ns:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Observation</ns:observationType> </sos:ObservationOffering> </swes:offering> </sos:Contents> </sos:contents> </sos:Capabilities> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/sos_ngwd.xml����������������������������������������������������������0000664�0000000�0000000�00000032033�13217064120�0020413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <sos:Capabilities version="2.0.0" xmlns:ogc="http://www.opengis.net/ogc" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:swes="http://www.opengis.net/swes/2.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:sos="http://www.opengis.net/sos/2.0"> <!-- ServiceIdentification contains general information about the service like title, type and version as well as information about supported profiles of the service--> <ows:ServiceIdentification> <ows:Title>GIN SOS</ows:Title> <ows:Abstract>GIN SOS mediator </ows:Abstract> <ows:Keywords> <ows:Keyword>water level</ows:Keyword> <ows:Keyword>groundwater level</ows:Keyword> <ows:Keyword>surface water flow</ows:Keyword> </ows:Keywords> <ows:ServiceType codeSpace="http://opengeospatial.net">OGC:SOS</ows:ServiceType> <ows:ServiceTypeVersion>2.0.0</ows:ServiceTypeVersion> <!-- supported profiles as --> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/gfoi</ows:Profile> <!-- <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/obsByIdRetrieval</ows:Profile> --> <!-- TODO: add KVP BBOX profile when implemented --> <!-- Observation can be queries using spatial geometry expressed in param --> <ows:Profile>http://www.opengis.net/spec/SOS/2.0/conf/spatialFilteringProfile</ows:Profile> <!-- sampling feature must have a point geometry --> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/samplingPoint</ows:Profile> <!-- Observation encoded with GML 3.2 XML--> <ows:Profile>http://www.opengis.net/spec/OMXML/2.0/conf/observation</ows:Profile> <!-- this service implement WaterML 2.0 --> <ows:Profile>http://www.opengis.net/spec/waterml/2.0/conf/xsd-observation-process</ows:Profile> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>NONE</ows:AccessConstraints> </ows:ServiceIdentification> <!-- ServiceProvider section contains information about service provider like contact, adress, etc. --> <ows:ServiceProvider> <ows:ProviderName>Geological Survey of Canada, Earth Sciences Sector, Natural Resources Canada, Government of Canada</ows:ProviderName> <ows:ProviderSite xlink:href="http://gw-info.net"></ows:ProviderSite> <ows:ServiceContact> <ows:IndividualName>Boyan Brodaric</ows:IndividualName> <ows:PositionName>Research Scientist</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>+1-613-992-3562</ows:Voice> <ows:Facsimile>+1-613-995-9273</ows:Facsimile> </ows:Phone> <ows:Address> <ows:DeliveryPoint>615 Booth Street</ows:DeliveryPoint> <ows:City>Ottawa</ows:City> <ows:PostalCode>K1A 0E9</ows:PostalCode> <ows:Country>Canada</ows:Country> <ows:ElectronicMailAddress>brodaric at nrcan dot gc dot ca</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> <ows:Role></ows:Role> </ows:ServiceContact> </ows:ServiceProvider> <!-- extension is used for providing profile specific sections; in this case, the InsertionCapabilities section is contained, because the SOS supports the obs- and resultInsertion profiles--> <!-- the filterCapabilities section lists the filters and operands which are supported in the observation, result and feature retrieval operations --> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?"></ows:Get> <ows:Post xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw"></ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="updateSequence"> <ows:AnyValue></ows:AnyValue> </ows:Parameter> <ows:Parameter name="AcceptVersions"> <ows:AllowedValues> <ows:Value>2.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="Sections"> <ows:AllowedValues> <ows:Value>ServiceIdentification</ows:Value> <ows:Value>ServiceProvider</ows:Value> <ows:Value>OperationsMetadata</ows:Value> <ows:Value>FilterCapabilities</ows:Value> <ows:Value>Contents</ows:Value> <ows:Value>All</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="AcceptFormats"> <ows:AllowedValues> <ows:Value>text/xml</ows:Value> <ows:Value>application/zip</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeSensor"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?"></ows:Get> <ows:Post xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw"></ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedureDescriptionFormat"> <ows:AllowedValues> <ows:Value>http://www.opengis.net/sensorML/1.0.1</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetObservation"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?"></ows:Get> <ows:Post xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw"></ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="srsName"> <ows:NoValues></ows:NoValues> </ows:Parameter> <ows:Parameter name="offering"> <ows:AllowedValues> <ows:Value>GW_LEVEL</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="temporalFilter"> <ows:AllowedValues> <ows:Range> <ows:MinimumValue>1900-04-01T17:43:00+02:00</ows:MinimumValue> <ows:MaximumValue>2013-04-01T17:51:00+02:00</ows:MaximumValue> </ows:Range> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="observedProperty"> <ows:AllowedValues> <ows:Value>urn:ogc:def:phenomenon:OGC:1.0.30:groundwaterlevel</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="result"> <ows:AnyValue></ows:AnyValue> </ows:Parameter> <ows:Parameter name="responseFormat"> <ows:AllowedValues> <ows:Value>http://www.opengis.net/waterml/2.0</ows:Value> <ows:Value>application/zip</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:Operation> <ows:Operation name="GetFeatureOfInterest"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw?"></ows:Get> <ows:Post xlink:href="http://ngwd-bdnes.cits.nrcan.gc.ca:8080/proxy/GinService/sos/gw"></ows:Post> </ows:HTTP> </ows:DCP> <ows:Parameter name="featureOfInterest"> <ows:NoValues></ows:NoValues> </ows:Parameter> <ows:Parameter name="observableProperty"> <ows:AllowedValues> <ows:Value>urn:ogc:def:phenomenon:OGC:1.0.30:groundwaterlevel</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="procedure"> <ows:AllowedValues> <ows:Value>urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="spatialFilter"> <ows:AnyValue></ows:AnyValue> </ows:Parameter> </ows:Operation> <ows:Parameter name="service"> <ows:AllowedValues> <ows:Value>SOS</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Parameter name="version"> <ows:AllowedValues> <ows:Value>2.0.0</ows:Value> </ows:AllowedValues> </ows:Parameter> </ows:OperationsMetadata> <sos:filterCapabilities> <fes:Filter_Capabilities> <fes:Conformance> <fes:Constraint name="ImplementsQuery"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsAdHocQuery"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsFunctions"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinStandardFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsStandardFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinSpatialFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSpatialFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinTemporalFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsTemporalFilter"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>true</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsVersionNav"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSorting"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsExtendedOperators"> <ows:NoValues></ows:NoValues> <ows:DefaultValue>false</ows:DefaultValue> </fes:Constraint> </fes:Conformance> <fes:Spatial_Capabilities> <fes:GeometryOperands> <fes:GeometryOperand name="gml:Point"></fes:GeometryOperand> <fes:GeometryOperand name="gml:Polygon"></fes:GeometryOperand> </fes:GeometryOperands> <fes:SpatialOperators> <fes:SpatialOperator name="BBOX"></fes:SpatialOperator> <fes:SpatialOperator name="Intersects"></fes:SpatialOperator> <fes:SpatialOperator name="Within"></fes:SpatialOperator> </fes:SpatialOperators> </fes:Spatial_Capabilities> <fes:Temporal_Capabilities> <fes:TemporalOperands> <fes:TemporalOperand name="gml:TimePeriod"></fes:TemporalOperand> <fes:TemporalOperand name="gml:TimeInstant"></fes:TemporalOperand> </fes:TemporalOperands> <fes:TemporalOperators> <fes:TemporalOperator name="During"></fes:TemporalOperator> <fes:TemporalOperator name="After"></fes:TemporalOperator> <fes:TemporalOperator name="TEquals"></fes:TemporalOperator> </fes:TemporalOperators> </fes:Temporal_Capabilities> </fes:Filter_Capabilities> </sos:filterCapabilities> <!-- The contents section contains information about the observations offered by the service. The observations are group per sensor(-system) into observation offerings.--> <sos:contents> <sos:Contents> <swes:offering><sos:ObservationOffering xmlns:ogc="http://www.opengis.net/ogc" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:swes="http://www.opengis.net/swes/2.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:swe="http://www.opengis.net/swe/2.0" xmlns:sos="http://www.opengis.net/sos/2.0"> <swes:identifier>GW_LEVEL</swes:identifier> <swes:procedure>urn:ogc:object:Sensor::GIN_GroundwaterLevelProcess</swes:procedure> <swes:procedureDescriptionFormat>http://www.opengis.net/sensorML/1.0.1 </swes:procedureDescriptionFormat> <swes:observableProperty>urn:ogc:def:phenomenon:OGC:1.0.30:groundwaterlevel</swes:observableProperty> <sos:observedArea> <gml:Envelope srsName="http://www.opengis.net/def/crs/EPSG/0/4326"> <gml:lowerCorner>41 -120</gml:lowerCorner> <gml:upperCorner>60 -60</gml:upperCorner> </gml:Envelope> </sos:observedArea> <sos:phenomenonTime> <gml:TimePeriod gml:id="phenomenonTime"> <gml:beginPosition>1956-04-30T12:00:00Z</gml:beginPosition> <gml:endPosition>2011-11-02T12:00:00Z</gml:endPosition> </gml:TimePeriod> </sos:phenomenonTime> </sos:ObservationOffering></swes:offering> <sos:responseFormat>http://www.opengis.net/om/2.0</sos:responseFormat> <sos:observationType>http://www.opengis.net/def/observationType/OGC-OM/2.0/OM_Measurement</sos:observationType> </sos:Contents> </sos:contents> </sos:Capabilities> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/swe_ioos_multistation_timeseries.xml����������������������������������0000664�0000000�0000000�00000064616�13217064120�0025500�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!-- This template is an example of a SWE Data Record composed of static and dynamic fields for --> <!-- multiple stations with multiple sensors --> <!-- --> <!-- Most any element may be static or dynamic, but the static fields must be encoded inline, while --> <!-- The dyamic elements must be block encoded in the data array. --> <!-- --> <!-- Description of data --> <!-- SWE DataRecord containing 3 Stations: --> <!-- Station 1 has 2 sensors --> <!-- Station 2 has 2 sensors --> <!-- Station 3 has 1 sensors --> <swe2:DataRecord xmlns:swe2="http://www.opengis.net/swe/2.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/swe/2.0 http://schemas.opengis.net/sweCommon/2.0/swe.xsd" definition="http://mmisw.org/ont/ioos/definition/observationRecord"> <!-- STATIC DATA --> <!-- This field "stations" contains static data for all stations and sensors in the response --> <!-- Static data is linked to dynamic data (sensor observation values) via an abbreviated, --> <!-- underscored sensor URN. For example, urn:ioos:sensor:wmo:41001:sensor1 becomes --> <!-- wmo_41001_sensor1 --> <!-- This abbreviated URN is used as the sensor's DataRecord id in the static block and the --> <!-- DataChoice item name in the dynamic block. Consequently it also appears in the dynamic --> <!-- swe:values encoding. And may thus be used as a look up for the metadata of a given row --> <!-- of the data block --> <!-- All fields in the static block must include inline values. --> <!-- All fields in the dynamic block must not include inline values. --> <swe2:field name="stations"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for each station shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/stations"> <!-- Static data for the first station, urn:ioos:station:wmo:41001 --> <!-- Required elements include for each station: stationID, platformLocation, sensors --> <swe2:field name="wmo_41001"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a station shall be defined --> <swe2:DataRecord id="wmo_41001" definition="http://mmisw.org/ont/ioos/definition/station"> <swe2:field name="stationID"> <!-- IoosTech Convention: --> <!-- The text element containing the station id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/stationID"> <swe2:value>urn:ioos:station:wmo:41001</swe2:value> </swe2:Text> </swe2:field> <!-- The platformLocation may be defined here, statically, or specified in the dynamic --> <!-- section. In either case, all coordinates must be specified inline or block encoded. --> <!-- They encoding can not be split to save bandwidth in the response. --> <swe2:field name="platformLocation"> <!-- Field: platformLocation; --> <!-- The location of the platform relative to WGS 84 (Horizontal) and Instantaneous Water Level (Vertical). --> <!-- Each sensor will specify a height relative to the platform location. If complete orientation and --> <!-- relative position are available for a sensor, SWE 2.0 clearly defines how to record it. Generally, --> <!-- for IOOS buoy instruments we believe just specifying the height is the appropriate solution. --> <swe2:Vector definition="http://www.opengis.net/def/property/OGC/0/PlatformLocation" referenceFrame="http://www.opengis.net/def/crs-compound?1=http://www.opengis.net/def/crs/EPSG/0/4326&amp;2=http://www.opengis.net/def/crs/EPSG/0/5829" localFrame="#wmo_41001_frame"> <!-- Vector: --> <!-- The coordinate vector defining the station location in the specified reference frame. --> <!-- --> <!-- For floating, surface buoys a new compound coordinate reference system has been developed --> <!-- which combines the WGS84 for horizontal (GPS) latitude and longitude CRS with a vertical CRS --> <!-- which uses height in above the Instantanious Water Level as a datum. --> <!-- --> <!-- For a tide gauge or a station at a fixed location relative to the Geoid (MSL), the CRS should be: --> <!-- EPSG::4979 referenceFrame="http://www.opengis.net/def/crs/EPSG/0/4979" --> <!-- --> <!-- Each stations localFrame must be unique. --> <swe2:coordinate name="latitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/latitude" axisID="Lat"> <swe2:uom code="deg" /> <swe2:value>32.382</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="longitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/longitude" axisID="Lon"> <swe2:uom code="deg" /> <swe2:value>-75.415</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z"> <swe2:uom code="m" /> <swe2:value>0.5</swe2:value> <!-- Zero height is at water level in the IOOS Buoy CRS. All sensors locations should be a height --> <!-- (vertical upward) relative to this reference frame --> </swe2:Quantity> </swe2:coordinate> </swe2:Vector> </swe2:field> <!-- Static data for all sensors on this station --> <swe2:field name="sensors"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for each sensor shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensors"> <swe2:field name="wmo_41001_sensor1"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a sensor shall be defined --> <!-- Reminder: the DataRecord id of a sensor in the static block matches the DataChoice item --> <!-- name in the dynamic block --> <swe2:DataRecord id="wmo_41001_sensor1" definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sensorID"> <!-- Field: sensorID --> <!-- The sensorID urn may use a meaningful "component" name (eg, "sbe16"); or, --> <!-- if not available, a simple, constant string followed by an integer counter --> <!-- such as "sensor1", "sensor2", "salt1", etc. --> <!-- IoosTech Convention: --> <!-- The text element containing the sensor id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/sensorID"> <swe2:value>urn:ioos:sensor:wmo:41001:sensor1</swe2:value> </swe2:Text> </swe2:field> <!-- Height is generally a static field so we demonstrate its use here. It can be --> <!-- defined statically or dynamically. --> <swe2:field name="height"> <!-- The location of the sensor relative to the platform --> <!-- We don't currently have enough information about orientation and relative position --> <!-- of sensors on a platform to define a sensor reference frame, but it is certainly --> <!-- possible to do if and when that is needed. --> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z" referenceFrame="#wmo_41001_frame"> <swe2:uom code="m" /> <swe2:value>5</swe2:value> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:field> <swe2:field name="wmo_41001_sensor2"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a sensor shall be defined --> <!-- Reminder: the DataRecord id of a sensor in the static block matches the DataChoice item --> <!-- name in the dynamic block --> <swe2:DataRecord id="wmo_41001_sensor2" definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sensorID"> <!-- IoosTech Convention: --> <!-- The text element containing the sensor id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/sensorID"> <swe2:value>urn:ioos:sensor:wmo:41001:sensor2</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z" referenceFrame="#wmo_41001_frame"> <swe2:uom code="m" /> <swe2:value>-2</swe2:value> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> <!-- Station 2 static data --> <swe2:field name="wmo_41002"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a station shall be defined --> <swe2:DataRecord id="wmo_41002" definition="http://mmisw.org/ont/ioos/definition/station"> <swe2:field name="stationID"> <!-- IoosTech Convention: --> <!-- The text element containing the station id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/stationID"> <swe2:value>urn:ioos:station:wmo:41002</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="platformLocation"> <swe2:Vector definition="http://www.opengis.net/def/property/OGC/0/PlatformLocation" referenceFrame="http://www.opengis.net/def/crs-compound?1=http://www.opengis.net/def/crs/EPSG/0/4326&amp;2=http://www.opengis.net/def/crs/EPSG/0/5829" localFrame="#wmo_41002_frame"> <swe2:coordinate name="latitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/latitude" axisID="Lat"> <swe2:uom code="deg" /> <swe2:value>32.5</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="longitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/longitude" axisID="Lon"> <swe2:uom code="deg" /> <swe2:value>-78.5</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z"> <swe2:uom code="m" /> <swe2:value>0</swe2:value> </swe2:Quantity> </swe2:coordinate> </swe2:Vector> </swe2:field> <swe2:field name="sensors"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for each sensor shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensors"> <swe2:field name="wmo_41002_sensor1"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a sensor shall be defined --> <!-- Reminder: the DataRecord id of a sensor in the static block matches the DataChoice item --> <!-- name in the dynamic block --> <swe2:DataRecord id="wmo_41002_sensor1" definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sensorID"> <!-- IoosTech Convention: --> <!-- The text element containing the sensor id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/sensorID"> <swe2:value>urn:ioos:sensor:wmo:41002:sensor1</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z" referenceFrame="#wmo_41002_frame"> <swe2:uom code="m" /> <swe2:value>3</swe2:value> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:field> <swe2:field name="wmo_41002_sensor2"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a sensor shall be defined --> <swe2:DataRecord id="wmo_41002_sensor2" definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sensorID"> <!-- IoosTech Convention: --> <!-- The text element containing the sensor id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/sensorID"> <swe2:value>urn:ioos:sensor:wmo:41002:sensor2</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z" referenceFrame="#wmo_41002_frame"> <swe2:uom code="m" /> <swe2:value>-5</swe2:value> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> <!-- Station 3 static data --> <swe2:field name="wmo_41003"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a station shall be defined --> <swe2:DataRecord id="wmo_41003" definition="http://mmisw.org/ont/ioos/definition/station"> <swe2:field name="stationID"> <!-- IoosTech Convention: --> <!-- The text element containing the station id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/stationID"> <swe2:value>urn:ioos:station:wmo:41003</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="platformLocation"> <swe2:Vector definition="http://www.opengis.net/def/property/OGC/0/PlatformLocation" referenceFrame="http://www.opengis.net/def/crs-compound?1=http://www.opengis.net/def/crs/EPSG/0/4326&amp;2=http://www.opengis.net/def/crs/EPSG/0/5829" localFrame="#wmo_41003_frame"> <swe2:coordinate name="latitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/latitude" axisID="Lat"> <swe2:uom code="deg" /> <swe2:value>33.5</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="longitude"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/longitude" axisID="Lon"> <swe2:uom code="deg" /> <swe2:value>-79.5</swe2:value> </swe2:Quantity> </swe2:coordinate> <swe2:coordinate name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z"> <swe2:uom code="m" /> <swe2:value>0</swe2:value> </swe2:Quantity> </swe2:coordinate> </swe2:Vector> </swe2:field> <swe2:field name="sensors"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for each sensor shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensors"> <swe2:field name="wmo_41003_sensor1"> <!-- IoosTech Convention: --> <!-- The data record containing the static data for a sensor shall be defined --> <!-- Reminder: the DataRecord id of a sensor in the static block matches the DataChoice item --> <!-- name in the dynamic block --> <swe2:DataRecord id="wmo_41003_sensor1" definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sensorID"> <!-- IoosTech Convention: --> <!-- The text element containing the sensor id shall be defined --> <swe2:Text definition="http://mmisw.org/ont/ioos/definition/sensorID"> <swe2:value>urn:ioos:sensor:wmo:41003:sensor1</swe2:value> </swe2:Text> </swe2:field> <swe2:field name="height"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/height" axisID="Z" referenceFrame="#wmo_41003_frame"> <swe2:uom code="m" /> <swe2:value>3</swe2:value> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> </swe2:DataRecord> </swe2:field> <!-- DYNAMIC DATA (SENSOR OBSERVATIONS) --> <!-- All measurements made by sensors and any other dynamic data (e.g. location for mobile sensors) --> <!-- are encoded in a DataArray. Again, sensor field name in the static DataRecord above corresponds to --> <!-- DataChoice item name in the dynamic DataArray --> <swe2:field name="observationData"> <!-- IoosTech Convention: --> <!-- The field containing the dynamic data from each sensor shall contain a DataArray defined as such--> <swe2:DataArray definition="http://mmisw.org/ont/ioos/definition/sensorObservationCollection"> <!-- Count of records in swe:values --> <swe2:elementCount> <swe2:Count> <swe2:value>13</swe2:value> </swe2:Count> </swe2:elementCount> <!-- Definition of fields in the DataArray --> <swe2:elementType name="observations"> <!-- IoosTech Convention: --> <!-- The data record containing the dynamic observation descriptors for each sensor shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensorObservations"> <!-- Time is included for all sensor so it is listed first and is outside of DataChoice. --> <!-- If time is defined differently for some sensors it could be moved inside the data --> <!-- but this is uncommon. --> <swe2:field name="time"> <swe2:Time definition="http://www.opengis.net/def/property/OGC/0/SamplingTime"> <swe2:uom xlink:href="http://www.opengis.net/def/uom/ISO-8601/0/Gregorian" /> </swe2:Time> </swe2:field> <!-- Since different observations are made by each sensor, DataChoice is used to select --> <!-- a sensor and the set of observation fields for each record from that sensor in the --> <!-- block encoded values of the data array. --> <swe2:field name="sensor"> <!-- IoosTech Convention: --> <!-- The data array shall contain one field with a DataChoice defined as sensor records --> <swe2:DataChoice definition="http://mmisw.org/ont/ioos/definition/sensors"> <!-- DataChoice for wmo 41001's sensor1 --> <!-- Dynamic sensor observations are linked to static data using the DataChoice --> <!-- item name: wmo_41001_sensor1 --> <swe2:item name="wmo_41001_sensor1"> <!-- IoosTech Convention: --> <!-- The data record containing the dynamic observation descriptors for a sensor shall be defined --> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensor"> <!-- wmo_41001_sensor1's observed properties --> <swe2:field name="air_temperature"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/air_temperature"> <swe2:uom code="Celsius" /> </swe2:Quantity> </swe2:field> <swe2:field name="wind_speed"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/wind_speed"> <swe2:uom code="m/s" /> </swe2:Quantity> </swe2:field> <swe2:field name="wind_to_direction"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/wind_to_direction"> <swe2:uom code="degrees" /> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:item> <swe2:item name="wmo_41001_sensor2"> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sea_water_temperature"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/sea_water_temperature"> <swe2:uom code="Celsius" /> </swe2:Quantity> </swe2:field> <swe2:field name="dissolved_oxygen"> <swe2:Quantity definition="http://mmisw.org/ont/ioos/parameter/dissolved_oxygen"> <swe2:uom code="mg/L" /> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:item> <swe2:item name="wmo_41002_sensor1"> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="air_temperature"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/air_temperature"> <swe2:uom code="Celsius" /> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:item> <swe2:item name="wmo_41002_sensor2"> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="sea_water_temperature"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/sea_water_temperature"> <swe2:uom code="Celsius" /> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:item> <swe2:item name="wmo_41003_sensor1"> <swe2:DataRecord definition="http://mmisw.org/ont/ioos/definition/sensor"> <swe2:field name="air_temperature"> <swe2:Quantity definition="http://mmisw.org/ont/cf/parameter/air_temperature"> <swe2:uom code="Celsius" /> </swe2:Quantity> </swe2:field> </swe2:DataRecord> </swe2:item> </swe2:DataChoice> </swe2:field> </swe2:DataRecord> </swe2:elementType> <swe2:encoding> <!-- SWE encoding and data values --> <!-- IoosTech Convention: --> <!-- swe:encoding *must* be always specified exactly as described below, --> <!-- to avoid the need to have fully general parsers that interpret --> <!-- swe:TextEncoding. That is, parsers may hard-code this particular --> <!-- swe:TextEncoding specification. --> <!-- --> <!-- About DataChoice from SWE Common 2.0: --> <!-- 9.2.5 Rules for DataChoice --> <!-- A “DataChoice” is encoded with the text method by providing the name of the selected item --> <!-- before the item values themselves. The name used shall correspond to the “name” attribute --> <!-- of the “item” property element that describes the structure of the selected item. --> <!-- --> <!-- IoosTech Convention: --> <!-- The name encoded for by data choice must match both the static sensor field name --> <!-- as well as the name attribute of the data choice item in the dynamic data. --> <!-- --> <!-- This data stream interleaves different types of messages separated by the block separator --> <!-- character. The element type is a “DataChoice” which means that each block is composed of --> <!-- the item name, followed by values of the item. This example also demonstrates that items --> <!-- of a choice can be of different types and length. --> <swe2:TextEncoding decimalSeparator="." tokenSeparator="," blockSeparator="&#10;" /> </swe2:encoding> <swe2:values> 2009-05-23T00:00:00Z,wmo_41001_sensor1,15.4,2.0,280 2009-05-23T01:00:00Z,wmo_41001_sensor1,15.8,1.8,121 2009-05-23T02:00:00Z,wmo_41001_sensor1,15.6,1.0,142 2009-05-23T00:00:00Z,wmo_41001_sensor2,5.6,8.0 2009-05-23T01:00:00Z,wmo_41001_sensor2,5.8,8.2 2009-05-23T02:00:00Z,wmo_41001_sensor2,5.7,8.5 2009-05-23T00:00:00Z,wmo_41002_sensor1,16.2 2009-05-23T01:00:00Z,wmo_41002_sensor1,16.4 2009-05-23T02:00:00Z,wmo_41002_sensor1,16.5 2009-05-23T00:00:00Z,wmo_41002_sensor2,6.1 2009-05-23T01:00:00Z,wmo_41002_sensor2,6.3 2009-05-23T02:00:00Z,wmo_41002_sensor2,6.5 2009-05-23T01:00:00Z,wmo_41003_sensor1,15.8 </swe2:values> </swe2:DataArray> </swe2:field> </swe2:DataRecord> ������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wcs_nsidc.xml���������������������������������������������������������0000664�0000000�0000000�00000543365�13217064120�0020563�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="ISO-8859-1"?> <Capabilities xmlns="http://www.opengis.net/wcs/1.1" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ogc="http://www.opengis.net/ogc" version="1.1.0"> <ows:ServiceIdentification> <ows:Title>Atlas of the Cryosphere: Northern Hemisphere</ows:Title> <ows:Abstract>The National Snow and Ice Data Center (NSIDC) Atlas of the Cryosphere is a map server that provides data and information pertinent to the frozen regions of Earth, including monthly climatologies of sea ice extent and concentration, snow cover extent, and snow water equivalent, in addition to glacier outlines, permafrost extent and classification, ice sheet elevation and accumulation, and more. In order to support polar projections, the Atlas is divided into two separate map servers: one for the Northern Hemisphere and one for the Southern Hemisphere. In addition to providing map images and source data through Open Geospatial Consortium, Inc. (OGC) protocols (WMS, WFS, and WCS), a dynamic web interface for exploring these data is also available at http://nsidc.org/data/atlas. If you have questions, comments or suggestions, please contact NSIDC User Services at +1.303.492.6199 or nsidc@nsidc.org. The development of this map server application was supported by NASA's Earth Observing System (EOS) Program under contract NAS5-03099 and was developed using MapServer, an Open Source development environment for building spatially-enabled internet applications. To cite the Atlas of the Cryosphere: Maurer, J. 2007. Atlas of the Cryosphere. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/atlas/.</ows:Abstract> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Ice Extent</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> <ows:Keyword>Snow/Ice</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Melt</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:ServiceType codeSpace="OGC">OGC WCS</ows:ServiceType> <ows:ServiceTypeVersion>1.1.0</ows:ServiceTypeVersion> <ows:Fees>none</ows:Fees> <ows:AccessConstraints>none</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>National Snow and Ice Data Center</ows:ProviderName> <ows:ProviderSite xlink:type="simple" xlink:href="http://nsidc.org"/> <ows:ServiceContact> <ows:IndividualName>NSIDC User Services</ows:IndividualName> <ows:PositionName>User Services</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>+1 303.492.6199</ows:Voice> <ows:Facsimile>+1 303.492.2468</ows:Facsimile> </ows:Phone> <ows:Address> <ows:DeliveryPoint>CIRES, 449 UCB, University of Colorado</ows:DeliveryPoint> <ows:City>Boulder</ows:City> <ows:AdministrativeArea>CO</ows:AdministrativeArea> <ows:PostalCode>80309-0449</ows:PostalCode> <ows:Country>USA</ows:Country> <ows:ElectronicMailAddress>nsidc@nsidc.org</ows:ElectronicMailAddress> </ows:Address> <ows:OnlineResource xlink:type="simple" xlink:href="http://nsidc.org"/> <ows:HoursOfService>Our hours of operation are 9:00 A.M. to 5:00 P.M., U.S. Mountain Time, Monday through Friday. We are closed on most major United States holidays.</ows:HoursOfService> <ows:ContactInstructions>None.</ows:ContactInstructions> </ows:ContactInfo> <ows:Role>resourceProvider</ows:Role> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="service"> <ows:Value>WCS</ows:Value> </ows:Parameter> <ows:Parameter name="version"> <ows:Value>1.1.0</ows:Value> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeCoverage"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="service"> <ows:Value>WCS</ows:Value> </ows:Parameter> <ows:Parameter name="version"> <ows:Value>1.1.0</ows:Value> </ows:Parameter> <ows:Parameter name="identifiers"> <ows:Value>sea_ice_concentration_01</ows:Value> <ows:Value>sea_ice_concentration_02</ows:Value> <ows:Value>sea_ice_concentration_03</ows:Value> <ows:Value>sea_ice_concentration_04</ows:Value> <ows:Value>sea_ice_concentration_05</ows:Value> <ows:Value>sea_ice_concentration_06</ows:Value> <ows:Value>sea_ice_concentration_07</ows:Value> <ows:Value>sea_ice_concentration_08</ows:Value> <ows:Value>sea_ice_concentration_09</ows:Value> <ows:Value>sea_ice_concentration_10</ows:Value> <ows:Value>sea_ice_concentration_11</ows:Value> <ows:Value>sea_ice_concentration_12</ows:Value> <ows:Value>seasonal_snow_classification</ows:Value> <ows:Value>snow_extent_01</ows:Value> <ows:Value>snow_extent_02</ows:Value> <ows:Value>snow_extent_03</ows:Value> <ows:Value>snow_extent_04</ows:Value> <ows:Value>snow_extent_05</ows:Value> <ows:Value>snow_extent_06</ows:Value> <ows:Value>snow_extent_07</ows:Value> <ows:Value>snow_extent_08</ows:Value> <ows:Value>snow_extent_09</ows:Value> <ows:Value>snow_extent_10</ows:Value> <ows:Value>snow_extent_11</ows:Value> <ows:Value>snow_extent_12</ows:Value> <ows:Value>snow_water_equivalent_01</ows:Value> <ows:Value>snow_water_equivalent_02</ows:Value> <ows:Value>snow_water_equivalent_03</ows:Value> <ows:Value>snow_water_equivalent_04</ows:Value> <ows:Value>snow_water_equivalent_05</ows:Value> <ows:Value>snow_water_equivalent_06</ows:Value> <ows:Value>snow_water_equivalent_07</ows:Value> <ows:Value>snow_water_equivalent_08</ows:Value> <ows:Value>snow_water_equivalent_09</ows:Value> <ows:Value>snow_water_equivalent_10</ows:Value> <ows:Value>snow_water_equivalent_11</ows:Value> <ows:Value>snow_water_equivalent_12</ows:Value> <ows:Value>greenland_surface_melt</ows:Value> <ows:Value>greenland_accumulation</ows:Value> <ows:Value>greenland_bedrock_elevation</ows:Value> <ows:Value>greenland_ice_thickness</ows:Value> <ows:Value>greenland_elevation</ows:Value> </ows:Parameter> </ows:Operation> <ows:Operation name="GetCoverage"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://nsidc.org/cgi-bin/atlas_north?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="service"> <ows:Value>WCS</ows:Value> </ows:Parameter> <ows:Parameter name="version"> <ows:Value>1.1.0</ows:Value> </ows:Parameter> <ows:Parameter name="Identifier"> <ows:Value>sea_ice_concentration_01</ows:Value> <ows:Value>sea_ice_concentration_02</ows:Value> <ows:Value>sea_ice_concentration_03</ows:Value> <ows:Value>sea_ice_concentration_04</ows:Value> <ows:Value>sea_ice_concentration_05</ows:Value> <ows:Value>sea_ice_concentration_06</ows:Value> <ows:Value>sea_ice_concentration_07</ows:Value> <ows:Value>sea_ice_concentration_08</ows:Value> <ows:Value>sea_ice_concentration_09</ows:Value> <ows:Value>sea_ice_concentration_10</ows:Value> <ows:Value>sea_ice_concentration_11</ows:Value> <ows:Value>sea_ice_concentration_12</ows:Value> <ows:Value>seasonal_snow_classification</ows:Value> <ows:Value>snow_extent_01</ows:Value> <ows:Value>snow_extent_02</ows:Value> <ows:Value>snow_extent_03</ows:Value> <ows:Value>snow_extent_04</ows:Value> <ows:Value>snow_extent_05</ows:Value> <ows:Value>snow_extent_06</ows:Value> <ows:Value>snow_extent_07</ows:Value> <ows:Value>snow_extent_08</ows:Value> <ows:Value>snow_extent_09</ows:Value> <ows:Value>snow_extent_10</ows:Value> <ows:Value>snow_extent_11</ows:Value> <ows:Value>snow_extent_12</ows:Value> <ows:Value>snow_water_equivalent_01</ows:Value> <ows:Value>snow_water_equivalent_02</ows:Value> <ows:Value>snow_water_equivalent_03</ows:Value> <ows:Value>snow_water_equivalent_04</ows:Value> <ows:Value>snow_water_equivalent_05</ows:Value> <ows:Value>snow_water_equivalent_06</ows:Value> <ows:Value>snow_water_equivalent_07</ows:Value> <ows:Value>snow_water_equivalent_08</ows:Value> <ows:Value>snow_water_equivalent_09</ows:Value> <ows:Value>snow_water_equivalent_10</ows:Value> <ows:Value>snow_water_equivalent_11</ows:Value> <ows:Value>snow_water_equivalent_12</ows:Value> <ows:Value>greenland_surface_melt</ows:Value> <ows:Value>greenland_accumulation</ows:Value> <ows:Value>greenland_bedrock_elevation</ows:Value> <ows:Value>greenland_ice_thickness</ows:Value> <ows:Value>greenland_elevation</ows:Value> </ows:Parameter> <ows:Parameter name="InterpolationType"> <ows:Value>NEAREST_NEIGHBOUR</ows:Value> <ows:Value>BILINEAR</ows:Value> </ows:Parameter> <ows:Parameter name="format"> <ows:Value>image/png</ows:Value> <ows:Value>image/tiff</ows:Value> <ows:Value>image/gif</ows:Value> <ows:Value>image/png; mode=24bit</ows:Value> <ows:Value>image/jpeg</ows:Value> <ows:Value>image/vnd.wap.wbmp</ows:Value> </ows:Parameter> <ows:Parameter name="store"> <ows:Value>false</ows:Value> </ows:Parameter> <ows:Parameter name="GridBaseCRS"> <ows:Value>urn:ogc:def:crs:epsg::4326</ows:Value> </ows:Parameter> </ows:Operation> </ows:OperationsMetadata> <Contents> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_01</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_02</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_03</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_04</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_05</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_06</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_07</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_08</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_09</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_10</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_11</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Title> <ows:Abstract>Stroeve, J. and W. Meier. 1999, updated 2008. Sea Ice Trends and Climatologies from SMMR and SSM/I. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/smmr_ssmi_ancillary/monthly_means.html. Accessed 27 June 2008. Compiled from: Cavalieri, D., C. Parkinson, P. Gloersen, and H. J. Zwally. 1996. Sea ice concentrations from Nimbus-7 SMMR and DMSP SSM/I passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0051.html. Background: Monthly climatologies of sea ice concentration represent mean ice concentration percentages for each month over the entire time period 1979-2007, which is generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances at a grid cell size of 25 x 25 km using the NASA Team algorithm developed by the Oceans and Ice Branch, Laboratory for Hydrospheric Processes at NASA Goddard Space Flight Center (GSFC). A threshold of 15 percent concentration has been applied to the monthly climatologies.</ows:Abstract> <Identifier>sea_ice_concentration_12</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Arctic Ocean</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Oceans</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Sea Ice</ows:Keyword> <ows:Keyword>Sea Ice Concentration</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>316 332</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-3961770.085 -3961769.906</ows:LowerCorner> <ows:UpperCorner>3961769.894 4362961.971</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.999998745864 34.9037152643753</ows:LowerCorner> <ows:UpperCorner>178.959571606408 53.7717181062498</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Liston, G.E., and M. Sturm. 1998. Global seasonal snow classification system. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/arcss045.html. 31 August 2006. Background: Based on the physical properties of the snow (depth, density, thermal conductivity, number of layers, degree of wetting, etc.), the world's seasonal snow covers are divided into six classes, plus classes for water and ice fields. Each class is defined by its physical properties, then empirically related to climate using three variables (precipitation, wind, and air temperature). A vegetation proxy was used for wind data: tall vegetation equals low wind, short vegetation equals high wind.</ows:Title> <ows:Abstract>Liston, G.E., and M. Sturm. 1998. Global seasonal snow classification system. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/arcss045.html. 31 August 2006. Background: Based on the physical properties of the snow (depth, density, thermal conductivity, number of layers, degree of wetting, etc.), the world's seasonal snow covers are divided into six classes, plus classes for water and ice fields. Each class is defined by its physical properties, then empirically related to climate using three variables (precipitation, wind, and air temperature). A vegetation proxy was used for wind data: tall vegetation equals low wind, short vegetation equals high wind.</ows:Abstract> <Identifier>seasonal_snow_classification</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Classification</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_01</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_02</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_03</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_04</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_05</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_06</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_07</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_08</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_09</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_10</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_11</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Title> <ows:Abstract>Armstrong, R. L., and M. J. Brodzik. 2005. Northern Hemisphere EASE-Grid weekly snow cover and sea ice extent version 3. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0046.html. 02 August 2006. Background: Snow cover extent is based on the digital NOAA-NESDIS Weekly Northern Hemisphere Snow Charts, revised by D. Robinson (Rutgers University) (http://climate.rutgers.edu/snowcover/) and regridded to the EASE-Grid. The original NOAA-NESDIS weekly snow charts are derived from the manual interpretation of AVHRR, GOES, and other visible-band satellite data.</ows:Abstract> <Identifier>snow_extent_12</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_01</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_02</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_03</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_04</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_05</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_06</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_07</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_08</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_09</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_10</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_11</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Title> <ows:Abstract>Armstrong, R.L., M.J. Brodzik, K. Knowles, and M. Savoie. 2005. Global monthly EASE-Grid snow water equivalent climatology. Boulder, CO, USA: National Snow and Ice Data Center. Digital media. Available at http://nsidc.org/data/nsidc-0271.html. 30 August 2006. Background: Global, monthly snow water equivalent (SWE) climatologies are generated from passive microwave brightness temperature data derived from Nimbus-7 Scanning Multichannel Microwave Radiometer (SMMR) and Defense Meteorological Satellite Program (DMSP) -F8, -F11 and -F13 Special Sensor Microwave/Imager (SSM/I) radiances and gridded to the Northern and Southern 25 km Equal-Area Scalable Earth Grids (EASE-Grids).</ows:Abstract> <Identifier>snow_water_equivalent_12</Identifier> <ows:Keywords> <ows:Keyword>Arctic</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Northern Hemisphere</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Cover</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>1012 1012</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-10700000 -10700000</ows:LowerCorner> <ows:UpperCorner>14700000 14700000</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.855268310333 -89.3181405304869</ows:LowerCorner> <ows:UpperCorner>178.996024534873 89.5930272089838</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Abdalati, W. 2007. Greenland ice sheet melt characteristics derived from passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital Media. Available at http://nsidc.org/data/nsidc-0218.html. 17 July 2007. Background: The ice sheet melt extent is a daily (or every-other-day, prior to August, 1987) estimate of the spatial extent of wet snow on the Greenland ice sheet derived from passive microwave satellite brightness temperature characteristics using the cross-polarized gradient ratio of Abdalati and Steffen (J. Climate, 1997). It is physically based on the changes in microwave emission characteristics observable in data from the Scanning Multi-channel Microwave Radiometer (SMMR) and the Special Sensor Microwave Imager (SSM/I). It is not a direct measure of the snow wetness, but rather is a binary indicator of the state of melt of each SMMR and SSM/I pixel on the ice sheet for each day of observation. It is, however a useful proxy for the amount of ablation that occurs on the Greenland ice sheet.</ows:Title> <ows:Abstract>Abdalati, W. 2007. Greenland ice sheet melt characteristics derived from passive microwave data. Boulder, Colorado USA: National Snow and Ice Data Center. Digital Media. Available at http://nsidc.org/data/nsidc-0218.html. 17 July 2007. Background: The ice sheet melt extent is a daily (or every-other-day, prior to August, 1987) estimate of the spatial extent of wet snow on the Greenland ice sheet derived from passive microwave satellite brightness temperature characteristics using the cross-polarized gradient ratio of Abdalati and Steffen (J. Climate, 1997). It is physically based on the changes in microwave emission characteristics observable in data from the Scanning Multi-channel Microwave Radiometer (SMMR) and the Special Sensor Microwave Imager (SSM/I). It is not a direct measure of the snow wetness, but rather is a binary indicator of the state of melt of each SMMR and SSM/I pixel on the ice sheet for each day of observation. It is, however a useful proxy for the amount of ablation that occurs on the Greenland ice sheet.</ows:Abstract> <Identifier>greenland_surface_melt</Identifier> <ows:Keywords> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Greenland</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Melt</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>114 118</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-837081.418 -1130786.327</ows:LowerCorner> <ows:UpperCorner>2031324.049 1838687.117</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.724371524912 65.0917471938267</ows:LowerCorner> <ows:UpperCorner>179.267576918496 82.2840082267087</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Bales, R.C., J.R. McConnell, E. Mosley-Thompson, and G. Lamorey. 2001. Accumulation map for the Greenland Ice Sheet: 1971-1990. Geophysical Research Letters. 28(15): 2967-2970. doi:10.1029/2000GL012052. Available at http://zero.eng.ucmerced.edu/rcbales/PARCA/. 24 October 2006. Background: An updated accumulation map for the Greenland Ice Sheet for the period 1971-1990, based on kriging of accurate in situ point estimates developed during the past decade at over 40 points (shallow ice cores) plus over 200 historical points (from snow pits, probes, shallow cores, and coastal precipitation data), shows an average water accumulation of 300 mm snow water equivalent (SWE) per year. Average uncertainty (standard deviation) in estimates of point accumulation for the interior part of the ice sheet, where the kriging drift surface is well constrained, is approximately 70 mm SWE per year, or 24% of mean accumulation. Because there are multiple cores in most regions, the regional uncertainty in accumulation should be considerably lower than the 70 mm SWE per year average uncertainty at a point. There are still many areas on the ice sheet, including northwest and southern Greenland, where annual accumulation remains poorly constrained.</ows:Title> <ows:Abstract>Bales, R.C., J.R. McConnell, E. Mosley-Thompson, and G. Lamorey. 2001. Accumulation map for the Greenland Ice Sheet: 1971-1990. Geophysical Research Letters. 28(15): 2967-2970. doi:10.1029/2000GL012052. Available at http://zero.eng.ucmerced.edu/rcbales/PARCA/. 24 October 2006. Background: An updated accumulation map for the Greenland Ice Sheet for the period 1971-1990, based on kriging of accurate in situ point estimates developed during the past decade at over 40 points (shallow ice cores) plus over 200 historical points (from snow pits, probes, shallow cores, and coastal precipitation data), shows an average water accumulation of 300 mm snow water equivalent (SWE) per year. Average uncertainty (standard deviation) in estimates of point accumulation for the interior part of the ice sheet, where the kriging drift surface is well constrained, is approximately 70 mm SWE per year, or 24% of mean accumulation. Because there are multiple cores in most regions, the regional uncertainty in accumulation should be considerably lower than the 70 mm SWE per year average uncertainty at a point. There are still many areas on the ice sheet, including northwest and southern Greenland, where annual accumulation remains poorly constrained.</ows:Abstract> <Identifier>greenland_accumulation</Identifier> <ows:Keywords> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Greenland</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> <ows:Keyword>Snow Accumulation</ows:Keyword> <ows:Keyword>Snow Water Equivalent</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>573 593</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-837081.418 -1130786.327</ows:LowerCorner> <ows:UpperCorner>2031324.049 1838687.117</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.836596092188 65.1664483438673</ows:LowerCorner> <ows:UpperCorner>179.269613064936 82.4667598139105</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Digital Elevation Model (DEM) data are a combination of European Remote-Sensing (ERS-1) and Geosat satellite radar altimetry data, Airborne Topographic Mapper (ATM) data, and photogrammetric digital height data. Ice thickness data are based on approximately 700,000 data points collected in the 1990s from a University of Kansas airborne ice penetrating radar (IPR). Nearly 30,000 data points were collected in the 1970s from a Technical University of Denmark (TUD) airborne echo sounder. Bamber subtracted the ice thickness grid from the DEM to produce a grid of bedrock elevation values.</ows:Title> <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Digital Elevation Model (DEM) data are a combination of European Remote-Sensing (ERS-1) and Geosat satellite radar altimetry data, Airborne Topographic Mapper (ATM) data, and photogrammetric digital height data. Ice thickness data are based on approximately 700,000 data points collected in the 1990s from a University of Kansas airborne ice penetrating radar (IPR). Nearly 30,000 data points were collected in the 1970s from a Technical University of Denmark (TUD) airborne echo sounder. Bamber subtracted the ice thickness grid from the DEM to produce a grid of bedrock elevation values.</ows:Abstract> <Identifier>greenland_bedrock_elevation</Identifier> <ows:Keywords> <ows:Keyword>Bedrock Elevation</ows:Keyword> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Greenland</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Ice Sheet Elevation</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>599 638</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner> <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner> <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Ice thickness data are based on approximately 700,000 data points collected in the 1990s from a University of Kansas airborne ice penetrating radar (IPR). Nearly 30,000 data points were collected in the 1970s from a Technical University of Denmark (TUD) airborne echo sounder.</ows:Title> <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Ice thickness data are based on approximately 700,000 data points collected in the 1990s from a University of Kansas airborne ice penetrating radar (IPR). Nearly 30,000 data points were collected in the 1970s from a Technical University of Denmark (TUD) airborne echo sounder.</ows:Abstract> <Identifier>greenland_ice_thickness</Identifier> <ows:Keywords> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Greenland</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Ice Sheet Thickness</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>599 638</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner> <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner> <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> <CoverageSummary> <ows:Title>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Digital Elevation Model (DEM) data are a combination of European Remote-Sensing (ERS-1) and Geosat satellite radar altimetry data, Airborne Topographic Mapper (ATM) data, and photogrammetric digital height data.</ows:Title> <ows:Abstract>Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 1: Measurement, data reduction, and errors. Journal of Geophysical Research. 106(D24): 33773-33780. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Bamber, J.L., R.L. Layberry, S.P. Gogenini. 2001. A new ice thickness and bed data set for the Greenland ice sheet 2: Relationship between dynamics and basal topography. Journal of Geophysical Research. 106(D24): 33781-33788. Data provided by the National Snow and Ice Data Center DAAC, University of Colorado, Boulder, CO, USA. Available at http://nsidc.org/data/nsidc-0092.html. 25 October 2006. Background: Digital Elevation Model (DEM) data are a combination of European Remote-Sensing (ERS-1) and Geosat satellite radar altimetry data, Airborne Topographic Mapper (ATM) data, and photogrammetric digital height data.</ows:Abstract> <Identifier>greenland_elevation</Identifier> <ows:Keywords> <ows:Keyword>Cryosphere</ows:Keyword> <ows:Keyword>Earth Science</ows:Keyword> <ows:Keyword>Greenland</ows:Keyword> <ows:Keyword>Ice Sheets</ows:Keyword> <ows:Keyword>Ice Sheet Elevation</ows:Keyword> <ows:Keyword>Polar</ows:Keyword> </ows:Keywords> <ows:BoundingBox crs="urn:ogc:def:crs:OGC::imageCRS" dimensions="2"> <ows:LowerCorner>0 0</ows:LowerCorner> <ows:UpperCorner>599 638</ows:UpperCorner> </ows:BoundingBox> <ows:BoundingBox crs="urn:ogc:def:crs:EPSG::32661" dimensions="2"> <ows:LowerCorner>-825267.555 -1151631.237</ows:LowerCorner> <ows:UpperCorner>2173789.735 2041572.863</ows:UpperCorner> </ows:BoundingBox> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-179.12303011456 63.0415709487752</ows:LowerCorner> <ows:UpperCorner>179.982766500967 82.4151433839318</ows:UpperCorner> </ows:WGS84BoundingBox> <SupportedFormat>image/tiff</SupportedFormat> <SupportedCRS>urn:ogc:def:crs:EPSG::32661</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::4326</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3408</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3410</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3411</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3413</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3571</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3572</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3573</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3574</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3575</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3576</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3973</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3975</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::32624</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::3857</SupportedCRS> <SupportedCRS>urn:ogc:def:crs:EPSG::900913</SupportedCRS> </CoverageSummary> </Contents> </Capabilities> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wfs_CUZK_GetCapabilities_2_0_0.xml������������������������������������0000664�0000000�0000000�00000031020�13217064120�0024206�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="utf-8"?> <WFS_Capabilities xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:fes="http://www.opengis.net/fes/2.0" version="2.0.0" xmlns="http://www.opengis.net/wfs/2.0"> <ows:ServiceIdentification> <ows:Title>CZE INSPIRE Download Service - Cadastral Parcels</ows:Title> <ows:Abstract>Cadastral Parcels - INSPIRE themes</ows:Abstract> <ows:ServiceType>OGC WFS</ows:ServiceType> <ows:ServiceTypeVersion>2.0.0</ows:ServiceTypeVersion> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>Czech Office for Surveying, Mapping and Cadastre</ows:ProviderName> <ows:ProviderSite xlink:type="simple" xlink:href="www.cuzk.cz" /> <ows:ServiceContact> <ows:ContactInfo> <ows:Phone> <ows:Voice>+420284041550</ows:Voice> </ows:Phone> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> <ows:Post xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="DescribeFeatureType"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> <ows:Post xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="ListStoredQueries"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> <ows:Post xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="DescribeStoredQueries"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> <ows:Post xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="GetFeature"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> <ows:Post xlink:type="simple" xlink:href="http://services.cuzk.cz/wfs/inspire-cp-wfs.asp" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Parameter name="AcceptVersions"> <ows:AllowedValues> <ows:Value>2.2.0</ows:Value> </ows:AllowedValues> </ows:Parameter> <ows:Constraint name="ImplementsBasicWFS"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsTransactionalWFS"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsLockingWFS"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="KVPEncoding"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="XMLEncoding"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="SOAPEncoding"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsInheritance"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsRemoteResolve"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsResultPaging"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsStandardJoins"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsSpatialJoins"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsTemporalJoins"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ImplementsFeatureVersioning"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> <ows:Constraint name="ManageStoredQueries"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </ows:Constraint> </ows:OperationsMetadata> <FeatureTypeList> <FeatureType xmlns:CP="urn:x-inspire:specification:gmlas:CadastralParcels:3.0"> <Name>CP:CadastralBoundary</Name> <Title>Cadastral Parcel Boundaries</Title> <Abstract>Cadastral Parcel Boundaries</Abstract> <ows:Keywords> <ows:Keyword>Cadastral Parcel Boundaries</ows:Keyword> </ows:Keywords> <DefaultCRS>urn:ogc:def:crs:EPSG::102067</DefaultCRS> <OtherCRS>urn:ogc:def:crs:EPSG::102066</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2065</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5221</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5514</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5224</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5225</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3395</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3857</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3785</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::900913</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32632</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32633</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32634</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28403</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28404</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2493</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2494</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4326</OtherCRS> <OtherCRS>urn:ogc:def:crs:OGC::CRS84</OtherCRS> <OtherCRS>CRS:84</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4258</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3035</OtherCRS> <OutputFormats> <Format>text/xml; subtype=gml/3.2.1</Format> </OutputFormats> <ows:WGS84BoundingBox> <ows:LowerCorner>10 43</ows:LowerCorner> <ows:UpperCorner>22 55</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType xmlns:CP="urn:x-inspire:specification:gmlas:CadastralParcels:3.0"> <Name>CP:CadastralParcel</Name> <Title>Cadastral parcel polygons</Title> <Abstract>Cadastral parcel polygons</Abstract> <ows:Keywords> <ows:Keyword>Cadastral parcel polygons</ows:Keyword> </ows:Keywords> <DefaultCRS>urn:ogc:def:crs:EPSG::102067</DefaultCRS> <OtherCRS>urn:ogc:def:crs:EPSG::102066</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2065</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5221</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5514</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5224</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5225</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3395</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3857</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3785</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::900913</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32632</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32633</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32634</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28403</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28404</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2493</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2494</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4326</OtherCRS> <OtherCRS>urn:ogc:def:crs:OGC::CRS84</OtherCRS> <OtherCRS>CRS:84</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4258</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3035</OtherCRS> <OutputFormats> <Format>text/xml; subtype=gml/3.2.1</Format> </OutputFormats> <ows:WGS84BoundingBox> <ows:LowerCorner>10 43</ows:LowerCorner> <ows:UpperCorner>22 55</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType xmlns:CP="urn:x-inspire:specification:gmlas:CadastralParcels:3.0"> <Name>CP:CadastralZoning</Name> <Title>Cadastral Zoning polygons</Title> <Abstract>Cadastral Zoning polygons</Abstract> <ows:Keywords> <ows:Keyword>Cadastral Zoning polygons</ows:Keyword> </ows:Keywords> <DefaultCRS>urn:ogc:def:crs:EPSG::102067</DefaultCRS> <OtherCRS>urn:ogc:def:crs:EPSG::102066</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2065</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5221</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5514</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5224</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::5225</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3395</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3857</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3785</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::900913</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32632</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32633</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::32634</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28403</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::28404</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2493</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::2494</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4326</OtherCRS> <OtherCRS>urn:ogc:def:crs:OGC::CRS84</OtherCRS> <OtherCRS>CRS:84</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::4258</OtherCRS> <OtherCRS>urn:ogc:def:crs:EPSG::3035</OtherCRS> <OutputFormats> <Format>text/xml; subtype=gml/3.2.1</Format> </OutputFormats> <ows:WGS84BoundingBox> <ows:LowerCorner>10 43</ows:LowerCorner> <ows:UpperCorner>22 55</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> </FeatureTypeList> <fes:Filter_Capabilities> <fes:Conformance> <fes:Constraint name="ImplementsQuery"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsAdHocQuery"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsFunctions"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinStandardFilter"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsStandardFilter"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinSpatialFilter"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSpatialFilter"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsMinTemporalFilter"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsTemporalFilter"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsVersionNav"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsSorting"> <ows:NoValues /> <ows:DefaultValue>TRUE</ows:DefaultValue> </fes:Constraint> <fes:Constraint name="ImplementsExtendedOperators"> <ows:NoValues /> <ows:DefaultValue>FALSE</ows:DefaultValue> </fes:Constraint> </fes:Conformance> </fes:Filter_Capabilities> </WFS_Capabilities> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wfs_HSRS_GetCapabilities_1_1_0.xml������������������������������������0000664�0000000�0000000�00000025446�13217064120�0024230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="windows-1250"?> <wfs:WFS_Capabilities xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:ows="http://www.opengis.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ogc="http://www.opengis.net/ogc" xmlns="http://www.opengis.net/wfs" version="1.1.0" xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd"> <ows:ServiceIdentification> <ows:Title>Help Service Gazeteer</ows:Title> <ows:Abstract>Vyhledavani sidel WFS</ows:Abstract> <ows:Keywords> <ows:Keyword>Czech republic</ows:Keyword> <ows:Keyword>gazeeteer</ows:Keyword> </ows:Keywords> <ows:ServiceType codeSpace="OGC">OGC WFS</ows:ServiceType> <ows:ServiceTypeVersion>1.1.0</ows:ServiceTypeVersion> <ows:Fees>none</ows:Fees> <ows:AccessConstraints>for non profit use</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>Help Service Remote Sensing, ltd.</ows:ProviderName> <ows:ProviderSite xlink:type="simple" xlink:href="http://www.hsrs.cz"/> <ows:ServiceContact> <ows:IndividualName>Stanislav Hol</ows:IndividualName> <ows:PositionName/> <!--WARNING: Optional metadata "ows_contactposition" was missing for ows:PositionName--> <ows:ContactInfo> <ows:Phone> <ows:Voice/> <!--WARNING: Optional metadata "ows_contactvoicetelephone" was missing for ows:Voice--> <ows:Facsimile/> <!--WARNING: Optional metadata "ows_contactfacsimiletelephone" was missing for ows:Facsimile--> </ows:Phone> <ows:Address> <ows:DeliveryPoint/> <!--WARNING: Optional metadata "ows_address" was missing for ows:DeliveryPoint--> <ows:City/> <!--WARNING: Optional metadata "ows_city" was missing for ows:City--> <ows:AdministrativeArea/> <!--WARNING: Optional metadata "ows_stateorprovince" was missing for ows:AdministrativeArea--> <ows:PostalCode/> <!--WARNING: Optional metadata "ows_postcode" was missing for ows:PostalCode--> <ows:Country/> <!--WARNING: Optional metadata "ows_country" was missing for ows:Country--> <ows:ElectronicMailAddress/> <!--WARNING: Optional metadata "ows_contactelectronicmailaddress" was missing for ows:ElectronicMailAddress--> </ows:Address> <ows:OnlineResource xlink:type="simple" xlink:href="http://www.hsrs.cz"/> <ows:HoursOfService/> <!--WARNING: Optional metadata "ows_hoursofservice" was missing for ows:HoursOfService--> <ows:ContactInstructions/> <!--WARNING: Optional metadata "ows_contactinstructions" was missing for ows:ContactInstructions--> </ows:ContactInfo> <ows:Role/> <!--WARNING: Optional metadata "ows_role" was missing for ows:Role--> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> <ows:Post xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="service"> <ows:Value>WFS</ows:Value> </ows:Parameter> <ows:Parameter name="AcceptVersions"> <ows:Value>1.0.0</ows:Value> <ows:Value>1.1.0</ows:Value> </ows:Parameter> <ows:Parameter name="AcceptFormats"> <ows:Value>text/xml</ows:Value> </ows:Parameter> </ows:Operation> <ows:Operation name="DescribeFeatureType"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> <ows:Post xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="outputFormat"> <ows:Value>XMLSCHEMA</ows:Value> <ows:Value>text/xml; subtype=gml/2.1.2</ows:Value> <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value> </ows:Parameter> </ows:Operation> <ows:Operation name="GetFeature"> <ows:DCP> <ows:HTTP> <ows:Get xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> <ows:Post xlink:type="simple" xlink:href="http://gis.bnhelp.cz/ows/crwfs?"/> </ows:HTTP> </ows:DCP> <ows:Parameter name="resultType"> <ows:Value>results</ows:Value> <ows:Value>hits</ows:Value> </ows:Parameter> <ows:Parameter name="outputFormat"> <ows:Value>text/xml; subtype=gml/3.1.1</ows:Value> </ows:Parameter> </ows:Operation> <ows:Constraint name="DefaultMaxFeatures"> <ows:Value>512</ows:Value> </ows:Constraint> </ows:OperationsMetadata> <FeatureTypeList> <Operations> <Operation>Query</Operation> </Operations> <FeatureType> <Name>nuts1</Name> <Title>NUTS1</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-73.2634725607418 -21.3428428333117</ows:LowerCorner> <ows:UpperCorner>120.131330581725 83.6274190882078</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>states</Name> <Title>states</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-180 -89.9</ows:LowerCorner> <ows:UpperCorner>180 83.674733</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>nuts2</Name> <Title>NUTS2</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-73.2634725607418 -21.3428428333117</ows:LowerCorner> <ows:UpperCorner>120.131330581725 83.6274190882078</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>nuts3</Name> <Title>NUTS2</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>-73.2634725607418 -21.3428428333117</ows:LowerCorner> <ows:UpperCorner>120.131330581725 83.6274190882078</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>orp</Name> <Title>Obce s rozsirenou pusobnosti</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>12.0971913568792 48.5542371331248</ows:LowerCorner> <ows:UpperCorner>18.858466675767 51.055771864485</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>okresy</Name> <Title>Okresy CR</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>12.0971913568792 48.5542371331248</ows:LowerCorner> <ows:UpperCorner>18.858297034807 51.055771864485</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>sidla</Name> <Title>Sidla CR</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>12.0696013961853 48.529730261414</ows:LowerCorner> <ows:UpperCorner>18.973334328945 51.0387911057136</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> <FeatureType> <Name>kraje</Name> <Title>Kraje CR</Title> <DefaultSRS>urn:ogc:def:crs:EPSG::4326</DefaultSRS> <OtherSRS>urn:ogc:def:crs:EPSG::2065</OtherSRS> <OutputFormats> <Format>text/xml; subtype=gml/3.1.1</Format> </OutputFormats> <ows:WGS84BoundingBox dimensions="2"> <ows:LowerCorner>12.0977321962419 48.5542371331248</ows:LowerCorner> <ows:UpperCorner>18.8505002447346 51.0551785667194</ows:UpperCorner> </ows:WGS84BoundingBox> </FeatureType> </FeatureTypeList> <ogc:Filter_Capabilities> <ogc:Spatial_Capabilities> <ogc:GeometryOperands> <ogc:GeometryOperand>gml:Point</ogc:GeometryOperand> <ogc:GeometryOperand>gml:LineString</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Polygon</ogc:GeometryOperand> <ogc:GeometryOperand>gml:Envelope</ogc:GeometryOperand> </ogc:GeometryOperands> <ogc:SpatialOperators> <ogc:SpatialOperator name="Equals"/> <ogc:SpatialOperator name="Disjoint"/> <ogc:SpatialOperator name="Touches"/> <ogc:SpatialOperator name="Within"/> <ogc:SpatialOperator name="Overlaps"/> <ogc:SpatialOperator name="Crosses"/> <ogc:SpatialOperator name="Intersects"/> <ogc:SpatialOperator name="Contains"/> <ogc:SpatialOperator name="DWithin"/> <ogc:SpatialOperator name="Beyond"/> <ogc:SpatialOperator name="BBOX"/> </ogc:SpatialOperators> </ogc:Spatial_Capabilities> <ogc:Scalar_Capabilities> <ogc:LogicalOperators/> <ogc:ComparisonOperators> <ogc:ComparisonOperator>LessThan</ogc:ComparisonOperator> <ogc:ComparisonOperator>GreaterThan</ogc:ComparisonOperator> <ogc:ComparisonOperator>LessThanEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>GreaterThanEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>EqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>NotEqualTo</ogc:ComparisonOperator> <ogc:ComparisonOperator>Like</ogc:ComparisonOperator> <ogc:ComparisonOperator>Between</ogc:ComparisonOperator> </ogc:ComparisonOperators> </ogc:Scalar_Capabilities> <ogc:Id_Capabilities> <ogc:EID/> <ogc:FID/> </ogc:Id_Capabilities> </ogc:Filter_Capabilities> </wfs:WFS_Capabilities> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms-aasggeothermal-orwellheads-130.xml��������������������������������0000664�0000000�0000000�00000015172�13217064120�0025174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:esri_wms="http://www.esri.com/wms" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.esri.com/wms http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?version=1.3.0%26service=WMS%26request=GetSchemaExtension"> <Service> <Name><![CDATA[WMS]]></Name> <Title><![CDATA[aasggeothermal_ORWellHeaders]]></Title> <Abstract><![CDATA[WellHeaders in the state of Oregon]]></Abstract> <KeywordList><Keyword><![CDATA[Well Headers, Well Log Depth, Geothermal, Oregon]]></Keyword></KeywordList> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson><![CDATA[Geoinformatics]]></ContactPerson> <ContactOrganization><![CDATA[Arizona Geological Survey]]></ContactOrganization> </ContactPersonPrimary> <ContactPosition><![CDATA[Geoinformatics Manager]]></ContactPosition> <ContactAddress> <AddressType><![CDATA[Postal]]></AddressType> <Address><![CDATA[416 W. Congress St., Suite 100]]></Address> <City><![CDATA[Tucson]]></City> <StateOrProvince><![CDATA[AZ]]></StateOrProvince> <PostCode><![CDATA[85701]]></PostCode> <Country><![CDATA[US]]></Country> </ContactAddress> <ContactVoiceTelephone><![CDATA[520-770-3500]]></ContactVoiceTelephone> <ContactFacsimileTelephone><![CDATA[]]></ContactFacsimileTelephone> <ContactElectronicMailAddress><![CDATA[metadata@usgin.org]]></ContactElectronicMailAddress> </ContactInformation> <Fees><![CDATA[none]]></Fees> <AccessConstraints><![CDATA[]]></AccessConstraints> <MaxWidth>4000</MaxWidth> <MaxHeight>4096</MaxHeight> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <Format>text/xml</Format> <DCPType> <HTTP><Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?"/></Get></HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/bmp</Format> <Format>image/jpeg</Format> <Format>image/tiff</Format> <Format>image/png</Format> <Format>image/png8</Format> <Format>image/png24</Format> <Format>image/png32</Format> <Format>image/gif</Format> <Format>image/svg+xml</Format> <DCPType> <HTTP><Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?"/></Get></HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>application/vnd.esri.wms_raw_xml</Format> <Format>application/vnd.esri.wms_featureinfo_xml</Format> <Format>application/vnd.ogc.wms_xml</Format> <Format>text/xml</Format> <Format>text/html</Format> <Format>text/plain</Format> <DCPType> <HTTP><Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?"/></Get></HTTP> </DCPType> </GetFeatureInfo> <esri_wms:GetStyles> <Format>application/vnd.ogc.sld+xml</Format> <DCPType> <HTTP><Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?"/></Get></HTTP> </DCPType> </esri_wms:GetStyles> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> <Format>application/vnd.ogc.se_blank</Format> <Format>text/xml</Format> <Format>XML</Format> </Exception> <Layer> <Title><![CDATA[ORWellHeaders]]></Title> <CRS>CRS:84</CRS> <CRS>EPSG:4326</CRS> <CRS>EPSG:3857</CRS> <!-- alias 3857 --> <CRS>EPSG:102100</CRS> <EX_GeographicBoundingBox><westBoundLongitude>-124.399896</westBoundLongitude><eastBoundLongitude>-116.779783</eastBoundLongitude><southBoundLatitude>41.999877</southBoundLatitude><northBoundLatitude>46.162222</northBoundLatitude></EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-124.399896" miny="41.999877" maxx="-116.779783" maxy="46.162222"/> <BoundingBox CRS="EPSG:4326" minx="41.999877" miny="-124.399896" maxx="46.162222" maxy="-116.779783"/> <BoundingBox CRS="EPSG:3857" minx="-13848133.077456" miny="5160961.019264" maxx="-12999865.978509" maxy="5806383.628162"/> <Layer queryable="1"> <Name>Wellheader</Name> <Title><![CDATA[Wellheader]]></Title> <Abstract><![CDATA[Wellheader]]></Abstract> <CRS>CRS:84</CRS> <CRS>EPSG:4326</CRS> <CRS>EPSG:3857</CRS> <!-- alias 3857 --> <CRS>EPSG:102100</CRS> <EX_GeographicBoundingBox><westBoundLongitude>-124.399896</westBoundLongitude><eastBoundLongitude>-116.779783</eastBoundLongitude><southBoundLatitude>41.999877</southBoundLatitude><northBoundLatitude>46.162222</northBoundLatitude></EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-124.399896" miny="41.999877" maxx="-116.779783" maxy="46.162222"/> <BoundingBox CRS="EPSG:4326" minx="41.999877" miny="-124.399896" maxx="46.162222" maxy="-116.779783"/> <BoundingBox CRS="EPSG:3857" minx="-13848133.077456" miny="5160961.019264" maxx="-12999865.978509" maxy="5806383.628162"/> <FeatureListURL> <Format>text/xml</Format> <OnlineResource xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink"/> </FeatureListURL> <Style> <Name>default</Name> <Title>Wellheader</Title> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xlink:href="http://services.azgs.az.gov/arcgis/services/aasggeothermal/ORWellHeaders/MapServer/WmsServer?request=GetLegendGraphic%26version=1.3.0%26format=image/png%26layer=Wellheader" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink" /> </LegendURL> </Style> </Layer> </Layer> </Capability> </WMS_Capabilities> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_JPLCapabilities.xml�����������������������������������������������0000664�0000000�0000000�00000054223�13217064120�0022422�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="UTF-8" standalone="no" ?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://wms.jpl.nasa.gov/WMS_MS_Capabilities.dtd" [ <!ELEMENT VendorSpecificCapabilities EMPTY> ]> <WMT_MS_Capabilities version="1.1.1"> <Service> <Name>OGC:WMS</Name> <Title>JPL Global Imagery Service</Title> <Abstract>WMS Server maintained by JPL, worldwide satellite imagery.</Abstract> <KeywordList> <Keyword>ImageryBaseMapsEarthCover</Keyword> <Keyword>Imagery</Keyword> <Keyword>BaseMaps</Keyword> <Keyword>EarthCover</Keyword> <Keyword>JPL</Keyword> <Keyword>Jet Propulsion Laboratory</Keyword> <Keyword>Landsat</Keyword> <Keyword>WMS</Keyword> <Keyword>SLD</Keyword> <Keyword>Global</Keyword> </KeywordList> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://OnEarth.jpl.nasa.gov/index.html" /> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Lucian Plesea</ContactPerson> <ContactOrganization>JPL</ContactOrganization> </ContactPersonPrimary> <ContactElectronicMailAddress>lucian.plesea@jpl.nasa.gov</ContactElectronicMailAddress> </ContactInformation> <Fees>none</Fees> <AccessConstraints>Server is load limited</AccessConstraints> </Service> <Capability> <Request> <GetTileService> <Format>text/xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://wms.jpl.nasa.gov/wms.cgi?" /> </Get> </HTTP> </DCPType> </GetTileService> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://wms.jpl.nasa.gov/wms.cgi?" /> </Get> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/jpeg</Format> <Format>image/png</Format> <Format>image/geotiff</Format> <Format>image/tiff</Format> <Format>application/vnd.google-earth.kml+xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://wms.jpl.nasa.gov/wms.cgi?" /> </Get> </HTTP> </DCPType> </GetMap> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> </Exception> <VendorSpecificCapabilities /> <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" /> <Layer queryable="0"> <Title>OnEarth Web Map Server</Title> <SRS>EPSG:4326</SRS> <SRS>AUTO:42003</SRS> <CRS>EPSG:4326</CRS> <CRS>AUTO:42003</CRS> <Layer queryable="0"> <Name>global_mosaic</Name> <Title>WMS Global Mosaic, pan sharpened</Title> <Abstract> Release 2 of the WMS Global Mosaic, a seamless mosaic of Landsat7 scenes. Spatial resolution is 0.5 second for the pan band, 1 second for the visual and near-IR bands and 2 second for the thermal bands Use this layer to request individual grayscale bands. The default styles may have gamma, sharpening and saturation filters applied. The grayscale styles have no extra processing applied, and will return the image data as stored on the server. The source dataset is part of the NASA Scientific Data Purchase, and contains scenes acquired in 1999-2003. This layer provides pan-sharpened images, where the pan band is used for the image brightness regardless of the color combination requested. </Abstract> <LatLonBoundingBox minx="-180" miny="-60" maxx="180" maxy="84"/> <MetadataURL type="FGDC"> <Format>text/xml</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://onearth.jpl.nasa.gov/WAF/WMS_GM.xml" /> </MetadataURL> <Style> <Name>pseudo</Name> <Title>(default) Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping), gamma 1.5</Title> </Style> <Style> <Name>pseudo_low</Name> <Title>Pseudo-color image, pan sharpened (Uses IR and Visual bands, 542 mapping)</Title> </Style> <Style> <Name>pseudo_bright</Name> <Title>Pseudo-color image (Uses IR and Visual bands, 542 mapping), gamma 1.5</Title> </Style> <Style> <Name>visual</Name> <Title>Real-color image, pan sharpened (Uses the visual bands, 321 mapping), gamma 1.5</Title> </Style> <Style> <Name>visual_low</Name> <Title>Real-color image, pan sharpened (Uses the visual bands, 321 mapping)</Title> </Style> <Style> <Name>visual_bright</Name> <Title>Real-color image (Uses the visual bands, 321 mapping), gamma 1.5</Title> </Style> <ScaleHint min="10" max="10000"/> <MinScaleDenominator>20000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>global_mosaic_base</Name> <Title>WMS Global Mosaic, not pan sharpened</Title> <Abstract> Release 2 of the WMS Global Mosaic, a seamless mosaic of Landsat7 scenes. Spatial resolution is 0.5 second for the pan band, 1 second for the visual and near-IR bands and 2 second for the thermal bands Use this layer to request individual grayscale bands. The default styles may have gamma, sharpening and saturation filters applied. The source dataset is part of the NASA Scientific Data Purchase, and contains scenes acquired in 1999-2003. Release 2. </Abstract> <LatLonBoundingBox minx="-180" miny="-60" maxx="180" maxy="84"/> <Style> <Name>pseudo</Name> <Title>Pseudo-color image (Uses IR and Visual bands, 542 mapping) (default)</Title> </Style> <Style> <Name>visual</Name> <Title>Real-color image (Uses the visual bands, 321 mapping)</Title> </Style> <Style> <Name>Pan</Name> <Title>Pan-chromatic band, grayscale</Title> </Style> <Style> <Name>Red</Name> <Title>Visual Red band, grayscale</Title> </Style> <Style> <Name>Green</Name> <Title>Visual Green band, grayscale</Title> </Style> <Style> <Name>Blue</Name> <Title>Visual Blue band, grayscale</Title> </Style> <Style> <Name>IR1</Name> <Title> Near IR band 1, (Landsat band 4), grayscale</Title> </Style> <Style> <Name>IR2</Name> <Title> Near IR band 2, (Landsat band 5), grayscale</Title> </Style> <Style> <Name>IR3</Name> <Title> Near IR band 2, (Landsat band 7), grayscale</Title> </Style> <Style> <Name>ThL</Name> <Title> Thermal band, low gain, grayscale</Title> </Style> <Style> <Name>ThH</Name> <Title> Thermal band, high gain, grayscale</Title> </Style> <ScaleHint min="10" max="10000"/> <MinScaleDenominator>20000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>us_landsat_wgs84</Name> <Title>CONUS mosaic of 1990 MRLC dataset</Title> <Abstract> CONUS seamless mosaic of Landsat5 scenes. Maximum resolution is 1 arc-second. The default styles may have gamma, sharpening and saturation filters applied. The source dataset is part of the MRLC 1990 dataset. This layer is not precisely geo-referenced! </Abstract> <LatLonBoundingBox minx="-127" miny="23" maxx="-66" maxy="50"/> <Style> <Name>pseudo</Name> <Title>Pseudo-color image (Uses IR and Visual bands, 542 mapping)</Title> </Style> <Style> <Name>visual</Name> <Title>Real-color image (Uses the visual bands, 321 mapping)</Title> </Style> <Style> <Name>Red</Name> <Title>Visual Red band, grayscale</Title> </Style> <Style> <Name>Green</Name> <Title>Visual Green band, grayscale</Title> </Style> <Style> <Name>Blue</Name> <Title>Visual Blue band, grayscale</Title> </Style> <Style> <Name>IR1</Name> <Title> Near IR band 1, (Landsat band 4), grayscale</Title> </Style> <Style> <Name>IR2</Name> <Title> Near IR band 2, (Landsat band 5), grayscale</Title> </Style> <Style> <Name>IR3</Name> <Title> Near IR band 2, (Landsat band 7), grayscale</Title> </Style> <ScaleHint min="20" max="10000"/> </Layer> <Layer queryable="0"> <Name>srtm_mag</Name> <Title>SRTM reflectance magnitude, 30m</Title> <Abstract> This is the radar reflectance image produced by the SRTM mission. It is the best available snapshot of the surface of the earth, being the highest resolution image collected in the shortest ammount of time, with near-global 30m coverage collected during an 11-day Endeavour mission, in February of 2000. Five basic bands are available as WMS styles, ss1, ss2, ss3 and ss4 being SRTM image subswath averages, the "all" style being an average of the four subswath composites. The "default" style is derived from the "all" band, using an arbitrary color map to make more detail visible. The subswath composites also available as WMS bands, band 0 correspoinding to ss1, 1 to "ss2", 2 to "ss3", 3 to "ss4" and 5 to "all". A radar image has little in common with a visual image, depending mostly on the material and orientation of the object. Areas with low detail such as lakes and sand tend to have no reflection, and very steep terrain can obscure certain areas from the side look ing SRTM instrument, both fenomena generating voids in the SRTM reflectance image. Urban areas tend to have stronger reflectance. The banding artifacts still visible in the images are the result of the combination of data from multiple orbits or are intrinsic to the SRTM instrument. </Abstract> <LatLonBoundingBox minx="-180" miny="-55" maxx="180" maxy="60"/> <Style> <Name>default</Name> <Title>Arbitrary color image of the SRTM averaged reflectance</Title> </Style> <Style> <Name>all</Name> <Title>SRTM average reflectance, grayscale</Title> </Style> <Style> <Name>ss1</Name> <Title>SRTM average reflectance of subswath 1 data</Title> </Style> <Style> <Name>ss2</Name> <Title>SRTM average reflectance of subswath 2 data</Title> </Style> <Style> <Name>ss3</Name> <Title>SRTM average reflectance of subswath 3 data</Title> </Style> <Style> <Name>ss4</Name> <Title>SRTM average reflectance of subswath 4 data</Title> </Style> <ScaleHint min="10" max="10000"/> <MinScaleDenominator>20000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>daily_planet</Name> <Title>Current global view of the earth, morning</Title> <Abstract> A contiunously updating composite of visual images from TERRA MODIS scenes, see http://modis.gsfc.nasa.gov for details about MODIS. This dataset is built local on the OnEarth server, it updates as soon as scenes are available, usually with a 6 to 24 hour delay from real time. Images are produced from MODIS scenes using the HDFLook application. Base resolution is 8 arcseconds per pixel. The WMS "time" dimension can be used to retrieve past data, by using the YYYY-MM-DD notation. </Abstract> <LatLonBoundingBox minx="-180" miny="-72" maxx="180" maxy="72" /> <Dimension name="time" units="ISO8601"/> <Extent name="time">2007-12-01/2010-03-20/P1D</Extent> <Style> <Name>default</Name> <Title>visual</Title> </Style> <ScaleHint min="125" max="10000" /> </Layer> <Layer queryable="0"> <Name>daily_afternoon</Name> <Title>Current global view of the earth in the afternoon</Title> <Abstract> A contiunously updating composite of visual images from AQUA MODIS scenes, see http://modis.gsfc.nasa.gov for details about MODIS. This dataset is built local on the OnEarth server, it updates as soon as scenes are available, usually with a 6 to 24 hour delay from real time. Images are produced from MODIS scenes using the HDFLook application. Base resolution is 8 arcseconds per pixel. The WMS "time" dimension can be used to retrieve past data, by using the YYYY-MM-DD notation. </Abstract> <LatLonBoundingBox minx="-180" miny="-72" maxx="180" maxy="72" /> <Dimension name="time" units="ISO8601"/> <Extent name="time">2008-12-01/2010-03-20/P1D</Extent> <Style> <Name>default</Name> <Title>visual</Title> </Style> <ScaleHint min="125" max="10000" /> </Layer> <Layer queryable="0"> <Name>BMNG</Name> <Title>Blue Marble Next Generation, Global MODIS derived image</Title> <Abstract> A set of twelve images built from MODIS data, one for each month of 2004. The native resolution is 15 arcseconds, native size is 86400x43200 pixels. For each month, three versions are available from this server. The versions with land topography and bathymetry shading are named after the month they represent. The styles with names prefixed by _nb have land topography shading but No Bathymetry. The styles with names prefixed by _ns have No extra Shading. </Abstract> <LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90" /> <Style><Name>default</Name><Title>October</Title></Style> <Style><Name>Jan</Name><Title>January</Title></Style> <Style><Name>Feb</Name><Title>February</Title></Style> <Style><Name>Mar</Name><Title>March</Title></Style> <Style><Name>Apr</Name><Title>April</Title></Style> <Style><Name>May</Name><Title>May</Title></Style> <Style><Name>Jun</Name><Title>June</Title></Style> <Style><Name>Jul</Name><Title>July</Title></Style> <Style><Name>Aug</Name><Title>August</Title></Style> <Style><Name>Sep</Name><Title>September</Title></Style> <Style><Name>Oct</Name><Title>October</Title></Style> <Style><Name>Nov</Name><Title>November</Title></Style> <Style><Name>Dec</Name><Title>December</Title></Style> <Style><Name>Jan_nb</Name><Title>January, no bathymetry shading</Title></Style> <Style><Name>Feb_nb</Name><Title>February, no bathymetry shading</Title></Style> <Style><Name>Mar_nb</Name><Title>March, no bathymetry shading</Title></Style> <Style><Name>Apr_nb</Name><Title>April, no bathymetry shading</Title></Style> <Style><Name>May_nb</Name><Title>May, no bathymetry shading</Title></Style> <Style><Name>Jun_nb</Name><Title>June, no bathymetry shading</Title></Style> <Style><Name>Jul_nb</Name><Title>July, no bathymetry shading</Title></Style> <Style><Name>Aug_nb</Name><Title>August, no bathymetry shading</Title></Style> <Style><Name>Sep_nb</Name><Title>September, no bathymetry shading</Title></Style> <Style><Name>Oct_nb</Name><Title>October, no bathymetry shading</Title></Style> <Style><Name>Nov_nb</Name><Title>November, no bathymetry shading</Title></Style> <Style><Name>Dec_nb</Name><Title>December, no bathymetry shading</Title></Style> <Style><Name>Jan_ns</Name><Title>January, no shading</Title></Style> <Style><Name>Feb_ns</Name><Title>February, no shading</Title></Style> <Style><Name>Mar_ns</Name><Title>March, no shading</Title></Style> <Style><Name>Apr_ns</Name><Title>April, no shading</Title></Style> <Style><Name>May_ns</Name><Title>May, no shading</Title></Style> <Style><Name>Jun_ns</Name><Title>June, no shading</Title></Style> <Style><Name>Jul_ns</Name><Title>July, no shading</Title></Style> <Style><Name>Aug_ns</Name><Title>August, no shading</Title></Style> <Style><Name>Sep_ns</Name><Title>September, no shading</Title></Style> <Style><Name>Oct_ns</Name><Title>October, no shading</Title></Style> <Style><Name>Nov_ns</Name><Title>November, no shading</Title></Style> <Style><Name>Dec_ns</Name><Title>December, no shading</Title></Style> <ScaleHint min="250" max="10000" /> </Layer> <Layer queryable="0"> <Name>modis</Name> <Title>Blue Marble, Global MODIS derived image</Title> <LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90" /> <Style> <Name>default</Name><Title>visual</Title></Style> <ScaleHint min="500" max="10000" /> </Layer> <Layer queryable="0"> <Name>huemapped_srtm</Name> <Title>SRTM derived global elevation, 3 arc-second, hue mapped</Title> <Abstract> An SRTM derived elevation dataset, where elevation is mapped to hue, resulting a color image</Abstract> <LatLonBoundingBox minx="-180" miny="-80" maxx="180" maxy="80"/> <Style> <Name>default</Name> <Title>Default Elevation Style</Title> </Style> <ScaleHint min="45" max="10000" /> <MinScaleDenominator>12000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>srtmplus</Name> <Title>Global 1km elevation, seamless SRTM land elevation and ocean depth</Title> <Abstract> The SRTM30 Plus dataset, a 30 arc-second seamless combination of GTOPO30, SRTM derived land elevation and UCSD Sandwell bathymetry data. The default style is scaled to 8 bit, non-linear. It is possible to request the elevation data in meters by the short_int tyle and requesting PNG format. The resulting PNG file will be a unsigned 16 bit per pixel image. The values are then the elevation in meters. Values are signed 16 bit integers, but PNG will present them as unsigned, any values larger than 32767 should be interpreted as negative numbers. For elevation values in feet, request PNG format with the style feet_short_int. </Abstract> <LatLonBoundingBox minx="-180" miny="-80" maxx="180" maxy="80"/> <Style> <Name>default</Name> <Title>Default Elevation Style, scaled to 8 bit using a non-linear function</Title> </Style> <Style> <Name>short_int</Name> <Title>short int elevation values when format is image/png, identical to default for jpeg</Title> </Style> <Style> <Name>feet_short_int</Name> <Title>short int elevation values in feet when format is image/png </Title> </Style> <ScaleHint min="500" max="10000" /> <MinScaleDenominator>120000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>worldwind_dem</Name> <Title>SRTM derived global elevation, 3 arc-second</Title> <Abstract> A global elevation model, prepared from the 3 arc-second SRTM dataset by filling some of the problem areas. Prepared by the NASA Learning Technologies. The default style is scaled to 8 bit, non-linear. It is possible to request the elevation data in meters by the short_int tyle and requesting PNG format. The resulting PNG file will be a unsigned 16 bit per pixel image. The values are then the elevation in meters. Values are signed 16 bit integers, but PNG will present them as unsigned, leading to a few areas with very large values (65000+) For elevation values in feet, request PNG format with the style feet_short_int. </Abstract> <LatLonBoundingBox minx="-180" miny="-80" maxx="180" maxy="80"/> <Style> <Name>default</Name> <Title>Default Elevation Style, scaled to 8 bit using a non-linear function</Title> </Style> <Style> <Name>short_int</Name> <Title>short int elevation values when format is image/png</Title> </Style> <Style> <Name>feet_short_int</Name> <Title>short int elevation values in feet when format is image/png</Title> </Style> <ScaleHint min="45" max="10000" /> <MinScaleDenominator>120000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>us_ned</Name> <Title>United States elevation, 30m</Title> <Abstract> Continental United States elevation, produced from the USGS National Elevation. The default style is scaled to 8 bit from the orginal floating point data. </Abstract> <LatLonBoundingBox minx="-125" miny="24" maxx="-66" maxy="50"/> <Style><Name>default</Name> <Title>Default Elevation</Title> </Style> <Style><Name>short_int</Name> <Title>short int signed elevation values when format is image/png or tiff</Title> </Style> <Style><Name>feet_short_int</Name> <Title>short int elevation values in feet when format is image/png or image/tiff</Title> </Style> <Style><Name>real</Name> <Title>DEM real numbers, in floating point format, meters, when used with image/tiff</Title> </Style> <Style><Name>feet_real</Name> <Title>DEM in real numbers, in floating point format, feet, when used with image/tiff</Title> </Style> <ScaleHint min="20" max="10000" /> <MinScaleDenominator>24000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>us_elevation</Name> <Title>Digital Elevation Map of the United States, DTED dataset, 3 second resolution, grayscale</Title> <Abstract> DTED Level 3 US elevation. The default style is scaled to 8 bit. It is possible to request the elevation data in meters by the short_int tyle and requesting PNG format. The resulting PNG file will be a unsigned 16 bit per pixel image. The values are elevation in meters, zero clipped (no negative values). </Abstract> <LatLonBoundingBox minx="-127" miny="23" maxx="-66" maxy="50"/> <Style> <Name>default</Name> <Title>Default Elevation</Title> </Style> <Style> <Name>short_int</Name> <Title>short int elevation values when format is image/png</Title> </Style> <Style> <Name>feet_short_int</Name> <Title>short int elevation values in feet when format is image/png</Title> </Style> <ScaleHint min="45" max="10000" /> </Layer> <Layer queryable="0"> <Name>us_colordem</Name> <Title>Digital Elevation Map of the United States, DTED dataset, 3 second resolution, hue mapped</Title> <Abstract> The DTED Level 3 US elevation, mapped to a color image using the full spectrum. This result is not achievable by using SLD, so it is presented as a different layer. </Abstract> <LatLonBoundingBox minx="-127" miny="23" maxx="-66" maxy="50"/> <Style> <Name>default</Name> <Title>Default Color Elevation</Title> </Style> <ScaleHint min="45" max="10000" /> <MinScaleDenominator>20000</MinScaleDenominator> </Layer> <Layer queryable="0"> <Name>gdem</Name> <Title>ASTER DEM, tiled only, 1.5 arc-second per pixel</Title> <Abstract> Subsampled version of the ASTER Global Digital Elevation Map (GDEM). Details are available at http://asterweb.jpl.nasa.gov/gdem.asp. Redistribution of the full resolution original data is not allowed, this dataset is subsampled to 1/2400 pixels per degree (1.5 arc-sec, 45m). Tiles, described by the http://onearth.jpl.nasa.gov/wms.cgi?request=GetTileService, are 16bit PNG files, where the 16 bit values should be interpreted as signed short integers, in meters. </Abstract> <LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90"/> <Style> <Name>short_int</Name> <Title>short int elevation values when format is image/png</Title> </Style> <ScaleHint min="45" max="10000" /> <MinScaleDenominator>20000</MinScaleDenominator> </Layer> </Layer> </Capability> </WMT_MS_Capabilities>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_Telascience.xml���������������������������������������������������0000664�0000000�0000000�00000012770�13217064120�0021703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengeospatial.net/wms/1.1.1/capabilities_1_1_1.dtd" [ <!ELEMENT VendorSpecificCapabilities EMPTY> ]> <!-- end of DOCTYPE declaration --> <WMT_MS_Capabilities version="1.1.1"> <!-- MapServer version 4.7 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG OUTPUT=WBMP OUTPUT=SVG SUPPORTS=PROJ SUPPORTS=FREETYPE SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=GEOS INPUT=EPPL7 INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>OGC:WMS</Name> <Title>BM</Title> <Abstract>Blue Marble 200409</Abstract> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Norman Vine</ContactPerson> <ContactOrganization>Norman Vine</ContactOrganization> </ContactPersonPrimary> <ContactAddress> <AddressType>MAIL</AddressType> <Address>POB 319</Address> <City>Woods Hole</City> <StateOrProvince>MA</StateOrProvince> <PostCode>02543</PostCode> <Country>USA</Country> </ContactAddress> <ContactElectronicMailAddress>nhv@cooa.whoi.edu</ContactElectronicMailAddress> </ContactInformation> <AccessConstraints>none</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/gif</Format> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/wbmp</Format> <Format>image/tiff</Format> <Format>image/png; mode=24bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Post> </HTTP> </DCPType> </GetFeatureInfo> <DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Post> </HTTP> </DCPType> </DescribeLayer> <GetLegendGraphic> <Format>image/gif</Format> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/wbmp</Format> <Format>image/png; mode=24bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://wms.telascience.org/cgi-bin/ngBM_wms?"/></Post> </HTTP> </DCPType> </GetLegendGraphic> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> <Format>application/vnd.ogc.se_blank</Format> </Exception> <VendorSpecificCapabilities /> <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/> <Layer> <Name>ngBM</Name> <Title>BM</Title> <SRS>EPSG:4326</SRS> <LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90" /> <BoundingBox SRS="EPSG:4326" minx="-180" miny="-90" maxx="180" maxy="90" resx="0.0333333333" resy="0.0333333333" /> <ScaleHint min="0.498903" max="748354" /> <Layer queryable="0" opaque="0" cascaded="0"> <Name>world.topo.bathy.200409</Name> <Title>world.topo.bathy.200409</Title> <SRS>init=epsg:4326</SRS> <LatLonBoundingBox minx="-180" miny="-90" maxx="180" maxy="90" /> <BoundingBox SRS="EPSG:4326" minx="-180" miny="-90" maxx="180" maxy="90" resx="0.0333333333" resy="0.0333333333" /> <ScaleHint min="99.7806" max="748354" /> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>USGS_1ft_San_Diego</Name> <Title>USGS 1ft San Diego</Title> <SRS>init=epsg:4326</SRS> <LatLonBoundingBox minx="-117.673" miny="32.4976" maxx="-116.794" maxy="33.5039" /> <BoundingBox SRS="EPSG:4326" minx="-117.673" miny="32.4976" maxx="-116.794" maxy="33.5039" resx="0.0333333333" resy="0.0333333333" /> <ScaleHint min="0.498903" max="748.354" /> </Layer> </Layer> </Capability> </WMT_MS_Capabilities> ��������OWSLib-0.16.0/tests/resources/wms_geoserver-cap.xml�������������������������������������������������0000664�0000000�0000000�00000016455�13217064120�0022232�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://localhost:8080/geoserver/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd"> <WMT_MS_Capabilities version="1.1.1" updateSequence="0"> <Service> <Name>OGC:WMS</Name> <Title>My GeoServer WMS</Title> <Abstract>This is a description of your Web Map Server.</Abstract> <KeywordList> <Keyword>WFS</Keyword> <Keyword>WMS</Keyword> <Keyword>GEOSERVER</Keyword> </KeywordList> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson/> <ContactOrganization/> </ContactPersonPrimary> <ContactPosition/> <ContactAddress> <AddressType/> <Address/> <City/> <StateOrProvince/> <PostCode/> <Country/> </ContactAddress> <ContactVoiceTelephone/> <ContactFacsimileTelephone/> <ContactElectronicMailAddress/> </ContactInformation> <Fees>NONE</Fees> <AccessConstraints>NONE</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>application/atom xml</Format> <Format>application/atom+xml</Format> <Format>application/openlayers</Format> <Format>application/pdf</Format> <Format>application/rss xml</Format> <Format>application/rss+xml</Format> <Format>application/vnd.google-earth.kml</Format> <Format>application/vnd.google-earth.kml xml</Format> <Format>application/vnd.google-earth.kml+xml</Format> <Format>application/vnd.google-earth.kmz</Format> <Format>application/vnd.google-earth.kmz xml</Format> <Format>application/vnd.google-earth.kmz+xml</Format> <Format>atom</Format> <Format>image/geotiff</Format> <Format>image/geotiff8</Format> <Format>image/gif</Format> <Format>image/jpeg</Format> <Format>image/png8</Format> <Format>image/svg</Format> <Format>image/svg xml</Format> <Format>image/svg+xml</Format> <Format>image/tiff</Format> <Format>image/tiff8</Format> <Format>kml</Format> <Format>kmz</Format> <Format>openlayers</Format> <Format>rss</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>text/html</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Post> </HTTP> </DCPType> </GetFeatureInfo> <DescribeLayer> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </DescribeLayer> <GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </GetLegendGraphic> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> </Exception> <UserDefinedSymbolization SupportSLD="1" UserLayer="1" UserStyle="1" RemoteWFS="1"/> <Layer> <Title>My GeoServer WMS</Title> <Abstract>This is a description of your Web Map Server.</Abstract> <!--Limited list of EPSG projections:--> <SRS>EPSG:4326</SRS> <LatLonBoundingBox minx="-74.012" miny="40.708" maxx="-74.002" maxy="40.72"/> <Layer queryable="1"> <Name>opengeo:poi</Name> <Title>Points of Interest</Title> <Abstract>Points of Interest in New York City</Abstract> <KeywordList/> <SRS>EPSG:4326</SRS> <!--WKT definition of this CRS: GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4326"]]--> <LatLonBoundingBox minx="-74.012" miny="40.708" maxx="-74.002" maxy="40.72"/> <BoundingBox SRS="EPSG:4326" minx="-74.012" miny="40.708" maxx="-74.002" maxy="40.72"/> <Attribution> <Title>GeoServer Sample Data</Title> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://svn.codehaus.org/geoserver/trunk/data/release/data/"/> <LogoURL height="112" width="353"> <Format>image/png;charset=UTF-8</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://geoserver.org/s/1518/25/0.1/_/download/resources/com.atlassian.confluence.themes.geoserver%3Ageoserver/chrome/geoserver-logo.png"/> </LogoURL> </Attribution> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a purple square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://localhost:8080/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=poi"/> </LegendURL> </Style> </Layer> <Layer queryable="0"> <Name>parent_layer</Name> <Title>Parent Layer</Title> <Layer queryable="1"> <Name>child_layer</Name> <Title>Child Layer</Title> </Layer> </Layer> </Layer> </Capability> </WMT_MS_Capabilities> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_mass_gis-caps.xml�������������������������������������������������0000664�0000000�0000000�00014212624�13217064120�0022222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://giswebservices.massgis.state.ma.us/geoserver/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd"> <WMT_MS_Capabilities version="1.1.1" updateSequence="461"> <Service> <Name>OGC:WMS</Name> <Title>Massachusetts Data from MassGIS (GeoServer)</Title> <Abstract>Statewide Massachusetts data served by MassGIS via GeoServer.</Abstract> <KeywordList> <Keyword>WMS </Keyword> <Keyword>GEOSERVER </Keyword> <Keyword>Massachusetts </Keyword> <Keyword>MassGIS </Keyword> <Keyword> </Keyword> <Keyword> </Keyword> <Keyword> </Keyword> </KeywordList> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Aleda Freeman</ContactPerson> <ContactOrganization>MassGIS - Information Technology Division</ContactOrganization> </ContactPersonPrimary> <ContactPosition>GIS Programmer</ContactPosition> <ContactAddress> <AddressType>mailing address</AddressType> <Address>1 Ashburton Pl, Room 1601</Address> <City>Boston</City> <StateOrProvince>MA</StateOrProvince> <PostCode>02114</PostCode> <Country>USA</Country> </ContactAddress> <ContactVoiceTelephone>617-626-4530</ContactVoiceTelephone> <ContactFacsimileTelephone/> <ContactElectronicMailAddress>aleda.freeman@state.ma.us</ContactElectronicMailAddress> </ContactInformation> <Fees>NONE</Fees> <AccessConstraints>NONE</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>application/atom xml</Format> <Format>application/atom+xml</Format> <Format>application/openlayers</Format> <Format>application/pdf</Format> <Format>application/rss xml</Format> <Format>application/rss+xml</Format> <Format>application/vnd.google-earth.kml</Format> <Format>application/vnd.google-earth.kml xml</Format> <Format>application/vnd.google-earth.kml+xml</Format> <Format>application/vnd.google-earth.kmz</Format> <Format>application/vnd.google-earth.kmz xml</Format> <Format>application/vnd.google-earth.kmz+xml</Format> <Format>atom</Format> <Format>image/geotiff</Format> <Format>image/geotiff8</Format> <Format>image/gif</Format> <Format>image/jpeg</Format> <Format>image/png8</Format> <Format>image/svg</Format> <Format>image/svg xml</Format> <Format>image/svg+xml</Format> <Format>image/tiff</Format> <Format>image/tiff8</Format> <Format>kml</Format> <Format>kmz</Format> <Format>openlayers</Format> <Format>rss</Format> <Format>text/html</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>text/html</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Post> </HTTP> </DCPType> </GetFeatureInfo> <DescribeLayer> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </DescribeLayer> <GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?SERVICE=WMS&amp;"/> </Get> </HTTP> </DCPType> </GetLegendGraphic> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> </Exception> <UserDefinedSymbolization SupportSLD="1" UserLayer="1" UserStyle="1" RemoteWFS="1"/> <Layer> <Title>Massachusetts Data from MassGIS (GeoServer)</Title> <Abstract>Statewide Massachusetts data served by MassGIS via GeoServer.</Abstract> <!--All supported EPSG projections:--> <SRS>AUTO:42001</SRS> <SRS>AUTO:42002</SRS> <SRS>AUTO:42003</SRS> <SRS>AUTO:42004</SRS> <SRS>EPSG:WGS84(DD)</SRS> <SRS>EPSG:2000</SRS> <SRS>EPSG:2001</SRS> <SRS>EPSG:2002</SRS> <SRS>EPSG:2003</SRS> <SRS>EPSG:2004</SRS> <SRS>EPSG:2005</SRS> <SRS>EPSG:2006</SRS> <SRS>EPSG:2007</SRS> <SRS>EPSG:2008</SRS> <SRS>EPSG:2009</SRS> <SRS>EPSG:2010</SRS> <SRS>EPSG:2011</SRS> <SRS>EPSG:2012</SRS> <SRS>EPSG:2013</SRS> <SRS>EPSG:2014</SRS> <SRS>EPSG:2015</SRS> <SRS>EPSG:2016</SRS> <SRS>EPSG:2017</SRS> <SRS>EPSG:2018</SRS> <SRS>EPSG:2019</SRS> <SRS>EPSG:2020</SRS> <SRS>EPSG:2021</SRS> <SRS>EPSG:2022</SRS> <SRS>EPSG:2023</SRS> <SRS>EPSG:2024</SRS> <SRS>EPSG:2025</SRS> <SRS>EPSG:2026</SRS> <SRS>EPSG:2027</SRS> <SRS>EPSG:2028</SRS> <SRS>EPSG:2029</SRS> <SRS>EPSG:2030</SRS> <SRS>EPSG:2031</SRS> <SRS>EPSG:2032</SRS> <SRS>EPSG:2033</SRS> <SRS>EPSG:2034</SRS> <SRS>EPSG:2035</SRS> <SRS>EPSG:2036</SRS> <SRS>EPSG:2037</SRS> <SRS>EPSG:2038</SRS> <SRS>EPSG:2039</SRS> <SRS>EPSG:2040</SRS> <SRS>EPSG:2041</SRS> <SRS>EPSG:2042</SRS> <SRS>EPSG:2043</SRS> <SRS>EPSG:2044</SRS> <SRS>EPSG:2045</SRS> <SRS>EPSG:2046</SRS> <SRS>EPSG:2047</SRS> <SRS>EPSG:2048</SRS> <SRS>EPSG:2049</SRS> <SRS>EPSG:2050</SRS> <SRS>EPSG:2051</SRS> <SRS>EPSG:2052</SRS> <SRS>EPSG:2053</SRS> <SRS>EPSG:2054</SRS> <SRS>EPSG:2055</SRS> <SRS>EPSG:2056</SRS> <SRS>EPSG:2057</SRS> <SRS>EPSG:2058</SRS> <SRS>EPSG:2059</SRS> <SRS>EPSG:2060</SRS> <SRS>EPSG:2061</SRS> <SRS>EPSG:2062</SRS> <SRS>EPSG:2063</SRS> <SRS>EPSG:2064</SRS> <SRS>EPSG:2065</SRS> <SRS>EPSG:2066</SRS> <SRS>EPSG:2067</SRS> <SRS>EPSG:2068</SRS> <SRS>EPSG:2069</SRS> <SRS>EPSG:2070</SRS> <SRS>EPSG:2071</SRS> <SRS>EPSG:2072</SRS> <SRS>EPSG:2073</SRS> <SRS>EPSG:2074</SRS> <SRS>EPSG:2075</SRS> <SRS>EPSG:2076</SRS> <SRS>EPSG:2077</SRS> <SRS>EPSG:2078</SRS> <SRS>EPSG:2079</SRS> <SRS>EPSG:2080</SRS> <SRS>EPSG:2081</SRS> <SRS>EPSG:2082</SRS> <SRS>EPSG:2083</SRS> <SRS>EPSG:2084</SRS> <SRS>EPSG:2085</SRS> <SRS>EPSG:2086</SRS> <SRS>EPSG:2087</SRS> <SRS>EPSG:2088</SRS> <SRS>EPSG:2089</SRS> <SRS>EPSG:2090</SRS> <SRS>EPSG:2091</SRS> <SRS>EPSG:2092</SRS> <SRS>EPSG:2093</SRS> <SRS>EPSG:2094</SRS> <SRS>EPSG:2095</SRS> <SRS>EPSG:2096</SRS> <SRS>EPSG:2097</SRS> <SRS>EPSG:2098</SRS> <SRS>EPSG:2099</SRS> <SRS>EPSG:2100</SRS> <SRS>EPSG:2101</SRS> <SRS>EPSG:2102</SRS> <SRS>EPSG:2103</SRS> <SRS>EPSG:2104</SRS> <SRS>EPSG:2105</SRS> <SRS>EPSG:2106</SRS> <SRS>EPSG:2107</SRS> <SRS>EPSG:2108</SRS> <SRS>EPSG:2109</SRS> <SRS>EPSG:2110</SRS> <SRS>EPSG:2111</SRS> <SRS>EPSG:2112</SRS> <SRS>EPSG:2113</SRS> <SRS>EPSG:2114</SRS> <SRS>EPSG:2115</SRS> <SRS>EPSG:2116</SRS> <SRS>EPSG:2117</SRS> <SRS>EPSG:2118</SRS> <SRS>EPSG:2119</SRS> <SRS>EPSG:2120</SRS> <SRS>EPSG:2121</SRS> <SRS>EPSG:2122</SRS> <SRS>EPSG:2123</SRS> <SRS>EPSG:2124</SRS> <SRS>EPSG:2125</SRS> <SRS>EPSG:2126</SRS> <SRS>EPSG:2127</SRS> <SRS>EPSG:2128</SRS> <SRS>EPSG:2129</SRS> <SRS>EPSG:2130</SRS> <SRS>EPSG:2131</SRS> <SRS>EPSG:2132</SRS> <SRS>EPSG:2133</SRS> <SRS>EPSG:2134</SRS> <SRS>EPSG:2135</SRS> <SRS>EPSG:2136</SRS> <SRS>EPSG:2137</SRS> <SRS>EPSG:2138</SRS> <SRS>EPSG:2139</SRS> <SRS>EPSG:2140</SRS> <SRS>EPSG:2141</SRS> <SRS>EPSG:2142</SRS> <SRS>EPSG:2143</SRS> <SRS>EPSG:2144</SRS> <SRS>EPSG:2145</SRS> <SRS>EPSG:2146</SRS> <SRS>EPSG:2147</SRS> <SRS>EPSG:2148</SRS> <SRS>EPSG:2149</SRS> <SRS>EPSG:2150</SRS> <SRS>EPSG:2151</SRS> <SRS>EPSG:2152</SRS> <SRS>EPSG:2153</SRS> <SRS>EPSG:2154</SRS> <SRS>EPSG:2155</SRS> <SRS>EPSG:2156</SRS> <SRS>EPSG:2157</SRS> <SRS>EPSG:2158</SRS> <SRS>EPSG:2159</SRS> <SRS>EPSG:2160</SRS> <SRS>EPSG:2161</SRS> <SRS>EPSG:2162</SRS> <SRS>EPSG:2163</SRS> <SRS>EPSG:2164</SRS> <SRS>EPSG:2165</SRS> <SRS>EPSG:2166</SRS> <SRS>EPSG:2167</SRS> <SRS>EPSG:2168</SRS> <SRS>EPSG:2169</SRS> <SRS>EPSG:2170</SRS> <SRS>EPSG:2171</SRS> <SRS>EPSG:2172</SRS> <SRS>EPSG:2173</SRS> <SRS>EPSG:2174</SRS> <SRS>EPSG:2175</SRS> <SRS>EPSG:2176</SRS> <SRS>EPSG:2177</SRS> <SRS>EPSG:2178</SRS> <SRS>EPSG:2179</SRS> <SRS>EPSG:2180</SRS> <SRS>EPSG:2188</SRS> <SRS>EPSG:2189</SRS> <SRS>EPSG:2190</SRS> <SRS>EPSG:2191</SRS> <SRS>EPSG:2192</SRS> <SRS>EPSG:2193</SRS> <SRS>EPSG:2194</SRS> <SRS>EPSG:2195</SRS> <SRS>EPSG:2196</SRS> <SRS>EPSG:2197</SRS> <SRS>EPSG:2198</SRS> <SRS>EPSG:2199</SRS> <SRS>EPSG:2200</SRS> <SRS>EPSG:2201</SRS> <SRS>EPSG:2202</SRS> <SRS>EPSG:2203</SRS> <SRS>EPSG:2204</SRS> <SRS>EPSG:2205</SRS> <SRS>EPSG:2206</SRS> <SRS>EPSG:2207</SRS> <SRS>EPSG:2208</SRS> <SRS>EPSG:2209</SRS> <SRS>EPSG:2210</SRS> <SRS>EPSG:2211</SRS> <SRS>EPSG:2212</SRS> <SRS>EPSG:2213</SRS> <SRS>EPSG:2214</SRS> <SRS>EPSG:2215</SRS> <SRS>EPSG:2216</SRS> <SRS>EPSG:2217</SRS> <SRS>EPSG:2218</SRS> <SRS>EPSG:2219</SRS> <SRS>EPSG:2220</SRS> <SRS>EPSG:2221</SRS> <SRS>EPSG:2222</SRS> <SRS>EPSG:2223</SRS> <SRS>EPSG:2224</SRS> <SRS>EPSG:2225</SRS> <SRS>EPSG:2226</SRS> <SRS>EPSG:2227</SRS> <SRS>EPSG:2228</SRS> <SRS>EPSG:2229</SRS> <SRS>EPSG:2230</SRS> <SRS>EPSG:2231</SRS> <SRS>EPSG:2232</SRS> <SRS>EPSG:2233</SRS> <SRS>EPSG:2234</SRS> <SRS>EPSG:2235</SRS> <SRS>EPSG:2236</SRS> <SRS>EPSG:2237</SRS> <SRS>EPSG:2238</SRS> <SRS>EPSG:2239</SRS> <SRS>EPSG:2240</SRS> <SRS>EPSG:2241</SRS> <SRS>EPSG:2242</SRS> <SRS>EPSG:2243</SRS> <SRS>EPSG:2244</SRS> <SRS>EPSG:2245</SRS> <SRS>EPSG:2246</SRS> <SRS>EPSG:2247</SRS> <SRS>EPSG:2248</SRS> <SRS>EPSG:2249</SRS> <SRS>EPSG:2250</SRS> <SRS>EPSG:2251</SRS> <SRS>EPSG:2252</SRS> <SRS>EPSG:2253</SRS> <SRS>EPSG:2254</SRS> <SRS>EPSG:2255</SRS> <SRS>EPSG:2256</SRS> <SRS>EPSG:2257</SRS> <SRS>EPSG:2258</SRS> <SRS>EPSG:2259</SRS> <SRS>EPSG:2260</SRS> <SRS>EPSG:2261</SRS> <SRS>EPSG:2262</SRS> <SRS>EPSG:2263</SRS> <SRS>EPSG:2264</SRS> <SRS>EPSG:2265</SRS> <SRS>EPSG:2266</SRS> <SRS>EPSG:2267</SRS> <SRS>EPSG:2268</SRS> <SRS>EPSG:2269</SRS> <SRS>EPSG:2270</SRS> <SRS>EPSG:2271</SRS> <SRS>EPSG:2272</SRS> <SRS>EPSG:2273</SRS> <SRS>EPSG:2274</SRS> <SRS>EPSG:2275</SRS> <SRS>EPSG:2276</SRS> <SRS>EPSG:2277</SRS> <SRS>EPSG:2278</SRS> <SRS>EPSG:2279</SRS> <SRS>EPSG:2280</SRS> <SRS>EPSG:2281</SRS> <SRS>EPSG:2282</SRS> <SRS>EPSG:2283</SRS> <SRS>EPSG:2284</SRS> <SRS>EPSG:2285</SRS> <SRS>EPSG:2286</SRS> <SRS>EPSG:2287</SRS> <SRS>EPSG:2288</SRS> <SRS>EPSG:2289</SRS> <SRS>EPSG:2290</SRS> <SRS>EPSG:2291</SRS> <SRS>EPSG:2292</SRS> <SRS>EPSG:2294</SRS> <SRS>EPSG:2295</SRS> <SRS>EPSG:2296</SRS> <SRS>EPSG:2297</SRS> <SRS>EPSG:2298</SRS> <SRS>EPSG:2299</SRS> <SRS>EPSG:2300</SRS> <SRS>EPSG:2301</SRS> <SRS>EPSG:2302</SRS> <SRS>EPSG:2303</SRS> <SRS>EPSG:2304</SRS> <SRS>EPSG:2305</SRS> <SRS>EPSG:2306</SRS> <SRS>EPSG:2307</SRS> <SRS>EPSG:2308</SRS> <SRS>EPSG:2309</SRS> <SRS>EPSG:2310</SRS> <SRS>EPSG:2311</SRS> <SRS>EPSG:2312</SRS> <SRS>EPSG:2313</SRS> <SRS>EPSG:2314</SRS> <SRS>EPSG:2315</SRS> <SRS>EPSG:2316</SRS> <SRS>EPSG:2317</SRS> <SRS>EPSG:2318</SRS> <SRS>EPSG:2319</SRS> <SRS>EPSG:2320</SRS> <SRS>EPSG:2321</SRS> <SRS>EPSG:2322</SRS> <SRS>EPSG:2323</SRS> <SRS>EPSG:2324</SRS> <SRS>EPSG:2325</SRS> <SRS>EPSG:2326</SRS> <SRS>EPSG:2327</SRS> <SRS>EPSG:2328</SRS> <SRS>EPSG:2329</SRS> <SRS>EPSG:2330</SRS> <SRS>EPSG:2331</SRS> <SRS>EPSG:2332</SRS> <SRS>EPSG:2333</SRS> <SRS>EPSG:2334</SRS> <SRS>EPSG:2335</SRS> <SRS>EPSG:2336</SRS> <SRS>EPSG:2337</SRS> <SRS>EPSG:2338</SRS> <SRS>EPSG:2339</SRS> <SRS>EPSG:2340</SRS> <SRS>EPSG:2341</SRS> <SRS>EPSG:2342</SRS> <SRS>EPSG:2343</SRS> <SRS>EPSG:2344</SRS> <SRS>EPSG:2345</SRS> <SRS>EPSG:2346</SRS> <SRS>EPSG:2347</SRS> <SRS>EPSG:2348</SRS> <SRS>EPSG:2349</SRS> <SRS>EPSG:2350</SRS> <SRS>EPSG:2351</SRS> <SRS>EPSG:2352</SRS> <SRS>EPSG:2353</SRS> <SRS>EPSG:2354</SRS> <SRS>EPSG:2355</SRS> <SRS>EPSG:2356</SRS> <SRS>EPSG:2357</SRS> <SRS>EPSG:2358</SRS> <SRS>EPSG:2359</SRS> <SRS>EPSG:2360</SRS> <SRS>EPSG:2361</SRS> <SRS>EPSG:2362</SRS> <SRS>EPSG:2363</SRS> <SRS>EPSG:2364</SRS> <SRS>EPSG:2365</SRS> <SRS>EPSG:2366</SRS> <SRS>EPSG:2367</SRS> <SRS>EPSG:2368</SRS> <SRS>EPSG:2369</SRS> <SRS>EPSG:2370</SRS> <SRS>EPSG:2371</SRS> <SRS>EPSG:2372</SRS> <SRS>EPSG:2373</SRS> <SRS>EPSG:2374</SRS> <SRS>EPSG:2375</SRS> <SRS>EPSG:2376</SRS> <SRS>EPSG:2377</SRS> <SRS>EPSG:2378</SRS> <SRS>EPSG:2379</SRS> <SRS>EPSG:2380</SRS> <SRS>EPSG:2381</SRS> <SRS>EPSG:2382</SRS> <SRS>EPSG:2383</SRS> <SRS>EPSG:2384</SRS> <SRS>EPSG:2385</SRS> <SRS>EPSG:2386</SRS> <SRS>EPSG:2387</SRS> <SRS>EPSG:2388</SRS> <SRS>EPSG:2389</SRS> <SRS>EPSG:2390</SRS> <SRS>EPSG:2391</SRS> <SRS>EPSG:2392</SRS> <SRS>EPSG:2393</SRS> <SRS>EPSG:2394</SRS> <SRS>EPSG:2395</SRS> <SRS>EPSG:2396</SRS> <SRS>EPSG:2397</SRS> <SRS>EPSG:2398</SRS> <SRS>EPSG:2399</SRS> <SRS>EPSG:2400</SRS> <SRS>EPSG:2401</SRS> <SRS>EPSG:2402</SRS> <SRS>EPSG:2403</SRS> <SRS>EPSG:2404</SRS> <SRS>EPSG:2405</SRS> <SRS>EPSG:2406</SRS> <SRS>EPSG:2407</SRS> <SRS>EPSG:2408</SRS> <SRS>EPSG:2409</SRS> <SRS>EPSG:2410</SRS> <SRS>EPSG:2411</SRS> <SRS>EPSG:2412</SRS> <SRS>EPSG:2413</SRS> <SRS>EPSG:2414</SRS> <SRS>EPSG:2415</SRS> <SRS>EPSG:2416</SRS> <SRS>EPSG:2417</SRS> <SRS>EPSG:2418</SRS> <SRS>EPSG:2419</SRS> <SRS>EPSG:2420</SRS> <SRS>EPSG:2421</SRS> <SRS>EPSG:2422</SRS> <SRS>EPSG:2423</SRS> <SRS>EPSG:2424</SRS> <SRS>EPSG:2425</SRS> <SRS>EPSG:2426</SRS> <SRS>EPSG:2427</SRS> <SRS>EPSG:2428</SRS> <SRS>EPSG:2429</SRS> <SRS>EPSG:2430</SRS> <SRS>EPSG:2431</SRS> <SRS>EPSG:2432</SRS> <SRS>EPSG:2433</SRS> <SRS>EPSG:2434</SRS> <SRS>EPSG:2435</SRS> <SRS>EPSG:2436</SRS> <SRS>EPSG:2437</SRS> <SRS>EPSG:2438</SRS> <SRS>EPSG:2439</SRS> <SRS>EPSG:2440</SRS> <SRS>EPSG:2441</SRS> <SRS>EPSG:2442</SRS> <SRS>EPSG:2443</SRS> <SRS>EPSG:2444</SRS> <SRS>EPSG:2445</SRS> <SRS>EPSG:2446</SRS> <SRS>EPSG:2447</SRS> <SRS>EPSG:2448</SRS> <SRS>EPSG:2449</SRS> <SRS>EPSG:2450</SRS> <SRS>EPSG:2451</SRS> <SRS>EPSG:2452</SRS> <SRS>EPSG:2453</SRS> <SRS>EPSG:2454</SRS> <SRS>EPSG:2455</SRS> <SRS>EPSG:2456</SRS> <SRS>EPSG:2457</SRS> <SRS>EPSG:2458</SRS> <SRS>EPSG:2459</SRS> <SRS>EPSG:2460</SRS> <SRS>EPSG:2461</SRS> <SRS>EPSG:2462</SRS> <SRS>EPSG:2463</SRS> <SRS>EPSG:2464</SRS> <SRS>EPSG:2465</SRS> <SRS>EPSG:2466</SRS> <SRS>EPSG:2467</SRS> <SRS>EPSG:2468</SRS> <SRS>EPSG:2469</SRS> <SRS>EPSG:2470</SRS> <SRS>EPSG:2471</SRS> <SRS>EPSG:2472</SRS> <SRS>EPSG:2473</SRS> <SRS>EPSG:2474</SRS> <SRS>EPSG:2475</SRS> <SRS>EPSG:2476</SRS> <SRS>EPSG:2477</SRS> <SRS>EPSG:2478</SRS> <SRS>EPSG:2479</SRS> <SRS>EPSG:2480</SRS> <SRS>EPSG:2481</SRS> <SRS>EPSG:2482</SRS> <SRS>EPSG:2483</SRS> <SRS>EPSG:2484</SRS> <SRS>EPSG:2485</SRS> <SRS>EPSG:2486</SRS> <SRS>EPSG:2487</SRS> <SRS>EPSG:2488</SRS> <SRS>EPSG:2489</SRS> <SRS>EPSG:2490</SRS> <SRS>EPSG:2491</SRS> <SRS>EPSG:2492</SRS> <SRS>EPSG:2493</SRS> <SRS>EPSG:2494</SRS> <SRS>EPSG:2495</SRS> <SRS>EPSG:2496</SRS> <SRS>EPSG:2497</SRS> <SRS>EPSG:2498</SRS> <SRS>EPSG:2499</SRS> <SRS>EPSG:2500</SRS> <SRS>EPSG:2501</SRS> <SRS>EPSG:2502</SRS> <SRS>EPSG:2503</SRS> <SRS>EPSG:2504</SRS> <SRS>EPSG:2505</SRS> <SRS>EPSG:2506</SRS> <SRS>EPSG:2507</SRS> <SRS>EPSG:2508</SRS> <SRS>EPSG:2509</SRS> <SRS>EPSG:2510</SRS> <SRS>EPSG:2511</SRS> <SRS>EPSG:2512</SRS> <SRS>EPSG:2513</SRS> <SRS>EPSG:2514</SRS> <SRS>EPSG:2515</SRS> <SRS>EPSG:2516</SRS> <SRS>EPSG:2517</SRS> <SRS>EPSG:2518</SRS> <SRS>EPSG:2519</SRS> <SRS>EPSG:2520</SRS> <SRS>EPSG:2521</SRS> <SRS>EPSG:2522</SRS> <SRS>EPSG:2523</SRS> <SRS>EPSG:2524</SRS> <SRS>EPSG:2525</SRS> <SRS>EPSG:2526</SRS> <SRS>EPSG:2527</SRS> <SRS>EPSG:2528</SRS> <SRS>EPSG:2529</SRS> <SRS>EPSG:2530</SRS> <SRS>EPSG:2531</SRS> <SRS>EPSG:2532</SRS> <SRS>EPSG:2533</SRS> <SRS>EPSG:2534</SRS> <SRS>EPSG:2535</SRS> <SRS>EPSG:2536</SRS> <SRS>EPSG:2537</SRS> <SRS>EPSG:2538</SRS> <SRS>EPSG:2539</SRS> <SRS>EPSG:2540</SRS> <SRS>EPSG:2541</SRS> <SRS>EPSG:2542</SRS> <SRS>EPSG:2543</SRS> <SRS>EPSG:2544</SRS> <SRS>EPSG:2545</SRS> <SRS>EPSG:2546</SRS> <SRS>EPSG:2547</SRS> <SRS>EPSG:2548</SRS> <SRS>EPSG:2549</SRS> <SRS>EPSG:2550</SRS> <SRS>EPSG:2551</SRS> <SRS>EPSG:2552</SRS> <SRS>EPSG:2553</SRS> <SRS>EPSG:2554</SRS> <SRS>EPSG:2555</SRS> <SRS>EPSG:2556</SRS> <SRS>EPSG:2557</SRS> <SRS>EPSG:2558</SRS> <SRS>EPSG:2559</SRS> <SRS>EPSG:2560</SRS> <SRS>EPSG:2561</SRS> <SRS>EPSG:2562</SRS> <SRS>EPSG:2563</SRS> <SRS>EPSG:2564</SRS> <SRS>EPSG:2565</SRS> <SRS>EPSG:2566</SRS> <SRS>EPSG:2567</SRS> <SRS>EPSG:2568</SRS> <SRS>EPSG:2569</SRS> <SRS>EPSG:2570</SRS> <SRS>EPSG:2571</SRS> <SRS>EPSG:2572</SRS> <SRS>EPSG:2573</SRS> <SRS>EPSG:2574</SRS> <SRS>EPSG:2575</SRS> <SRS>EPSG:2576</SRS> <SRS>EPSG:2577</SRS> <SRS>EPSG:2578</SRS> <SRS>EPSG:2579</SRS> <SRS>EPSG:2580</SRS> <SRS>EPSG:2581</SRS> <SRS>EPSG:2582</SRS> <SRS>EPSG:2583</SRS> <SRS>EPSG:2584</SRS> <SRS>EPSG:2585</SRS> <SRS>EPSG:2586</SRS> <SRS>EPSG:2587</SRS> <SRS>EPSG:2588</SRS> <SRS>EPSG:2589</SRS> <SRS>EPSG:2590</SRS> <SRS>EPSG:2591</SRS> <SRS>EPSG:2592</SRS> <SRS>EPSG:2593</SRS> <SRS>EPSG:2594</SRS> <SRS>EPSG:2595</SRS> <SRS>EPSG:2596</SRS> <SRS>EPSG:2597</SRS> <SRS>EPSG:2598</SRS> <SRS>EPSG:2599</SRS> <SRS>EPSG:2600</SRS> <SRS>EPSG:2601</SRS> <SRS>EPSG:2602</SRS> <SRS>EPSG:2603</SRS> <SRS>EPSG:2604</SRS> <SRS>EPSG:2605</SRS> <SRS>EPSG:2606</SRS> <SRS>EPSG:2607</SRS> <SRS>EPSG:2608</SRS> <SRS>EPSG:2609</SRS> <SRS>EPSG:2610</SRS> <SRS>EPSG:2611</SRS> <SRS>EPSG:2612</SRS> <SRS>EPSG:2613</SRS> <SRS>EPSG:2614</SRS> <SRS>EPSG:2615</SRS> <SRS>EPSG:2616</SRS> <SRS>EPSG:2617</SRS> <SRS>EPSG:2618</SRS> <SRS>EPSG:2619</SRS> <SRS>EPSG:2620</SRS> <SRS>EPSG:2621</SRS> <SRS>EPSG:2622</SRS> <SRS>EPSG:2623</SRS> <SRS>EPSG:2624</SRS> <SRS>EPSG:2625</SRS> <SRS>EPSG:2626</SRS> <SRS>EPSG:2627</SRS> <SRS>EPSG:2628</SRS> <SRS>EPSG:2629</SRS> <SRS>EPSG:2630</SRS> <SRS>EPSG:2631</SRS> <SRS>EPSG:2632</SRS> <SRS>EPSG:2633</SRS> <SRS>EPSG:2634</SRS> <SRS>EPSG:2635</SRS> <SRS>EPSG:2636</SRS> <SRS>EPSG:2637</SRS> <SRS>EPSG:2638</SRS> <SRS>EPSG:2639</SRS> <SRS>EPSG:2640</SRS> <SRS>EPSG:2641</SRS> <SRS>EPSG:2642</SRS> <SRS>EPSG:2643</SRS> <SRS>EPSG:2644</SRS> <SRS>EPSG:2645</SRS> <SRS>EPSG:2646</SRS> <SRS>EPSG:2647</SRS> <SRS>EPSG:2648</SRS> <SRS>EPSG:2649</SRS> <SRS>EPSG:2650</SRS> <SRS>EPSG:2651</SRS> <SRS>EPSG:2652</SRS> <SRS>EPSG:2653</SRS> <SRS>EPSG:2654</SRS> <SRS>EPSG:2655</SRS> <SRS>EPSG:2656</SRS> <SRS>EPSG:2657</SRS> <SRS>EPSG:2658</SRS> <SRS>EPSG:2659</SRS> <SRS>EPSG:2660</SRS> <SRS>EPSG:2661</SRS> <SRS>EPSG:2662</SRS> <SRS>EPSG:2663</SRS> <SRS>EPSG:2664</SRS> <SRS>EPSG:2665</SRS> <SRS>EPSG:2666</SRS> <SRS>EPSG:2667</SRS> <SRS>EPSG:2668</SRS> <SRS>EPSG:2669</SRS> <SRS>EPSG:2670</SRS> <SRS>EPSG:2671</SRS> <SRS>EPSG:2672</SRS> <SRS>EPSG:2673</SRS> <SRS>EPSG:2674</SRS> <SRS>EPSG:2675</SRS> <SRS>EPSG:2676</SRS> <SRS>EPSG:2677</SRS> <SRS>EPSG:2678</SRS> <SRS>EPSG:2679</SRS> <SRS>EPSG:2680</SRS> <SRS>EPSG:2681</SRS> <SRS>EPSG:2682</SRS> <SRS>EPSG:2683</SRS> <SRS>EPSG:2684</SRS> <SRS>EPSG:2685</SRS> <SRS>EPSG:2686</SRS> <SRS>EPSG:2687</SRS> <SRS>EPSG:2688</SRS> <SRS>EPSG:2689</SRS> <SRS>EPSG:2690</SRS> <SRS>EPSG:2691</SRS> <SRS>EPSG:2692</SRS> <SRS>EPSG:2693</SRS> <SRS>EPSG:2694</SRS> <SRS>EPSG:2695</SRS> <SRS>EPSG:2696</SRS> <SRS>EPSG:2697</SRS> <SRS>EPSG:2698</SRS> <SRS>EPSG:2699</SRS> <SRS>EPSG:2700</SRS> <SRS>EPSG:2701</SRS> <SRS>EPSG:2702</SRS> <SRS>EPSG:2703</SRS> <SRS>EPSG:2704</SRS> <SRS>EPSG:2705</SRS> <SRS>EPSG:2706</SRS> <SRS>EPSG:2707</SRS> <SRS>EPSG:2708</SRS> <SRS>EPSG:2709</SRS> <SRS>EPSG:2710</SRS> <SRS>EPSG:2711</SRS> <SRS>EPSG:2712</SRS> <SRS>EPSG:2713</SRS> <SRS>EPSG:2714</SRS> <SRS>EPSG:2715</SRS> <SRS>EPSG:2716</SRS> <SRS>EPSG:2717</SRS> <SRS>EPSG:2718</SRS> <SRS>EPSG:2719</SRS> <SRS>EPSG:2720</SRS> <SRS>EPSG:2721</SRS> <SRS>EPSG:2722</SRS> <SRS>EPSG:2723</SRS> <SRS>EPSG:2724</SRS> <SRS>EPSG:2725</SRS> <SRS>EPSG:2726</SRS> <SRS>EPSG:2727</SRS> <SRS>EPSG:2728</SRS> <SRS>EPSG:2729</SRS> <SRS>EPSG:2730</SRS> <SRS>EPSG:2731</SRS> <SRS>EPSG:2732</SRS> <SRS>EPSG:2733</SRS> <SRS>EPSG:2734</SRS> <SRS>EPSG:2735</SRS> <SRS>EPSG:2736</SRS> <SRS>EPSG:2737</SRS> <SRS>EPSG:2738</SRS> <SRS>EPSG:2739</SRS> <SRS>EPSG:2740</SRS> <SRS>EPSG:2741</SRS> <SRS>EPSG:2742</SRS> <SRS>EPSG:2743</SRS> <SRS>EPSG:2744</SRS> <SRS>EPSG:2745</SRS> <SRS>EPSG:2746</SRS> <SRS>EPSG:2747</SRS> <SRS>EPSG:2748</SRS> <SRS>EPSG:2749</SRS> <SRS>EPSG:2750</SRS> <SRS>EPSG:2751</SRS> <SRS>EPSG:2752</SRS> <SRS>EPSG:2753</SRS> <SRS>EPSG:2754</SRS> <SRS>EPSG:2755</SRS> <SRS>EPSG:2756</SRS> <SRS>EPSG:2757</SRS> <SRS>EPSG:2758</SRS> <SRS>EPSG:2759</SRS> <SRS>EPSG:2760</SRS> <SRS>EPSG:2761</SRS> <SRS>EPSG:2762</SRS> <SRS>EPSG:2763</SRS> <SRS>EPSG:2764</SRS> <SRS>EPSG:2765</SRS> <SRS>EPSG:2766</SRS> <SRS>EPSG:2767</SRS> <SRS>EPSG:2768</SRS> <SRS>EPSG:2769</SRS> <SRS>EPSG:2770</SRS> <SRS>EPSG:2771</SRS> <SRS>EPSG:2772</SRS> <SRS>EPSG:2773</SRS> <SRS>EPSG:2774</SRS> <SRS>EPSG:2775</SRS> <SRS>EPSG:2776</SRS> <SRS>EPSG:2777</SRS> <SRS>EPSG:2778</SRS> <SRS>EPSG:2779</SRS> <SRS>EPSG:2780</SRS> <SRS>EPSG:2781</SRS> <SRS>EPSG:2782</SRS> <SRS>EPSG:2783</SRS> <SRS>EPSG:2784</SRS> <SRS>EPSG:2785</SRS> <SRS>EPSG:2786</SRS> <SRS>EPSG:2787</SRS> <SRS>EPSG:2788</SRS> <SRS>EPSG:2789</SRS> <SRS>EPSG:2790</SRS> <SRS>EPSG:2791</SRS> <SRS>EPSG:2792</SRS> <SRS>EPSG:2793</SRS> <SRS>EPSG:2794</SRS> <SRS>EPSG:2795</SRS> <SRS>EPSG:2796</SRS> <SRS>EPSG:2797</SRS> <SRS>EPSG:2798</SRS> <SRS>EPSG:2799</SRS> <SRS>EPSG:2800</SRS> <SRS>EPSG:2801</SRS> <SRS>EPSG:2802</SRS> <SRS>EPSG:2803</SRS> <SRS>EPSG:2804</SRS> <SRS>EPSG:2805</SRS> <SRS>EPSG:2806</SRS> <SRS>EPSG:2807</SRS> <SRS>EPSG:2808</SRS> <SRS>EPSG:2809</SRS> <SRS>EPSG:2810</SRS> <SRS>EPSG:2811</SRS> <SRS>EPSG:2812</SRS> <SRS>EPSG:2813</SRS> <SRS>EPSG:2814</SRS> <SRS>EPSG:2815</SRS> <SRS>EPSG:2816</SRS> <SRS>EPSG:2817</SRS> <SRS>EPSG:2818</SRS> <SRS>EPSG:2819</SRS> <SRS>EPSG:2820</SRS> <SRS>EPSG:2821</SRS> <SRS>EPSG:2822</SRS> <SRS>EPSG:2823</SRS> <SRS>EPSG:2824</SRS> <SRS>EPSG:2825</SRS> <SRS>EPSG:2826</SRS> <SRS>EPSG:2827</SRS> <SRS>EPSG:2828</SRS> <SRS>EPSG:2829</SRS> <SRS>EPSG:2830</SRS> <SRS>EPSG:2831</SRS> <SRS>EPSG:2832</SRS> <SRS>EPSG:2833</SRS> <SRS>EPSG:2834</SRS> <SRS>EPSG:2835</SRS> <SRS>EPSG:2836</SRS> <SRS>EPSG:2837</SRS> <SRS>EPSG:2838</SRS> <SRS>EPSG:2839</SRS> <SRS>EPSG:2840</SRS> <SRS>EPSG:2841</SRS> <SRS>EPSG:2842</SRS> <SRS>EPSG:2843</SRS> <SRS>EPSG:2844</SRS> <SRS>EPSG:2845</SRS> <SRS>EPSG:2846</SRS> <SRS>EPSG:2847</SRS> <SRS>EPSG:2848</SRS> <SRS>EPSG:2849</SRS> <SRS>EPSG:2850</SRS> <SRS>EPSG:2851</SRS> <SRS>EPSG:2852</SRS> <SRS>EPSG:2853</SRS> <SRS>EPSG:2854</SRS> <SRS>EPSG:2855</SRS> <SRS>EPSG:2856</SRS> <SRS>EPSG:2857</SRS> <SRS>EPSG:2858</SRS> <SRS>EPSG:2859</SRS> <SRS>EPSG:2860</SRS> <SRS>EPSG:2861</SRS> <SRS>EPSG:2862</SRS> <SRS>EPSG:2863</SRS> <SRS>EPSG:2864</SRS> <SRS>EPSG:2865</SRS> <SRS>EPSG:2866</SRS> <SRS>EPSG:2867</SRS> <SRS>EPSG:2868</SRS> <SRS>EPSG:2869</SRS> <SRS>EPSG:2870</SRS> <SRS>EPSG:2871</SRS> <SRS>EPSG:2872</SRS> <SRS>EPSG:2873</SRS> <SRS>EPSG:2874</SRS> <SRS>EPSG:2875</SRS> <SRS>EPSG:2876</SRS> <SRS>EPSG:2877</SRS> <SRS>EPSG:2878</SRS> <SRS>EPSG:2879</SRS> <SRS>EPSG:2880</SRS> <SRS>EPSG:2881</SRS> <SRS>EPSG:2882</SRS> <SRS>EPSG:2883</SRS> <SRS>EPSG:2884</SRS> <SRS>EPSG:2885</SRS> <SRS>EPSG:2886</SRS> <SRS>EPSG:2887</SRS> <SRS>EPSG:2888</SRS> <SRS>EPSG:2889</SRS> <SRS>EPSG:2890</SRS> <SRS>EPSG:2891</SRS> <SRS>EPSG:2892</SRS> <SRS>EPSG:2893</SRS> <SRS>EPSG:2894</SRS> <SRS>EPSG:2895</SRS> <SRS>EPSG:2896</SRS> <SRS>EPSG:2897</SRS> <SRS>EPSG:2898</SRS> <SRS>EPSG:2899</SRS> <SRS>EPSG:2900</SRS> <SRS>EPSG:2901</SRS> <SRS>EPSG:2902</SRS> <SRS>EPSG:2903</SRS> <SRS>EPSG:2904</SRS> <SRS>EPSG:2905</SRS> <SRS>EPSG:2906</SRS> <SRS>EPSG:2907</SRS> <SRS>EPSG:2908</SRS> <SRS>EPSG:2909</SRS> <SRS>EPSG:2910</SRS> <SRS>EPSG:2911</SRS> <SRS>EPSG:2912</SRS> <SRS>EPSG:2913</SRS> <SRS>EPSG:2914</SRS> <SRS>EPSG:2915</SRS> <SRS>EPSG:2916</SRS> <SRS>EPSG:2917</SRS> <SRS>EPSG:2918</SRS> <SRS>EPSG:2919</SRS> <SRS>EPSG:2920</SRS> <SRS>EPSG:2921</SRS> <SRS>EPSG:2922</SRS> <SRS>EPSG:2923</SRS> <SRS>EPSG:2924</SRS> <SRS>EPSG:2925</SRS> <SRS>EPSG:2926</SRS> <SRS>EPSG:2927</SRS> <SRS>EPSG:2928</SRS> <SRS>EPSG:2929</SRS> <SRS>EPSG:2930</SRS> <SRS>EPSG:2931</SRS> <SRS>EPSG:2932</SRS> <SRS>EPSG:2933</SRS> <SRS>EPSG:2934</SRS> <SRS>EPSG:2935</SRS> <SRS>EPSG:2936</SRS> <SRS>EPSG:2937</SRS> <SRS>EPSG:2938</SRS> <SRS>EPSG:2939</SRS> <SRS>EPSG:2940</SRS> <SRS>EPSG:2941</SRS> <SRS>EPSG:2942</SRS> <SRS>EPSG:2943</SRS> <SRS>EPSG:2944</SRS> <SRS>EPSG:2945</SRS> <SRS>EPSG:2946</SRS> <SRS>EPSG:2947</SRS> <SRS>EPSG:2948</SRS> <SRS>EPSG:2949</SRS> <SRS>EPSG:2950</SRS> <SRS>EPSG:2951</SRS> <SRS>EPSG:2952</SRS> <SRS>EPSG:2953</SRS> <SRS>EPSG:2954</SRS> <SRS>EPSG:2955</SRS> <SRS>EPSG:2956</SRS> <SRS>EPSG:2957</SRS> <SRS>EPSG:2958</SRS> <SRS>EPSG:2959</SRS> <SRS>EPSG:2960</SRS> <SRS>EPSG:2961</SRS> <SRS>EPSG:2962</SRS> <SRS>EPSG:2963</SRS> <SRS>EPSG:2964</SRS> <SRS>EPSG:2965</SRS> <SRS>EPSG:2966</SRS> <SRS>EPSG:2967</SRS> <SRS>EPSG:2968</SRS> <SRS>EPSG:2969</SRS> <SRS>EPSG:2970</SRS> <SRS>EPSG:2971</SRS> <SRS>EPSG:2972</SRS> <SRS>EPSG:2973</SRS> <SRS>EPSG:2975</SRS> <SRS>EPSG:2976</SRS> <SRS>EPSG:2977</SRS> <SRS>EPSG:2978</SRS> <SRS>EPSG:2979</SRS> <SRS>EPSG:2980</SRS> <SRS>EPSG:2981</SRS> <SRS>EPSG:2982</SRS> <SRS>EPSG:2983</SRS> <SRS>EPSG:2984</SRS> <SRS>EPSG:2985</SRS> <SRS>EPSG:2986</SRS> <SRS>EPSG:2987</SRS> <SRS>EPSG:2988</SRS> <SRS>EPSG:2989</SRS> <SRS>EPSG:2990</SRS> <SRS>EPSG:2991</SRS> <SRS>EPSG:2992</SRS> <SRS>EPSG:2993</SRS> <SRS>EPSG:2994</SRS> <SRS>EPSG:2995</SRS> <SRS>EPSG:2996</SRS> <SRS>EPSG:2997</SRS> <SRS>EPSG:2998</SRS> <SRS>EPSG:2999</SRS> <SRS>EPSG:3000</SRS> <SRS>EPSG:3001</SRS> <SRS>EPSG:3002</SRS> <SRS>EPSG:3003</SRS> <SRS>EPSG:3004</SRS> <SRS>EPSG:3005</SRS> <SRS>EPSG:3006</SRS> <SRS>EPSG:3007</SRS> <SRS>EPSG:3008</SRS> <SRS>EPSG:3009</SRS> <SRS>EPSG:3010</SRS> <SRS>EPSG:3011</SRS> <SRS>EPSG:3012</SRS> <SRS>EPSG:3013</SRS> <SRS>EPSG:3014</SRS> <SRS>EPSG:3015</SRS> <SRS>EPSG:3016</SRS> <SRS>EPSG:3017</SRS> <SRS>EPSG:3018</SRS> <SRS>EPSG:3019</SRS> <SRS>EPSG:3020</SRS> <SRS>EPSG:3021</SRS> <SRS>EPSG:3022</SRS> <SRS>EPSG:3023</SRS> <SRS>EPSG:3024</SRS> <SRS>EPSG:3025</SRS> <SRS>EPSG:3026</SRS> <SRS>EPSG:3027</SRS> <SRS>EPSG:3028</SRS> <SRS>EPSG:3029</SRS> <SRS>EPSG:3030</SRS> <SRS>EPSG:3031</SRS> <SRS>EPSG:3032</SRS> <SRS>EPSG:3033</SRS> <SRS>EPSG:3034</SRS> <SRS>EPSG:3035</SRS> <SRS>EPSG:3036</SRS> <SRS>EPSG:3037</SRS> <SRS>EPSG:3038</SRS> <SRS>EPSG:3039</SRS> <SRS>EPSG:3040</SRS> <SRS>EPSG:3041</SRS> <SRS>EPSG:3042</SRS> <SRS>EPSG:3043</SRS> <SRS>EPSG:3044</SRS> <SRS>EPSG:3045</SRS> <SRS>EPSG:3046</SRS> <SRS>EPSG:3047</SRS> <SRS>EPSG:3048</SRS> <SRS>EPSG:3049</SRS> <SRS>EPSG:3050</SRS> <SRS>EPSG:3051</SRS> <SRS>EPSG:3052</SRS> <SRS>EPSG:3053</SRS> <SRS>EPSG:3054</SRS> <SRS>EPSG:3055</SRS> <SRS>EPSG:3056</SRS> <SRS>EPSG:3057</SRS> <SRS>EPSG:3058</SRS> <SRS>EPSG:3059</SRS> <SRS>EPSG:3060</SRS> <SRS>EPSG:3061</SRS> <SRS>EPSG:3062</SRS> <SRS>EPSG:3063</SRS> <SRS>EPSG:3064</SRS> <SRS>EPSG:3065</SRS> <SRS>EPSG:3066</SRS> <SRS>EPSG:3067</SRS> <SRS>EPSG:3068</SRS> <SRS>EPSG:3069</SRS> <SRS>EPSG:3070</SRS> <SRS>EPSG:3071</SRS> <SRS>EPSG:3072</SRS> <SRS>EPSG:3073</SRS> <SRS>EPSG:3074</SRS> <SRS>EPSG:3075</SRS> <SRS>EPSG:3076</SRS> <SRS>EPSG:3077</SRS> <SRS>EPSG:3078</SRS> <SRS>EPSG:3079</SRS> <SRS>EPSG:3080</SRS> <SRS>EPSG:3081</SRS> <SRS>EPSG:3082</SRS> <SRS>EPSG:3083</SRS> <SRS>EPSG:3084</SRS> <SRS>EPSG:3085</SRS> <SRS>EPSG:3086</SRS> <SRS>EPSG:3087</SRS> <SRS>EPSG:3088</SRS> <SRS>EPSG:3089</SRS> <SRS>EPSG:3090</SRS> <SRS>EPSG:3091</SRS> <SRS>EPSG:3092</SRS> <SRS>EPSG:3093</SRS> <SRS>EPSG:3094</SRS> <SRS>EPSG:3095</SRS> <SRS>EPSG:3096</SRS> <SRS>EPSG:3097</SRS> <SRS>EPSG:3098</SRS> <SRS>EPSG:3099</SRS> <SRS>EPSG:3100</SRS> <SRS>EPSG:3101</SRS> <SRS>EPSG:3102</SRS> <SRS>EPSG:3103</SRS> <SRS>EPSG:3104</SRS> <SRS>EPSG:3105</SRS> <SRS>EPSG:3106</SRS> <SRS>EPSG:3107</SRS> <SRS>EPSG:3108</SRS> <SRS>EPSG:3109</SRS> <SRS>EPSG:3110</SRS> <SRS>EPSG:3111</SRS> <SRS>EPSG:3112</SRS> <SRS>EPSG:3113</SRS> <SRS>EPSG:3114</SRS> <SRS>EPSG:3115</SRS> <SRS>EPSG:3116</SRS> <SRS>EPSG:3117</SRS> <SRS>EPSG:3118</SRS> <SRS>EPSG:3119</SRS> <SRS>EPSG:3120</SRS> <SRS>EPSG:3121</SRS> <SRS>EPSG:3122</SRS> <SRS>EPSG:3123</SRS> <SRS>EPSG:3124</SRS> <SRS>EPSG:3125</SRS> <SRS>EPSG:3126</SRS> <SRS>EPSG:3127</SRS> <SRS>EPSG:3128</SRS> <SRS>EPSG:3129</SRS> <SRS>EPSG:3130</SRS> <SRS>EPSG:3131</SRS> <SRS>EPSG:3132</SRS> <SRS>EPSG:3133</SRS> <SRS>EPSG:3134</SRS> <SRS>EPSG:3135</SRS> <SRS>EPSG:3136</SRS> <SRS>EPSG:3137</SRS> <SRS>EPSG:3138</SRS> <SRS>EPSG:3139</SRS> <SRS>EPSG:3140</SRS> <SRS>EPSG:3141</SRS> <SRS>EPSG:3142</SRS> <SRS>EPSG:3143</SRS> <SRS>EPSG:3144</SRS> <SRS>EPSG:3145</SRS> <SRS>EPSG:3146</SRS> <SRS>EPSG:3147</SRS> <SRS>EPSG:3148</SRS> <SRS>EPSG:3149</SRS> <SRS>EPSG:3150</SRS> <SRS>EPSG:3151</SRS> <SRS>EPSG:3152</SRS> <SRS>EPSG:3153</SRS> <SRS>EPSG:3154</SRS> <SRS>EPSG:3155</SRS> <SRS>EPSG:3156</SRS> <SRS>EPSG:3157</SRS> <SRS>EPSG:3158</SRS> <SRS>EPSG:3159</SRS> <SRS>EPSG:3160</SRS> <SRS>EPSG:3161</SRS> <SRS>EPSG:3162</SRS> <SRS>EPSG:3163</SRS> <SRS>EPSG:3164</SRS> <SRS>EPSG:3165</SRS> <SRS>EPSG:3166</SRS> <SRS>EPSG:3167</SRS> <SRS>EPSG:3168</SRS> <SRS>EPSG:3169</SRS> <SRS>EPSG:3170</SRS> <SRS>EPSG:3171</SRS> <SRS>EPSG:3172</SRS> <SRS>EPSG:3173</SRS> <SRS>EPSG:3174</SRS> <SRS>EPSG:3175</SRS> <SRS>EPSG:3176</SRS> <SRS>EPSG:3177</SRS> <SRS>EPSG:3178</SRS> <SRS>EPSG:3179</SRS> <SRS>EPSG:3180</SRS> <SRS>EPSG:3181</SRS> <SRS>EPSG:3182</SRS> <SRS>EPSG:3183</SRS> <SRS>EPSG:3184</SRS> <SRS>EPSG:3185</SRS> <SRS>EPSG:3186</SRS> <SRS>EPSG:3187</SRS> <SRS>EPSG:3188</SRS> <SRS>EPSG:3189</SRS> <SRS>EPSG:3190</SRS> <SRS>EPSG:3191</SRS> <SRS>EPSG:3192</SRS> <SRS>EPSG:3193</SRS> <SRS>EPSG:3194</SRS> <SRS>EPSG:3195</SRS> <SRS>EPSG:3196</SRS> <SRS>EPSG:3197</SRS> <SRS>EPSG:3198</SRS> <SRS>EPSG:3199</SRS> <SRS>EPSG:3200</SRS> <SRS>EPSG:3201</SRS> <SRS>EPSG:3202</SRS> <SRS>EPSG:3203</SRS> <SRS>EPSG:3204</SRS> <SRS>EPSG:3205</SRS> <SRS>EPSG:3206</SRS> <SRS>EPSG:3207</SRS> <SRS>EPSG:3208</SRS> <SRS>EPSG:3209</SRS> <SRS>EPSG:3210</SRS> <SRS>EPSG:3211</SRS> <SRS>EPSG:3212</SRS> <SRS>EPSG:3213</SRS> <SRS>EPSG:3214</SRS> <SRS>EPSG:3215</SRS> <SRS>EPSG:3216</SRS> <SRS>EPSG:3217</SRS> <SRS>EPSG:3218</SRS> <SRS>EPSG:3219</SRS> <SRS>EPSG:3220</SRS> <SRS>EPSG:3221</SRS> <SRS>EPSG:3222</SRS> <SRS>EPSG:3223</SRS> <SRS>EPSG:3224</SRS> <SRS>EPSG:3225</SRS> <SRS>EPSG:3226</SRS> <SRS>EPSG:3227</SRS> <SRS>EPSG:3228</SRS> <SRS>EPSG:3229</SRS> <SRS>EPSG:3230</SRS> <SRS>EPSG:3231</SRS> <SRS>EPSG:3232</SRS> <SRS>EPSG:3233</SRS> <SRS>EPSG:3234</SRS> <SRS>EPSG:3235</SRS> <SRS>EPSG:3236</SRS> <SRS>EPSG:3237</SRS> <SRS>EPSG:3238</SRS> <SRS>EPSG:3239</SRS> <SRS>EPSG:3240</SRS> <SRS>EPSG:3241</SRS> <SRS>EPSG:3242</SRS> <SRS>EPSG:3243</SRS> <SRS>EPSG:3244</SRS> <SRS>EPSG:3245</SRS> <SRS>EPSG:3246</SRS> <SRS>EPSG:3247</SRS> <SRS>EPSG:3248</SRS> <SRS>EPSG:3249</SRS> <SRS>EPSG:3250</SRS> <SRS>EPSG:3251</SRS> <SRS>EPSG:3252</SRS> <SRS>EPSG:3253</SRS> <SRS>EPSG:3254</SRS> <SRS>EPSG:3255</SRS> <SRS>EPSG:3256</SRS> <SRS>EPSG:3257</SRS> <SRS>EPSG:3258</SRS> <SRS>EPSG:3259</SRS> <SRS>EPSG:3260</SRS> <SRS>EPSG:3261</SRS> <SRS>EPSG:3262</SRS> <SRS>EPSG:3263</SRS> <SRS>EPSG:3264</SRS> <SRS>EPSG:3265</SRS> <SRS>EPSG:3266</SRS> <SRS>EPSG:3267</SRS> <SRS>EPSG:3268</SRS> <SRS>EPSG:3269</SRS> <SRS>EPSG:3270</SRS> <SRS>EPSG:3271</SRS> <SRS>EPSG:3272</SRS> <SRS>EPSG:3273</SRS> <SRS>EPSG:3274</SRS> <SRS>EPSG:3275</SRS> <SRS>EPSG:3276</SRS> <SRS>EPSG:3277</SRS> <SRS>EPSG:3278</SRS> <SRS>EPSG:3279</SRS> <SRS>EPSG:3280</SRS> <SRS>EPSG:3281</SRS> <SRS>EPSG:3282</SRS> <SRS>EPSG:3283</SRS> <SRS>EPSG:3284</SRS> <SRS>EPSG:3285</SRS> <SRS>EPSG:3286</SRS> <SRS>EPSG:3287</SRS> <SRS>EPSG:3288</SRS> <SRS>EPSG:3289</SRS> <SRS>EPSG:3290</SRS> <SRS>EPSG:3291</SRS> <SRS>EPSG:3292</SRS> <SRS>EPSG:3293</SRS> <SRS>EPSG:3294</SRS> <SRS>EPSG:3295</SRS> <SRS>EPSG:3296</SRS> <SRS>EPSG:3297</SRS> <SRS>EPSG:3298</SRS> <SRS>EPSG:3299</SRS> <SRS>EPSG:3300</SRS> <SRS>EPSG:3301</SRS> <SRS>EPSG:3302</SRS> <SRS>EPSG:3303</SRS> <SRS>EPSG:3304</SRS> <SRS>EPSG:3305</SRS> <SRS>EPSG:3306</SRS> <SRS>EPSG:3307</SRS> <SRS>EPSG:3308</SRS> <SRS>EPSG:3309</SRS> <SRS>EPSG:3310</SRS> <SRS>EPSG:3311</SRS> <SRS>EPSG:3312</SRS> <SRS>EPSG:3313</SRS> <SRS>EPSG:3314</SRS> <SRS>EPSG:3315</SRS> <SRS>EPSG:3316</SRS> <SRS>EPSG:3317</SRS> <SRS>EPSG:3318</SRS> <SRS>EPSG:3319</SRS> <SRS>EPSG:3320</SRS> <SRS>EPSG:3321</SRS> <SRS>EPSG:3322</SRS> <SRS>EPSG:3323</SRS> <SRS>EPSG:3324</SRS> <SRS>EPSG:3325</SRS> <SRS>EPSG:3326</SRS> <SRS>EPSG:3327</SRS> <SRS>EPSG:3328</SRS> <SRS>EPSG:3329</SRS> <SRS>EPSG:3330</SRS> <SRS>EPSG:3331</SRS> <SRS>EPSG:3332</SRS> <SRS>EPSG:3333</SRS> <SRS>EPSG:3334</SRS> <SRS>EPSG:3335</SRS> <SRS>EPSG:3336</SRS> <SRS>EPSG:3337</SRS> <SRS>EPSG:3338</SRS> <SRS>EPSG:3339</SRS> <SRS>EPSG:3340</SRS> <SRS>EPSG:3341</SRS> <SRS>EPSG:3342</SRS> <SRS>EPSG:3343</SRS> <SRS>EPSG:3344</SRS> <SRS>EPSG:3345</SRS> <SRS>EPSG:3346</SRS> <SRS>EPSG:3347</SRS> <SRS>EPSG:3348</SRS> <SRS>EPSG:3349</SRS> <SRS>EPSG:3350</SRS> <SRS>EPSG:3351</SRS> <SRS>EPSG:3352</SRS> <SRS>EPSG:3353</SRS> <SRS>EPSG:3354</SRS> <SRS>EPSG:3355</SRS> <SRS>EPSG:3356</SRS> <SRS>EPSG:3357</SRS> <SRS>EPSG:3358</SRS> <SRS>EPSG:3359</SRS> <SRS>EPSG:3360</SRS> <SRS>EPSG:3361</SRS> <SRS>EPSG:3362</SRS> <SRS>EPSG:3363</SRS> <SRS>EPSG:3364</SRS> <SRS>EPSG:3365</SRS> <SRS>EPSG:3366</SRS> <SRS>EPSG:3367</SRS> <SRS>EPSG:3368</SRS> <SRS>EPSG:3369</SRS> <SRS>EPSG:3370</SRS> <SRS>EPSG:3371</SRS> <SRS>EPSG:3372</SRS> <SRS>EPSG:3373</SRS> <SRS>EPSG:3374</SRS> <SRS>EPSG:3375</SRS> <SRS>EPSG:3376</SRS> <SRS>EPSG:3377</SRS> <SRS>EPSG:3378</SRS> <SRS>EPSG:3379</SRS> <SRS>EPSG:3380</SRS> <SRS>EPSG:3381</SRS> <SRS>EPSG:3382</SRS> <SRS>EPSG:3383</SRS> <SRS>EPSG:3384</SRS> <SRS>EPSG:3385</SRS> <SRS>EPSG:3386</SRS> <SRS>EPSG:3387</SRS> <SRS>EPSG:3388</SRS> <SRS>EPSG:3389</SRS> <SRS>EPSG:3390</SRS> <SRS>EPSG:3391</SRS> <SRS>EPSG:3392</SRS> <SRS>EPSG:3393</SRS> <SRS>EPSG:3394</SRS> <SRS>EPSG:3395</SRS> <SRS>EPSG:3396</SRS> <SRS>EPSG:3397</SRS> <SRS>EPSG:3398</SRS> <SRS>EPSG:3399</SRS> <SRS>EPSG:3400</SRS> <SRS>EPSG:3401</SRS> <SRS>EPSG:3402</SRS> <SRS>EPSG:3403</SRS> <SRS>EPSG:3404</SRS> <SRS>EPSG:3405</SRS> <SRS>EPSG:3406</SRS> <SRS>EPSG:3407</SRS> <SRS>EPSG:3408</SRS> <SRS>EPSG:3409</SRS> <SRS>EPSG:3410</SRS> <SRS>EPSG:3411</SRS> <SRS>EPSG:3412</SRS> <SRS>EPSG:3413</SRS> <SRS>EPSG:3414</SRS> <SRS>EPSG:3415</SRS> <SRS>EPSG:3416</SRS> <SRS>EPSG:3417</SRS> <SRS>EPSG:3418</SRS> <SRS>EPSG:3419</SRS> <SRS>EPSG:3420</SRS> <SRS>EPSG:3421</SRS> <SRS>EPSG:3422</SRS> <SRS>EPSG:3423</SRS> <SRS>EPSG:3424</SRS> <SRS>EPSG:3425</SRS> <SRS>EPSG:3426</SRS> <SRS>EPSG:3427</SRS> <SRS>EPSG:3428</SRS> <SRS>EPSG:3429</SRS> <SRS>EPSG:3430</SRS> <SRS>EPSG:3431</SRS> <SRS>EPSG:3432</SRS> <SRS>EPSG:3433</SRS> <SRS>EPSG:3434</SRS> <SRS>EPSG:3435</SRS> <SRS>EPSG:3436</SRS> <SRS>EPSG:3437</SRS> <SRS>EPSG:3438</SRS> <SRS>EPSG:3439</SRS> <SRS>EPSG:3440</SRS> <SRS>EPSG:3441</SRS> <SRS>EPSG:3442</SRS> <SRS>EPSG:3443</SRS> <SRS>EPSG:3444</SRS> <SRS>EPSG:3445</SRS> <SRS>EPSG:3446</SRS> <SRS>EPSG:3447</SRS> <SRS>EPSG:3448</SRS> <SRS>EPSG:3449</SRS> <SRS>EPSG:3450</SRS> <SRS>EPSG:3451</SRS> <SRS>EPSG:3452</SRS> <SRS>EPSG:3453</SRS> <SRS>EPSG:3454</SRS> <SRS>EPSG:3455</SRS> <SRS>EPSG:3456</SRS> <SRS>EPSG:3457</SRS> <SRS>EPSG:3458</SRS> <SRS>EPSG:3459</SRS> <SRS>EPSG:3460</SRS> <SRS>EPSG:3461</SRS> <SRS>EPSG:3462</SRS> <SRS>EPSG:3463</SRS> <SRS>EPSG:3464</SRS> <SRS>EPSG:3465</SRS> <SRS>EPSG:3466</SRS> <SRS>EPSG:3467</SRS> <SRS>EPSG:3468</SRS> <SRS>EPSG:3469</SRS> <SRS>EPSG:3470</SRS> <SRS>EPSG:3471</SRS> <SRS>EPSG:3472</SRS> <SRS>EPSG:3473</SRS> <SRS>EPSG:3474</SRS> <SRS>EPSG:3475</SRS> <SRS>EPSG:3476</SRS> <SRS>EPSG:3477</SRS> <SRS>EPSG:3478</SRS> <SRS>EPSG:3479</SRS> <SRS>EPSG:3480</SRS> <SRS>EPSG:3481</SRS> <SRS>EPSG:3482</SRS> <SRS>EPSG:3483</SRS> <SRS>EPSG:3484</SRS> <SRS>EPSG:3485</SRS> <SRS>EPSG:3486</SRS> <SRS>EPSG:3487</SRS> <SRS>EPSG:3488</SRS> <SRS>EPSG:3489</SRS> <SRS>EPSG:3490</SRS> <SRS>EPSG:3491</SRS> <SRS>EPSG:3492</SRS> <SRS>EPSG:3493</SRS> <SRS>EPSG:3494</SRS> <SRS>EPSG:3495</SRS> <SRS>EPSG:3496</SRS> <SRS>EPSG:3497</SRS> <SRS>EPSG:3498</SRS> <SRS>EPSG:3499</SRS> <SRS>EPSG:3500</SRS> <SRS>EPSG:3501</SRS> <SRS>EPSG:3502</SRS> <SRS>EPSG:3503</SRS> <SRS>EPSG:3504</SRS> <SRS>EPSG:3505</SRS> <SRS>EPSG:3506</SRS> <SRS>EPSG:3507</SRS> <SRS>EPSG:3508</SRS> <SRS>EPSG:3509</SRS> <SRS>EPSG:3510</SRS> <SRS>EPSG:3511</SRS> <SRS>EPSG:3512</SRS> <SRS>EPSG:3513</SRS> <SRS>EPSG:3514</SRS> <SRS>EPSG:3515</SRS> <SRS>EPSG:3516</SRS> <SRS>EPSG:3517</SRS> <SRS>EPSG:3518</SRS> <SRS>EPSG:3519</SRS> <SRS>EPSG:3520</SRS> <SRS>EPSG:3521</SRS> <SRS>EPSG:3522</SRS> <SRS>EPSG:3523</SRS> <SRS>EPSG:3524</SRS> <SRS>EPSG:3525</SRS> <SRS>EPSG:3526</SRS> <SRS>EPSG:3527</SRS> <SRS>EPSG:3528</SRS> <SRS>EPSG:3529</SRS> <SRS>EPSG:3530</SRS> <SRS>EPSG:3531</SRS> <SRS>EPSG:3532</SRS> <SRS>EPSG:3533</SRS> <SRS>EPSG:3534</SRS> <SRS>EPSG:3535</SRS> <SRS>EPSG:3536</SRS> <SRS>EPSG:3537</SRS> <SRS>EPSG:3538</SRS> <SRS>EPSG:3539</SRS> <SRS>EPSG:3540</SRS> <SRS>EPSG:3541</SRS> <SRS>EPSG:3542</SRS> <SRS>EPSG:3543</SRS> <SRS>EPSG:3544</SRS> <SRS>EPSG:3545</SRS> <SRS>EPSG:3546</SRS> <SRS>EPSG:3547</SRS> <SRS>EPSG:3548</SRS> <SRS>EPSG:3549</SRS> <SRS>EPSG:3550</SRS> <SRS>EPSG:3551</SRS> <SRS>EPSG:3552</SRS> <SRS>EPSG:3553</SRS> <SRS>EPSG:3554</SRS> <SRS>EPSG:3555</SRS> <SRS>EPSG:3556</SRS> <SRS>EPSG:3557</SRS> <SRS>EPSG:3558</SRS> <SRS>EPSG:3559</SRS> <SRS>EPSG:3560</SRS> <SRS>EPSG:3561</SRS> <SRS>EPSG:3562</SRS> <SRS>EPSG:3563</SRS> <SRS>EPSG:3564</SRS> <SRS>EPSG:3565</SRS> <SRS>EPSG:3566</SRS> <SRS>EPSG:3567</SRS> <SRS>EPSG:3568</SRS> <SRS>EPSG:3569</SRS> <SRS>EPSG:3570</SRS> <SRS>EPSG:3571</SRS> <SRS>EPSG:3572</SRS> <SRS>EPSG:3573</SRS> <SRS>EPSG:3574</SRS> <SRS>EPSG:3575</SRS> <SRS>EPSG:3576</SRS> <SRS>EPSG:3577</SRS> <SRS>EPSG:3578</SRS> <SRS>EPSG:3579</SRS> <SRS>EPSG:3580</SRS> <SRS>EPSG:3581</SRS> <SRS>EPSG:3582</SRS> <SRS>EPSG:3583</SRS> <SRS>EPSG:3584</SRS> <SRS>EPSG:3585</SRS> <SRS>EPSG:3586</SRS> <SRS>EPSG:3587</SRS> <SRS>EPSG:3588</SRS> <SRS>EPSG:3589</SRS> <SRS>EPSG:3590</SRS> <SRS>EPSG:3591</SRS> <SRS>EPSG:3592</SRS> <SRS>EPSG:3593</SRS> <SRS>EPSG:3594</SRS> <SRS>EPSG:3595</SRS> <SRS>EPSG:3596</SRS> <SRS>EPSG:3597</SRS> <SRS>EPSG:3598</SRS> <SRS>EPSG:3599</SRS> <SRS>EPSG:3600</SRS> <SRS>EPSG:3601</SRS> <SRS>EPSG:3602</SRS> <SRS>EPSG:3603</SRS> <SRS>EPSG:3604</SRS> <SRS>EPSG:3605</SRS> <SRS>EPSG:3606</SRS> <SRS>EPSG:3607</SRS> <SRS>EPSG:3608</SRS> <SRS>EPSG:3609</SRS> <SRS>EPSG:3610</SRS> <SRS>EPSG:3611</SRS> <SRS>EPSG:3612</SRS> <SRS>EPSG:3613</SRS> <SRS>EPSG:3614</SRS> <SRS>EPSG:3615</SRS> <SRS>EPSG:3616</SRS> <SRS>EPSG:3617</SRS> <SRS>EPSG:3618</SRS> <SRS>EPSG:3619</SRS> <SRS>EPSG:3620</SRS> <SRS>EPSG:3621</SRS> <SRS>EPSG:3622</SRS> <SRS>EPSG:3623</SRS> <SRS>EPSG:3624</SRS> <SRS>EPSG:3625</SRS> <SRS>EPSG:3626</SRS> <SRS>EPSG:3627</SRS> <SRS>EPSG:3628</SRS> <SRS>EPSG:3629</SRS> <SRS>EPSG:3630</SRS> <SRS>EPSG:3631</SRS> <SRS>EPSG:3632</SRS> <SRS>EPSG:3633</SRS> <SRS>EPSG:3634</SRS> <SRS>EPSG:3635</SRS> <SRS>EPSG:3636</SRS> <SRS>EPSG:3637</SRS> <SRS>EPSG:3638</SRS> <SRS>EPSG:3639</SRS> <SRS>EPSG:3640</SRS> <SRS>EPSG:3641</SRS> <SRS>EPSG:3642</SRS> <SRS>EPSG:3643</SRS> <SRS>EPSG:3644</SRS> <SRS>EPSG:3645</SRS> <SRS>EPSG:3646</SRS> <SRS>EPSG:3647</SRS> <SRS>EPSG:3648</SRS> <SRS>EPSG:3649</SRS> <SRS>EPSG:3650</SRS> <SRS>EPSG:3651</SRS> <SRS>EPSG:3652</SRS> <SRS>EPSG:3653</SRS> <SRS>EPSG:3654</SRS> <SRS>EPSG:3655</SRS> <SRS>EPSG:3656</SRS> <SRS>EPSG:3657</SRS> <SRS>EPSG:3658</SRS> <SRS>EPSG:3659</SRS> <SRS>EPSG:3660</SRS> <SRS>EPSG:3661</SRS> <SRS>EPSG:3662</SRS> <SRS>EPSG:3663</SRS> <SRS>EPSG:3664</SRS> <SRS>EPSG:3665</SRS> <SRS>EPSG:3666</SRS> <SRS>EPSG:3667</SRS> <SRS>EPSG:3668</SRS> <SRS>EPSG:3669</SRS> <SRS>EPSG:3670</SRS> <SRS>EPSG:3671</SRS> <SRS>EPSG:3672</SRS> <SRS>EPSG:3673</SRS> <SRS>EPSG:3674</SRS> <SRS>EPSG:3675</SRS> <SRS>EPSG:3676</SRS> <SRS>EPSG:3677</SRS> <SRS>EPSG:3678</SRS> <SRS>EPSG:3679</SRS> <SRS>EPSG:3680</SRS> <SRS>EPSG:3681</SRS> <SRS>EPSG:3682</SRS> <SRS>EPSG:3683</SRS> <SRS>EPSG:3684</SRS> <SRS>EPSG:3685</SRS> <SRS>EPSG:3686</SRS> <SRS>EPSG:3687</SRS> <SRS>EPSG:3688</SRS> <SRS>EPSG:3689</SRS> <SRS>EPSG:3690</SRS> <SRS>EPSG:3691</SRS> <SRS>EPSG:3692</SRS> <SRS>EPSG:3693</SRS> <SRS>EPSG:3694</SRS> <SRS>EPSG:3695</SRS> <SRS>EPSG:3696</SRS> <SRS>EPSG:3697</SRS> <SRS>EPSG:3698</SRS> <SRS>EPSG:3699</SRS> <SRS>EPSG:3700</SRS> <SRS>EPSG:3701</SRS> <SRS>EPSG:3702</SRS> <SRS>EPSG:3703</SRS> <SRS>EPSG:3704</SRS> <SRS>EPSG:3705</SRS> <SRS>EPSG:3706</SRS> <SRS>EPSG:3707</SRS> <SRS>EPSG:3708</SRS> <SRS>EPSG:3709</SRS> <SRS>EPSG:3710</SRS> <SRS>EPSG:3711</SRS> <SRS>EPSG:3712</SRS> <SRS>EPSG:3713</SRS> <SRS>EPSG:3714</SRS> <SRS>EPSG:3715</SRS> <SRS>EPSG:3716</SRS> <SRS>EPSG:3717</SRS> <SRS>EPSG:3718</SRS> <SRS>EPSG:3719</SRS> <SRS>EPSG:3720</SRS> <SRS>EPSG:3721</SRS> <SRS>EPSG:3722</SRS> <SRS>EPSG:3723</SRS> <SRS>EPSG:3724</SRS> <SRS>EPSG:3725</SRS> <SRS>EPSG:3726</SRS> <SRS>EPSG:3727</SRS> <SRS>EPSG:3728</SRS> <SRS>EPSG:3729</SRS> <SRS>EPSG:3730</SRS> <SRS>EPSG:3731</SRS> <SRS>EPSG:3732</SRS> <SRS>EPSG:3733</SRS> <SRS>EPSG:3734</SRS> <SRS>EPSG:3735</SRS> <SRS>EPSG:3736</SRS> <SRS>EPSG:3737</SRS> <SRS>EPSG:3738</SRS> <SRS>EPSG:3739</SRS> <SRS>EPSG:3740</SRS> <SRS>EPSG:3741</SRS> <SRS>EPSG:3742</SRS> <SRS>EPSG:3743</SRS> <SRS>EPSG:3744</SRS> <SRS>EPSG:3745</SRS> <SRS>EPSG:3746</SRS> <SRS>EPSG:3747</SRS> <SRS>EPSG:3748</SRS> <SRS>EPSG:3749</SRS> <SRS>EPSG:3750</SRS> <SRS>EPSG:3751</SRS> <SRS>EPSG:3752</SRS> <SRS>EPSG:3753</SRS> <SRS>EPSG:3754</SRS> <SRS>EPSG:3755</SRS> <SRS>EPSG:3756</SRS> <SRS>EPSG:3757</SRS> <SRS>EPSG:3758</SRS> <SRS>EPSG:3759</SRS> <SRS>EPSG:3760</SRS> <SRS>EPSG:3761</SRS> <SRS>EPSG:3762</SRS> <SRS>EPSG:3763</SRS> <SRS>EPSG:3764</SRS> <SRS>EPSG:3765</SRS> <SRS>EPSG:3766</SRS> <SRS>EPSG:3767</SRS> <SRS>EPSG:3768</SRS> <SRS>EPSG:3769</SRS> <SRS>EPSG:3770</SRS> <SRS>EPSG:3771</SRS> <SRS>EPSG:3772</SRS> <SRS>EPSG:3773</SRS> <SRS>EPSG:3774</SRS> <SRS>EPSG:3775</SRS> <SRS>EPSG:3776</SRS> <SRS>EPSG:3777</SRS> <SRS>EPSG:3778</SRS> <SRS>EPSG:3779</SRS> <SRS>EPSG:3780</SRS> <SRS>EPSG:3781</SRS> <SRS>EPSG:3782</SRS> <SRS>EPSG:3783</SRS> <SRS>EPSG:3784</SRS> <SRS>EPSG:3785</SRS> <SRS>EPSG:3786</SRS> <SRS>EPSG:3787</SRS> <SRS>EPSG:3788</SRS> <SRS>EPSG:3789</SRS> <SRS>EPSG:3790</SRS> <SRS>EPSG:3791</SRS> <SRS>EPSG:3793</SRS> <SRS>EPSG:3794</SRS> <SRS>EPSG:3795</SRS> <SRS>EPSG:3796</SRS> <SRS>EPSG:3797</SRS> <SRS>EPSG:3798</SRS> <SRS>EPSG:3799</SRS> <SRS>EPSG:3800</SRS> <SRS>EPSG:3801</SRS> <SRS>EPSG:3802</SRS> <SRS>EPSG:3812</SRS> <SRS>EPSG:3814</SRS> <SRS>EPSG:3815</SRS> <SRS>EPSG:3816</SRS> <SRS>EPSG:3819</SRS> <SRS>EPSG:3821</SRS> <SRS>EPSG:3822</SRS> <SRS>EPSG:3823</SRS> <SRS>EPSG:3824</SRS> <SRS>EPSG:3825</SRS> <SRS>EPSG:3826</SRS> <SRS>EPSG:3827</SRS> <SRS>EPSG:3828</SRS> <SRS>EPSG:3829</SRS> <SRS>EPSG:3832</SRS> <SRS>EPSG:3833</SRS> <SRS>EPSG:3834</SRS> <SRS>EPSG:3835</SRS> <SRS>EPSG:3836</SRS> <SRS>EPSG:3837</SRS> <SRS>EPSG:3838</SRS> <SRS>EPSG:3839</SRS> <SRS>EPSG:3840</SRS> <SRS>EPSG:3841</SRS> <SRS>EPSG:3842</SRS> <SRS>EPSG:3843</SRS> <SRS>EPSG:3844</SRS> <SRS>EPSG:3845</SRS> <SRS>EPSG:3846</SRS> <SRS>EPSG:3847</SRS> <SRS>EPSG:3848</SRS> <SRS>EPSG:3849</SRS> <SRS>EPSG:3850</SRS> <SRS>EPSG:3851</SRS> <SRS>EPSG:3852</SRS> <SRS>EPSG:3854</SRS> <SRS>EPSG:3855</SRS> <SRS>EPSG:3857</SRS> <SRS>EPSG:3886</SRS> <SRS>EPSG:3887</SRS> <SRS>EPSG:3888</SRS> <SRS>EPSG:3889</SRS> <SRS>EPSG:3890</SRS> <SRS>EPSG:3891</SRS> <SRS>EPSG:3892</SRS> <SRS>EPSG:3893</SRS> <SRS>EPSG:3906</SRS> <SRS>EPSG:3907</SRS> <SRS>EPSG:3908</SRS> <SRS>EPSG:3909</SRS> <SRS>EPSG:3910</SRS> <SRS>EPSG:3911</SRS> <SRS>EPSG:3912</SRS> <SRS>EPSG:3920</SRS> <SRS>EPSG:3942</SRS> <SRS>EPSG:3943</SRS> <SRS>EPSG:3944</SRS> <SRS>EPSG:3945</SRS> <SRS>EPSG:3946</SRS> <SRS>EPSG:3947</SRS> <SRS>EPSG:3948</SRS> <SRS>EPSG:3949</SRS> <SRS>EPSG:3950</SRS> <SRS>EPSG:3968</SRS> <SRS>EPSG:3969</SRS> <SRS>EPSG:3970</SRS> <SRS>EPSG:3973</SRS> <SRS>EPSG:3974</SRS> <SRS>EPSG:3975</SRS> <SRS>EPSG:3976</SRS> <SRS>EPSG:3978</SRS> <SRS>EPSG:3979</SRS> <SRS>EPSG:3985</SRS> <SRS>EPSG:3986</SRS> <SRS>EPSG:3987</SRS> <SRS>EPSG:3988</SRS> <SRS>EPSG:3989</SRS> <SRS>EPSG:3991</SRS> <SRS>EPSG:3992</SRS> <SRS>EPSG:3993</SRS> <SRS>EPSG:3994</SRS> <SRS>EPSG:3995</SRS> <SRS>EPSG:3996</SRS> <SRS>EPSG:3997</SRS> <SRS>EPSG:4000</SRS> <SRS>EPSG:4001</SRS> <SRS>EPSG:4002</SRS> <SRS>EPSG:4003</SRS> <SRS>EPSG:4004</SRS> <SRS>EPSG:4005</SRS> <SRS>EPSG:4006</SRS> <SRS>EPSG:4007</SRS> <SRS>EPSG:4008</SRS> <SRS>EPSG:4009</SRS> <SRS>EPSG:4010</SRS> <SRS>EPSG:4011</SRS> <SRS>EPSG:4012</SRS> <SRS>EPSG:4013</SRS> <SRS>EPSG:4014</SRS> <SRS>EPSG:4015</SRS> <SRS>EPSG:4016</SRS> <SRS>EPSG:4017</SRS> <SRS>EPSG:4018</SRS> <SRS>EPSG:4019</SRS> <SRS>EPSG:4020</SRS> <SRS>EPSG:4021</SRS> <SRS>EPSG:4022</SRS> <SRS>EPSG:4023</SRS> <SRS>EPSG:4024</SRS> <SRS>EPSG:4025</SRS> <SRS>EPSG:4026</SRS> <SRS>EPSG:4027</SRS> <SRS>EPSG:4028</SRS> <SRS>EPSG:4029</SRS> <SRS>EPSG:4030</SRS> <SRS>EPSG:4031</SRS> <SRS>EPSG:4032</SRS> <SRS>EPSG:4033</SRS> <SRS>EPSG:4034</SRS> <SRS>EPSG:4035</SRS> <SRS>EPSG:4036</SRS> <SRS>EPSG:4037</SRS> <SRS>EPSG:4038</SRS> <SRS>EPSG:4039</SRS> <SRS>EPSG:4040</SRS> <SRS>EPSG:4041</SRS> <SRS>EPSG:4042</SRS> <SRS>EPSG:4043</SRS> <SRS>EPSG:4044</SRS> <SRS>EPSG:4045</SRS> <SRS>EPSG:4046</SRS> <SRS>EPSG:4047</SRS> <SRS>EPSG:4048</SRS> <SRS>EPSG:4049</SRS> <SRS>EPSG:4050</SRS> <SRS>EPSG:4051</SRS> <SRS>EPSG:4052</SRS> <SRS>EPSG:4053</SRS> <SRS>EPSG:4054</SRS> <SRS>EPSG:4055</SRS> <SRS>EPSG:4056</SRS> <SRS>EPSG:4057</SRS> <SRS>EPSG:4058</SRS> <SRS>EPSG:4059</SRS> <SRS>EPSG:4060</SRS> <SRS>EPSG:4061</SRS> <SRS>EPSG:4062</SRS> <SRS>EPSG:4063</SRS> <SRS>EPSG:4071</SRS> <SRS>EPSG:4073</SRS> <SRS>EPSG:4074</SRS> <SRS>EPSG:4075</SRS> <SRS>EPSG:4079</SRS> <SRS>EPSG:4080</SRS> <SRS>EPSG:4081</SRS> <SRS>EPSG:4082</SRS> <SRS>EPSG:4083</SRS> <SRS>EPSG:4087</SRS> <SRS>EPSG:4088</SRS> <SRS>EPSG:4093</SRS> <SRS>EPSG:4094</SRS> <SRS>EPSG:4095</SRS> <SRS>EPSG:4096</SRS> <SRS>EPSG:4097</SRS> <SRS>EPSG:4098</SRS> <SRS>EPSG:4099</SRS> <SRS>EPSG:4100</SRS> <SRS>EPSG:4120</SRS> <SRS>EPSG:4121</SRS> <SRS>EPSG:4122</SRS> <SRS>EPSG:4123</SRS> <SRS>EPSG:4124</SRS> <SRS>EPSG:4125</SRS> <SRS>EPSG:4126</SRS> <SRS>EPSG:4127</SRS> <SRS>EPSG:4128</SRS> <SRS>EPSG:4129</SRS> <SRS>EPSG:4130</SRS> <SRS>EPSG:4131</SRS> <SRS>EPSG:4132</SRS> <SRS>EPSG:4133</SRS> <SRS>EPSG:4134</SRS> <SRS>EPSG:4135</SRS> <SRS>EPSG:4136</SRS> <SRS>EPSG:4137</SRS> <SRS>EPSG:4138</SRS> <SRS>EPSG:4139</SRS> <SRS>EPSG:4140</SRS> <SRS>EPSG:4141</SRS> <SRS>EPSG:4142</SRS> <SRS>EPSG:4143</SRS> <SRS>EPSG:4144</SRS> <SRS>EPSG:4145</SRS> <SRS>EPSG:4146</SRS> <SRS>EPSG:4147</SRS> <SRS>EPSG:4148</SRS> <SRS>EPSG:4149</SRS> <SRS>EPSG:4150</SRS> <SRS>EPSG:4151</SRS> <SRS>EPSG:4152</SRS> <SRS>EPSG:4153</SRS> <SRS>EPSG:4154</SRS> <SRS>EPSG:4155</SRS> <SRS>EPSG:4156</SRS> <SRS>EPSG:4157</SRS> <SRS>EPSG:4158</SRS> <SRS>EPSG:4159</SRS> <SRS>EPSG:4160</SRS> <SRS>EPSG:4161</SRS> <SRS>EPSG:4162</SRS> <SRS>EPSG:4163</SRS> <SRS>EPSG:4164</SRS> <SRS>EPSG:4165</SRS> <SRS>EPSG:4166</SRS> <SRS>EPSG:4167</SRS> <SRS>EPSG:4168</SRS> <SRS>EPSG:4169</SRS> <SRS>EPSG:4170</SRS> <SRS>EPSG:4171</SRS> <SRS>EPSG:4172</SRS> <SRS>EPSG:4173</SRS> <SRS>EPSG:4174</SRS> <SRS>EPSG:4175</SRS> <SRS>EPSG:4176</SRS> <SRS>EPSG:4178</SRS> <SRS>EPSG:4179</SRS> <SRS>EPSG:4180</SRS> <SRS>EPSG:4181</SRS> <SRS>EPSG:4182</SRS> <SRS>EPSG:4183</SRS> <SRS>EPSG:4184</SRS> <SRS>EPSG:4185</SRS> <SRS>EPSG:4188</SRS> <SRS>EPSG:4189</SRS> <SRS>EPSG:4190</SRS> <SRS>EPSG:4191</SRS> <SRS>EPSG:4192</SRS> <SRS>EPSG:4193</SRS> <SRS>EPSG:4194</SRS> <SRS>EPSG:4195</SRS> <SRS>EPSG:4196</SRS> <SRS>EPSG:4197</SRS> <SRS>EPSG:4198</SRS> <SRS>EPSG:4199</SRS> <SRS>EPSG:4200</SRS> <SRS>EPSG:4201</SRS> <SRS>EPSG:4202</SRS> <SRS>EPSG:4203</SRS> <SRS>EPSG:4204</SRS> <SRS>EPSG:4205</SRS> <SRS>EPSG:4206</SRS> <SRS>EPSG:4207</SRS> <SRS>EPSG:4208</SRS> <SRS>EPSG:4209</SRS> <SRS>EPSG:4210</SRS> <SRS>EPSG:4211</SRS> <SRS>EPSG:4212</SRS> <SRS>EPSG:4213</SRS> <SRS>EPSG:4214</SRS> <SRS>EPSG:4215</SRS> <SRS>EPSG:4216</SRS> <SRS>EPSG:4218</SRS> <SRS>EPSG:4219</SRS> <SRS>EPSG:4220</SRS> <SRS>EPSG:4221</SRS> <SRS>EPSG:4222</SRS> <SRS>EPSG:4223</SRS> <SRS>EPSG:4224</SRS> <SRS>EPSG:4225</SRS> <SRS>EPSG:4226</SRS> <SRS>EPSG:4227</SRS> <SRS>EPSG:4228</SRS> <SRS>EPSG:4229</SRS> <SRS>EPSG:4230</SRS> <SRS>EPSG:4231</SRS> <SRS>EPSG:4232</SRS> <SRS>EPSG:4233</SRS> <SRS>EPSG:4234</SRS> <SRS>EPSG:4235</SRS> <SRS>EPSG:4236</SRS> <SRS>EPSG:4237</SRS> <SRS>EPSG:4238</SRS> <SRS>EPSG:4239</SRS> <SRS>EPSG:4240</SRS> <SRS>EPSG:4241</SRS> <SRS>EPSG:4242</SRS> <SRS>EPSG:4243</SRS> <SRS>EPSG:4244</SRS> <SRS>EPSG:4245</SRS> <SRS>EPSG:4246</SRS> <SRS>EPSG:4247</SRS> <SRS>EPSG:4248</SRS> <SRS>EPSG:4249</SRS> <SRS>EPSG:4250</SRS> <SRS>EPSG:4251</SRS> <SRS>EPSG:4252</SRS> <SRS>EPSG:4253</SRS> <SRS>EPSG:4254</SRS> <SRS>EPSG:4255</SRS> <SRS>EPSG:4256</SRS> <SRS>EPSG:4257</SRS> <SRS>EPSG:4258</SRS> <SRS>EPSG:4259</SRS> <SRS>EPSG:4260</SRS> <SRS>EPSG:4261</SRS> <SRS>EPSG:4262</SRS> <SRS>EPSG:4263</SRS> <SRS>EPSG:4264</SRS> <SRS>EPSG:4265</SRS> <SRS>EPSG:4266</SRS> <SRS>EPSG:4267</SRS> <SRS>EPSG:4268</SRS> <SRS>EPSG:4269</SRS> <SRS>EPSG:4270</SRS> <SRS>EPSG:4271</SRS> <SRS>EPSG:4272</SRS> <SRS>EPSG:4273</SRS> <SRS>EPSG:4274</SRS> <SRS>EPSG:4275</SRS> <SRS>EPSG:4276</SRS> <SRS>EPSG:4277</SRS> <SRS>EPSG:4278</SRS> <SRS>EPSG:4279</SRS> <SRS>EPSG:4280</SRS> <SRS>EPSG:4281</SRS> <SRS>EPSG:4282</SRS> <SRS>EPSG:4283</SRS> <SRS>EPSG:4284</SRS> <SRS>EPSG:4285</SRS> <SRS>EPSG:4286</SRS> <SRS>EPSG:4287</SRS> <SRS>EPSG:4288</SRS> <SRS>EPSG:4289</SRS> <SRS>EPSG:4291</SRS> <SRS>EPSG:4292</SRS> <SRS>EPSG:4293</SRS> <SRS>EPSG:4294</SRS> <SRS>EPSG:4295</SRS> <SRS>EPSG:4296</SRS> <SRS>EPSG:4297</SRS> <SRS>EPSG:4298</SRS> <SRS>EPSG:4299</SRS> <SRS>EPSG:4300</SRS> <SRS>EPSG:4301</SRS> <SRS>EPSG:4302</SRS> <SRS>EPSG:4303</SRS> <SRS>EPSG:4304</SRS> <SRS>EPSG:4306</SRS> <SRS>EPSG:4307</SRS> <SRS>EPSG:4308</SRS> <SRS>EPSG:4309</SRS> <SRS>EPSG:4310</SRS> <SRS>EPSG:4311</SRS> <SRS>EPSG:4312</SRS> <SRS>EPSG:4313</SRS> <SRS>EPSG:4314</SRS> <SRS>EPSG:4315</SRS> <SRS>EPSG:4316</SRS> <SRS>EPSG:4317</SRS> <SRS>EPSG:4318</SRS> <SRS>EPSG:4319</SRS> <SRS>EPSG:4322</SRS> <SRS>EPSG:4324</SRS> <SRS>EPSG:4326</SRS> <SRS>EPSG:4327</SRS> <SRS>EPSG:4328</SRS> <SRS>EPSG:4329</SRS> <SRS>EPSG:4330</SRS> <SRS>EPSG:4331</SRS> <SRS>EPSG:4332</SRS> <SRS>EPSG:4333</SRS> <SRS>EPSG:4334</SRS> <SRS>EPSG:4335</SRS> <SRS>EPSG:4336</SRS> <SRS>EPSG:4337</SRS> <SRS>EPSG:4338</SRS> <SRS>EPSG:4339</SRS> <SRS>EPSG:4340</SRS> <SRS>EPSG:4341</SRS> <SRS>EPSG:4342</SRS> <SRS>EPSG:4343</SRS> <SRS>EPSG:4344</SRS> <SRS>EPSG:4345</SRS> <SRS>EPSG:4346</SRS> <SRS>EPSG:4347</SRS> <SRS>EPSG:4348</SRS> <SRS>EPSG:4349</SRS> <SRS>EPSG:4350</SRS> <SRS>EPSG:4351</SRS> <SRS>EPSG:4352</SRS> <SRS>EPSG:4353</SRS> <SRS>EPSG:4354</SRS> <SRS>EPSG:4355</SRS> <SRS>EPSG:4356</SRS> <SRS>EPSG:4357</SRS> <SRS>EPSG:4358</SRS> <SRS>EPSG:4359</SRS> <SRS>EPSG:4360</SRS> <SRS>EPSG:4361</SRS> <SRS>EPSG:4362</SRS> <SRS>EPSG:4363</SRS> <SRS>EPSG:4364</SRS> <SRS>EPSG:4365</SRS> <SRS>EPSG:4366</SRS> <SRS>EPSG:4367</SRS> <SRS>EPSG:4368</SRS> <SRS>EPSG:4369</SRS> <SRS>EPSG:4370</SRS> <SRS>EPSG:4371</SRS> <SRS>EPSG:4372</SRS> <SRS>EPSG:4373</SRS> <SRS>EPSG:4374</SRS> <SRS>EPSG:4375</SRS> <SRS>EPSG:4376</SRS> <SRS>EPSG:4377</SRS> <SRS>EPSG:4378</SRS> <SRS>EPSG:4379</SRS> <SRS>EPSG:4380</SRS> <SRS>EPSG:4381</SRS> <SRS>EPSG:4382</SRS> <SRS>EPSG:4383</SRS> <SRS>EPSG:4384</SRS> <SRS>EPSG:4385</SRS> <SRS>EPSG:4386</SRS> <SRS>EPSG:4387</SRS> <SRS>EPSG:4388</SRS> <SRS>EPSG:4389</SRS> <SRS>EPSG:4414</SRS> <SRS>EPSG:4415</SRS> <SRS>EPSG:4417</SRS> <SRS>EPSG:4434</SRS> <SRS>EPSG:4437</SRS> <SRS>EPSG:4440</SRS> <SRS>EPSG:4455</SRS> <SRS>EPSG:4456</SRS> <SRS>EPSG:4457</SRS> <SRS>EPSG:4458</SRS> <SRS>EPSG:4462</SRS> <SRS>EPSG:4463</SRS> <SRS>EPSG:4465</SRS> <SRS>EPSG:4466</SRS> <SRS>EPSG:4467</SRS> <SRS>EPSG:4468</SRS> <SRS>EPSG:4469</SRS> <SRS>EPSG:4470</SRS> <SRS>EPSG:4471</SRS> <SRS>EPSG:4472</SRS> <SRS>EPSG:4473</SRS> <SRS>EPSG:4474</SRS> <SRS>EPSG:4475</SRS> <SRS>EPSG:4479</SRS> <SRS>EPSG:4480</SRS> <SRS>EPSG:4481</SRS> <SRS>EPSG:4482</SRS> <SRS>EPSG:4483</SRS> <SRS>EPSG:4484</SRS> <SRS>EPSG:4485</SRS> <SRS>EPSG:4486</SRS> <SRS>EPSG:4487</SRS> <SRS>EPSG:4488</SRS> <SRS>EPSG:4489</SRS> <SRS>EPSG:4490</SRS> <SRS>EPSG:4491</SRS> <SRS>EPSG:4492</SRS> <SRS>EPSG:4493</SRS> <SRS>EPSG:4494</SRS> <SRS>EPSG:4495</SRS> <SRS>EPSG:4496</SRS> <SRS>EPSG:4497</SRS> <SRS>EPSG:4498</SRS> <SRS>EPSG:4499</SRS> <SRS>EPSG:4500</SRS> <SRS>EPSG:4501</SRS> <SRS>EPSG:4502</SRS> <SRS>EPSG:4503</SRS> <SRS>EPSG:4504</SRS> <SRS>EPSG:4505</SRS> <SRS>EPSG:4506</SRS> <SRS>EPSG:4507</SRS> <SRS>EPSG:4508</SRS> <SRS>EPSG:4509</SRS> <SRS>EPSG:4510</SRS> <SRS>EPSG:4511</SRS> <SRS>EPSG:4512</SRS> <SRS>EPSG:4513</SRS> <SRS>EPSG:4514</SRS> <SRS>EPSG:4515</SRS> <SRS>EPSG:4516</SRS> <SRS>EPSG:4517</SRS> <SRS>EPSG:4518</SRS> <SRS>EPSG:4519</SRS> <SRS>EPSG:4520</SRS> <SRS>EPSG:4521</SRS> <SRS>EPSG:4522</SRS> <SRS>EPSG:4523</SRS> <SRS>EPSG:4524</SRS> <SRS>EPSG:4525</SRS> <SRS>EPSG:4526</SRS> <SRS>EPSG:4527</SRS> <SRS>EPSG:4528</SRS> <SRS>EPSG:4529</SRS> <SRS>EPSG:4530</SRS> <SRS>EPSG:4531</SRS> <SRS>EPSG:4532</SRS> <SRS>EPSG:4533</SRS> <SRS>EPSG:4534</SRS> <SRS>EPSG:4535</SRS> <SRS>EPSG:4536</SRS> <SRS>EPSG:4537</SRS> <SRS>EPSG:4538</SRS> <SRS>EPSG:4539</SRS> <SRS>EPSG:4540</SRS> <SRS>EPSG:4541</SRS> <SRS>EPSG:4542</SRS> <SRS>EPSG:4543</SRS> <SRS>EPSG:4544</SRS> <SRS>EPSG:4545</SRS> <SRS>EPSG:4546</SRS> <SRS>EPSG:4547</SRS> <SRS>EPSG:4548</SRS> <SRS>EPSG:4549</SRS> <SRS>EPSG:4550</SRS> <SRS>EPSG:4551</SRS> <SRS>EPSG:4552</SRS> <SRS>EPSG:4553</SRS> <SRS>EPSG:4554</SRS> <SRS>EPSG:4555</SRS> <SRS>EPSG:4556</SRS> <SRS>EPSG:4557</SRS> <SRS>EPSG:4558</SRS> <SRS>EPSG:4559</SRS> <SRS>EPSG:4568</SRS> <SRS>EPSG:4569</SRS> <SRS>EPSG:4570</SRS> <SRS>EPSG:4571</SRS> <SRS>EPSG:4572</SRS> <SRS>EPSG:4573</SRS> <SRS>EPSG:4574</SRS> <SRS>EPSG:4575</SRS> <SRS>EPSG:4576</SRS> <SRS>EPSG:4577</SRS> <SRS>EPSG:4578</SRS> <SRS>EPSG:4579</SRS> <SRS>EPSG:4580</SRS> <SRS>EPSG:4581</SRS> <SRS>EPSG:4582</SRS> <SRS>EPSG:4583</SRS> <SRS>EPSG:4584</SRS> <SRS>EPSG:4585</SRS> <SRS>EPSG:4586</SRS> <SRS>EPSG:4587</SRS> <SRS>EPSG:4588</SRS> <SRS>EPSG:4589</SRS> <SRS>EPSG:4600</SRS> <SRS>EPSG:4601</SRS> <SRS>EPSG:4602</SRS> <SRS>EPSG:4603</SRS> <SRS>EPSG:4604</SRS> <SRS>EPSG:4605</SRS> <SRS>EPSG:4606</SRS> <SRS>EPSG:4607</SRS> <SRS>EPSG:4608</SRS> <SRS>EPSG:4609</SRS> <SRS>EPSG:4610</SRS> <SRS>EPSG:4611</SRS> <SRS>EPSG:4612</SRS> <SRS>EPSG:4613</SRS> <SRS>EPSG:4614</SRS> <SRS>EPSG:4615</SRS> <SRS>EPSG:4616</SRS> <SRS>EPSG:4617</SRS> <SRS>EPSG:4618</SRS> <SRS>EPSG:4619</SRS> <SRS>EPSG:4620</SRS> <SRS>EPSG:4621</SRS> <SRS>EPSG:4622</SRS> <SRS>EPSG:4623</SRS> <SRS>EPSG:4624</SRS> <SRS>EPSG:4625</SRS> <SRS>EPSG:4626</SRS> <SRS>EPSG:4627</SRS> <SRS>EPSG:4628</SRS> <SRS>EPSG:4629</SRS> <SRS>EPSG:4630</SRS> <SRS>EPSG:4631</SRS> <SRS>EPSG:4632</SRS> <SRS>EPSG:4633</SRS> <SRS>EPSG:4634</SRS> <SRS>EPSG:4635</SRS> <SRS>EPSG:4636</SRS> <SRS>EPSG:4637</SRS> <SRS>EPSG:4638</SRS> <SRS>EPSG:4639</SRS> <SRS>EPSG:4640</SRS> <SRS>EPSG:4641</SRS> <SRS>EPSG:4642</SRS> <SRS>EPSG:4643</SRS> <SRS>EPSG:4644</SRS> <SRS>EPSG:4645</SRS> <SRS>EPSG:4646</SRS> <SRS>EPSG:4647</SRS> <SRS>EPSG:4652</SRS> <SRS>EPSG:4653</SRS> <SRS>EPSG:4654</SRS> <SRS>EPSG:4655</SRS> <SRS>EPSG:4656</SRS> <SRS>EPSG:4657</SRS> <SRS>EPSG:4658</SRS> <SRS>EPSG:4659</SRS> <SRS>EPSG:4660</SRS> <SRS>EPSG:4661</SRS> <SRS>EPSG:4662</SRS> <SRS>EPSG:4663</SRS> <SRS>EPSG:4664</SRS> <SRS>EPSG:4665</SRS> <SRS>EPSG:4666</SRS> <SRS>EPSG:4667</SRS> <SRS>EPSG:4668</SRS> <SRS>EPSG:4669</SRS> <SRS>EPSG:4670</SRS> <SRS>EPSG:4671</SRS> <SRS>EPSG:4672</SRS> <SRS>EPSG:4673</SRS> <SRS>EPSG:4674</SRS> <SRS>EPSG:4675</SRS> <SRS>EPSG:4676</SRS> <SRS>EPSG:4677</SRS> <SRS>EPSG:4678</SRS> <SRS>EPSG:4679</SRS> <SRS>EPSG:4680</SRS> <SRS>EPSG:4681</SRS> <SRS>EPSG:4682</SRS> <SRS>EPSG:4683</SRS> <SRS>EPSG:4684</SRS> <SRS>EPSG:4685</SRS> <SRS>EPSG:4686</SRS> <SRS>EPSG:4687</SRS> <SRS>EPSG:4688</SRS> <SRS>EPSG:4689</SRS> <SRS>EPSG:4690</SRS> <SRS>EPSG:4691</SRS> <SRS>EPSG:4692</SRS> <SRS>EPSG:4693</SRS> <SRS>EPSG:4694</SRS> <SRS>EPSG:4695</SRS> <SRS>EPSG:4696</SRS> <SRS>EPSG:4697</SRS> <SRS>EPSG:4698</SRS> <SRS>EPSG:4699</SRS> <SRS>EPSG:4700</SRS> <SRS>EPSG:4701</SRS> <SRS>EPSG:4702</SRS> <SRS>EPSG:4703</SRS> <SRS>EPSG:4704</SRS> <SRS>EPSG:4705</SRS> <SRS>EPSG:4706</SRS> <SRS>EPSG:4707</SRS> <SRS>EPSG:4708</SRS> <SRS>EPSG:4709</SRS> <SRS>EPSG:4710</SRS> <SRS>EPSG:4711</SRS> <SRS>EPSG:4712</SRS> <SRS>EPSG:4713</SRS> <SRS>EPSG:4714</SRS> <SRS>EPSG:4715</SRS> <SRS>EPSG:4716</SRS> <SRS>EPSG:4717</SRS> <SRS>EPSG:4718</SRS> <SRS>EPSG:4719</SRS> <SRS>EPSG:4720</SRS> <SRS>EPSG:4721</SRS> <SRS>EPSG:4722</SRS> <SRS>EPSG:4723</SRS> <SRS>EPSG:4724</SRS> <SRS>EPSG:4725</SRS> <SRS>EPSG:4726</SRS> <SRS>EPSG:4727</SRS> <SRS>EPSG:4728</SRS> <SRS>EPSG:4729</SRS> <SRS>EPSG:4730</SRS> <SRS>EPSG:4731</SRS> <SRS>EPSG:4732</SRS> <SRS>EPSG:4733</SRS> <SRS>EPSG:4734</SRS> <SRS>EPSG:4735</SRS> <SRS>EPSG:4736</SRS> <SRS>EPSG:4737</SRS> <SRS>EPSG:4738</SRS> <SRS>EPSG:4739</SRS> <SRS>EPSG:4740</SRS> <SRS>EPSG:4741</SRS> <SRS>EPSG:4742</SRS> <SRS>EPSG:4743</SRS> <SRS>EPSG:4744</SRS> <SRS>EPSG:4745</SRS> <SRS>EPSG:4746</SRS> <SRS>EPSG:4747</SRS> <SRS>EPSG:4748</SRS> <SRS>EPSG:4749</SRS> <SRS>EPSG:4750</SRS> <SRS>EPSG:4751</SRS> <SRS>EPSG:4752</SRS> <SRS>EPSG:4753</SRS> <SRS>EPSG:4754</SRS> <SRS>EPSG:4755</SRS> <SRS>EPSG:4756</SRS> <SRS>EPSG:4757</SRS> <SRS>EPSG:4758</SRS> <SRS>EPSG:4759</SRS> <SRS>EPSG:4760</SRS> <SRS>EPSG:4761</SRS> <SRS>EPSG:4762</SRS> <SRS>EPSG:4763</SRS> <SRS>EPSG:4764</SRS> <SRS>EPSG:4765</SRS> <SRS>EPSG:4766</SRS> <SRS>EPSG:4767</SRS> <SRS>EPSG:4768</SRS> <SRS>EPSG:4769</SRS> <SRS>EPSG:4770</SRS> <SRS>EPSG:4771</SRS> <SRS>EPSG:4772</SRS> <SRS>EPSG:4773</SRS> <SRS>EPSG:4774</SRS> <SRS>EPSG:4775</SRS> <SRS>EPSG:4776</SRS> <SRS>EPSG:4777</SRS> <SRS>EPSG:4778</SRS> <SRS>EPSG:4779</SRS> <SRS>EPSG:4780</SRS> <SRS>EPSG:4781</SRS> <SRS>EPSG:4782</SRS> <SRS>EPSG:4783</SRS> <SRS>EPSG:4784</SRS> <SRS>EPSG:4785</SRS> <SRS>EPSG:4786</SRS> <SRS>EPSG:4787</SRS> <SRS>EPSG:4788</SRS> <SRS>EPSG:4789</SRS> <SRS>EPSG:4790</SRS> <SRS>EPSG:4791</SRS> <SRS>EPSG:4792</SRS> <SRS>EPSG:4793</SRS> <SRS>EPSG:4794</SRS> <SRS>EPSG:4795</SRS> <SRS>EPSG:4796</SRS> <SRS>EPSG:4797</SRS> <SRS>EPSG:4798</SRS> <SRS>EPSG:4799</SRS> <SRS>EPSG:4800</SRS> <SRS>EPSG:4801</SRS> <SRS>EPSG:4802</SRS> <SRS>EPSG:4803</SRS> <SRS>EPSG:4804</SRS> <SRS>EPSG:4805</SRS> <SRS>EPSG:4806</SRS> <SRS>EPSG:4807</SRS> <SRS>EPSG:4808</SRS> <SRS>EPSG:4809</SRS> <SRS>EPSG:4810</SRS> <SRS>EPSG:4811</SRS> <SRS>EPSG:4812</SRS> <SRS>EPSG:4813</SRS> <SRS>EPSG:4814</SRS> <SRS>EPSG:4815</SRS> <SRS>EPSG:4816</SRS> <SRS>EPSG:4817</SRS> <SRS>EPSG:4818</SRS> <SRS>EPSG:4819</SRS> <SRS>EPSG:4820</SRS> <SRS>EPSG:4821</SRS> <SRS>EPSG:4822</SRS> <SRS>EPSG:4823</SRS> <SRS>EPSG:4824</SRS> <SRS>EPSG:4826</SRS> <SRS>EPSG:4882</SRS> <SRS>EPSG:4883</SRS> <SRS>EPSG:4884</SRS> <SRS>EPSG:4885</SRS> <SRS>EPSG:4886</SRS> <SRS>EPSG:4887</SRS> <SRS>EPSG:4888</SRS> <SRS>EPSG:4889</SRS> <SRS>EPSG:4890</SRS> <SRS>EPSG:4891</SRS> <SRS>EPSG:4892</SRS> <SRS>EPSG:4893</SRS> <SRS>EPSG:4894</SRS> <SRS>EPSG:4895</SRS> <SRS>EPSG:4896</SRS> <SRS>EPSG:4897</SRS> <SRS>EPSG:4898</SRS> <SRS>EPSG:4899</SRS> <SRS>EPSG:4900</SRS> <SRS>EPSG:4901</SRS> <SRS>EPSG:4902</SRS> <SRS>EPSG:4903</SRS> <SRS>EPSG:4904</SRS> <SRS>EPSG:4906</SRS> <SRS>EPSG:4907</SRS> <SRS>EPSG:4908</SRS> <SRS>EPSG:4909</SRS> <SRS>EPSG:4910</SRS> <SRS>EPSG:4911</SRS> <SRS>EPSG:4912</SRS> <SRS>EPSG:4913</SRS> <SRS>EPSG:4914</SRS> <SRS>EPSG:4915</SRS> <SRS>EPSG:4916</SRS> <SRS>EPSG:4917</SRS> <SRS>EPSG:4918</SRS> <SRS>EPSG:4919</SRS> <SRS>EPSG:4920</SRS> <SRS>EPSG:4921</SRS> <SRS>EPSG:4922</SRS> <SRS>EPSG:4923</SRS> <SRS>EPSG:4924</SRS> <SRS>EPSG:4925</SRS> <SRS>EPSG:4926</SRS> <SRS>EPSG:4927</SRS> <SRS>EPSG:4928</SRS> <SRS>EPSG:4929</SRS> <SRS>EPSG:4930</SRS> <SRS>EPSG:4931</SRS> <SRS>EPSG:4932</SRS> <SRS>EPSG:4933</SRS> <SRS>EPSG:4934</SRS> <SRS>EPSG:4935</SRS> <SRS>EPSG:4936</SRS> <SRS>EPSG:4937</SRS> <SRS>EPSG:4938</SRS> <SRS>EPSG:4939</SRS> <SRS>EPSG:4940</SRS> <SRS>EPSG:4941</SRS> <SRS>EPSG:4942</SRS> <SRS>EPSG:4943</SRS> <SRS>EPSG:4944</SRS> <SRS>EPSG:4945</SRS> <SRS>EPSG:4946</SRS> <SRS>EPSG:4947</SRS> <SRS>EPSG:4948</SRS> <SRS>EPSG:4949</SRS> <SRS>EPSG:4950</SRS> <SRS>EPSG:4951</SRS> <SRS>EPSG:4952</SRS> <SRS>EPSG:4953</SRS> <SRS>EPSG:4954</SRS> <SRS>EPSG:4955</SRS> <SRS>EPSG:4956</SRS> <SRS>EPSG:4957</SRS> <SRS>EPSG:4958</SRS> <SRS>EPSG:4959</SRS> <SRS>EPSG:4960</SRS> <SRS>EPSG:4961</SRS> <SRS>EPSG:4962</SRS> <SRS>EPSG:4963</SRS> <SRS>EPSG:4964</SRS> <SRS>EPSG:4965</SRS> <SRS>EPSG:4966</SRS> <SRS>EPSG:4967</SRS> <SRS>EPSG:4968</SRS> <SRS>EPSG:4969</SRS> <SRS>EPSG:4970</SRS> <SRS>EPSG:4971</SRS> <SRS>EPSG:4972</SRS> <SRS>EPSG:4973</SRS> <SRS>EPSG:4974</SRS> <SRS>EPSG:4975</SRS> <SRS>EPSG:4976</SRS> <SRS>EPSG:4977</SRS> <SRS>EPSG:4978</SRS> <SRS>EPSG:4979</SRS> <SRS>EPSG:4980</SRS> <SRS>EPSG:4981</SRS> <SRS>EPSG:4982</SRS> <SRS>EPSG:4983</SRS> <SRS>EPSG:4984</SRS> <SRS>EPSG:4985</SRS> <SRS>EPSG:4986</SRS> <SRS>EPSG:4987</SRS> <SRS>EPSG:4988</SRS> <SRS>EPSG:4989</SRS> <SRS>EPSG:4990</SRS> <SRS>EPSG:4991</SRS> <SRS>EPSG:4992</SRS> <SRS>EPSG:4993</SRS> <SRS>EPSG:4994</SRS> <SRS>EPSG:4995</SRS> <SRS>EPSG:4996</SRS> <SRS>EPSG:4997</SRS> <SRS>EPSG:4998</SRS> <SRS>EPSG:4999</SRS> <SRS>EPSG:5600</SRS> <SRS>EPSG:5601</SRS> <SRS>EPSG:5602</SRS> <SRS>EPSG:5603</SRS> <SRS>EPSG:5604</SRS> <SRS>EPSG:5605</SRS> <SRS>EPSG:5606</SRS> <SRS>EPSG:5607</SRS> <SRS>EPSG:5608</SRS> <SRS>EPSG:5609</SRS> <SRS>EPSG:5610</SRS> <SRS>EPSG:5611</SRS> <SRS>EPSG:5612</SRS> <SRS>EPSG:5613</SRS> <SRS>EPSG:5614</SRS> <SRS>EPSG:5615</SRS> <SRS>EPSG:5616</SRS> <SRS>EPSG:5617</SRS> <SRS>EPSG:5618</SRS> <SRS>EPSG:5619</SRS> <SRS>EPSG:5620</SRS> <SRS>EPSG:5621</SRS> <SRS>EPSG:5701</SRS> <SRS>EPSG:5702</SRS> <SRS>EPSG:5703</SRS> <SRS>EPSG:5704</SRS> <SRS>EPSG:5705</SRS> <SRS>EPSG:5706</SRS> <SRS>EPSG:5709</SRS> <SRS>EPSG:5710</SRS> <SRS>EPSG:5711</SRS> <SRS>EPSG:5712</SRS> <SRS>EPSG:5713</SRS> <SRS>EPSG:5714</SRS> <SRS>EPSG:5715</SRS> <SRS>EPSG:5716</SRS> <SRS>EPSG:5717</SRS> <SRS>EPSG:5718</SRS> <SRS>EPSG:5719</SRS> <SRS>EPSG:5720</SRS> <SRS>EPSG:5721</SRS> <SRS>EPSG:5722</SRS> <SRS>EPSG:5723</SRS> <SRS>EPSG:5724</SRS> <SRS>EPSG:5725</SRS> <SRS>EPSG:5726</SRS> <SRS>EPSG:5727</SRS> <SRS>EPSG:5728</SRS> <SRS>EPSG:5729</SRS> <SRS>EPSG:5730</SRS> <SRS>EPSG:5731</SRS> <SRS>EPSG:5732</SRS> <SRS>EPSG:5733</SRS> <SRS>EPSG:5734</SRS> <SRS>EPSG:5735</SRS> <SRS>EPSG:5736</SRS> <SRS>EPSG:5737</SRS> <SRS>EPSG:5738</SRS> <SRS>EPSG:5739</SRS> <SRS>EPSG:5740</SRS> <SRS>EPSG:5741</SRS> <SRS>EPSG:5742</SRS> <SRS>EPSG:5743</SRS> <SRS>EPSG:5744</SRS> <SRS>EPSG:5745</SRS> <SRS>EPSG:5746</SRS> <SRS>EPSG:5747</SRS> <SRS>EPSG:5748</SRS> <SRS>EPSG:5749</SRS> <SRS>EPSG:5750</SRS> <SRS>EPSG:5751</SRS> <SRS>EPSG:5752</SRS> <SRS>EPSG:5753</SRS> <SRS>EPSG:5754</SRS> <SRS>EPSG:5755</SRS> <SRS>EPSG:5756</SRS> <SRS>EPSG:5757</SRS> <SRS>EPSG:5758</SRS> <SRS>EPSG:5759</SRS> <SRS>EPSG:5760</SRS> <SRS>EPSG:5761</SRS> <SRS>EPSG:5762</SRS> <SRS>EPSG:5763</SRS> <SRS>EPSG:5764</SRS> <SRS>EPSG:5765</SRS> <SRS>EPSG:5766</SRS> <SRS>EPSG:5767</SRS> <SRS>EPSG:5768</SRS> <SRS>EPSG:5769</SRS> <SRS>EPSG:5770</SRS> <SRS>EPSG:5771</SRS> <SRS>EPSG:5772</SRS> <SRS>EPSG:5773</SRS> <SRS>EPSG:5774</SRS> <SRS>EPSG:5775</SRS> <SRS>EPSG:5776</SRS> <SRS>EPSG:5777</SRS> <SRS>EPSG:5778</SRS> <SRS>EPSG:5779</SRS> <SRS>EPSG:5780</SRS> <SRS>EPSG:5781</SRS> <SRS>EPSG:5782</SRS> <SRS>EPSG:5783</SRS> <SRS>EPSG:5784</SRS> <SRS>EPSG:5785</SRS> <SRS>EPSG:5786</SRS> <SRS>EPSG:5787</SRS> <SRS>EPSG:5788</SRS> <SRS>EPSG:5789</SRS> <SRS>EPSG:5790</SRS> <SRS>EPSG:5791</SRS> <SRS>EPSG:5792</SRS> <SRS>EPSG:5793</SRS> <SRS>EPSG:5794</SRS> <SRS>EPSG:5795</SRS> <SRS>EPSG:5796</SRS> <SRS>EPSG:5797</SRS> <SRS>EPSG:5798</SRS> <SRS>EPSG:5799</SRS> <SRS>EPSG:5800</SRS> <SRS>EPSG:5801</SRS> <SRS>EPSG:5802</SRS> <SRS>EPSG:5803</SRS> <SRS>EPSG:5804</SRS> <SRS>EPSG:5805</SRS> <SRS>EPSG:5806</SRS> <SRS>EPSG:5807</SRS> <SRS>EPSG:5808</SRS> <SRS>EPSG:5809</SRS> <SRS>EPSG:5810</SRS> <SRS>EPSG:5811</SRS> <SRS>EPSG:5812</SRS> <SRS>EPSG:5813</SRS> <SRS>EPSG:5814</SRS> <SRS>EPSG:5815</SRS> <SRS>EPSG:5816</SRS> <SRS>EPSG:5817</SRS> <SRS>EPSG:5818</SRS> <SRS>EPSG:5819</SRS> <SRS>EPSG:5820</SRS> <SRS>EPSG:5821</SRS> <SRS>EPSG:7400</SRS> <SRS>EPSG:7401</SRS> <SRS>EPSG:7402</SRS> <SRS>EPSG:7403</SRS> <SRS>EPSG:7404</SRS> <SRS>EPSG:7405</SRS> <SRS>EPSG:7406</SRS> <SRS>EPSG:7407</SRS> <SRS>EPSG:7408</SRS> <SRS>EPSG:7409</SRS> <SRS>EPSG:7410</SRS> <SRS>EPSG:7411</SRS> <SRS>EPSG:7412</SRS> <SRS>EPSG:7413</SRS> <SRS>EPSG:7414</SRS> <SRS>EPSG:7415</SRS> <SRS>EPSG:7416</SRS> <SRS>EPSG:7417</SRS> <SRS>EPSG:7418</SRS> <SRS>EPSG:7419</SRS> <SRS>EPSG:7420</SRS> <SRS>EPSG:7421</SRS> <SRS>EPSG:7422</SRS> <SRS>EPSG:7423</SRS> <SRS>EPSG:20004</SRS> <SRS>EPSG:20005</SRS> <SRS>EPSG:20006</SRS> <SRS>EPSG:20007</SRS> <SRS>EPSG:20008</SRS> <SRS>EPSG:20009</SRS> <SRS>EPSG:20010</SRS> <SRS>EPSG:20011</SRS> <SRS>EPSG:20012</SRS> <SRS>EPSG:20013</SRS> <SRS>EPSG:20014</SRS> <SRS>EPSG:20015</SRS> <SRS>EPSG:20016</SRS> <SRS>EPSG:20017</SRS> <SRS>EPSG:20018</SRS> <SRS>EPSG:20019</SRS> <SRS>EPSG:20020</SRS> <SRS>EPSG:20021</SRS> <SRS>EPSG:20022</SRS> <SRS>EPSG:20023</SRS> <SRS>EPSG:20024</SRS> <SRS>EPSG:20025</SRS> <SRS>EPSG:20026</SRS> <SRS>EPSG:20027</SRS> <SRS>EPSG:20028</SRS> <SRS>EPSG:20029</SRS> <SRS>EPSG:20030</SRS> <SRS>EPSG:20031</SRS> <SRS>EPSG:20032</SRS> <SRS>EPSG:20064</SRS> <SRS>EPSG:20065</SRS> <SRS>EPSG:20066</SRS> <SRS>EPSG:20067</SRS> <SRS>EPSG:20068</SRS> <SRS>EPSG:20069</SRS> <SRS>EPSG:20070</SRS> <SRS>EPSG:20071</SRS> <SRS>EPSG:20072</SRS> <SRS>EPSG:20073</SRS> <SRS>EPSG:20074</SRS> <SRS>EPSG:20075</SRS> <SRS>EPSG:20076</SRS> <SRS>EPSG:20077</SRS> <SRS>EPSG:20078</SRS> <SRS>EPSG:20079</SRS> <SRS>EPSG:20080</SRS> <SRS>EPSG:20081</SRS> <SRS>EPSG:20082</SRS> <SRS>EPSG:20083</SRS> <SRS>EPSG:20084</SRS> <SRS>EPSG:20085</SRS> <SRS>EPSG:20086</SRS> <SRS>EPSG:20087</SRS> <SRS>EPSG:20088</SRS> <SRS>EPSG:20089</SRS> <SRS>EPSG:20090</SRS> <SRS>EPSG:20091</SRS> <SRS>EPSG:20092</SRS> <SRS>EPSG:20135</SRS> <SRS>EPSG:20136</SRS> <SRS>EPSG:20137</SRS> <SRS>EPSG:20138</SRS> <SRS>EPSG:20248</SRS> <SRS>EPSG:20249</SRS> <SRS>EPSG:20250</SRS> <SRS>EPSG:20251</SRS> <SRS>EPSG:20252</SRS> <SRS>EPSG:20253</SRS> <SRS>EPSG:20254</SRS> <SRS>EPSG:20255</SRS> <SRS>EPSG:20256</SRS> <SRS>EPSG:20257</SRS> <SRS>EPSG:20258</SRS> <SRS>EPSG:20348</SRS> <SRS>EPSG:20349</SRS> <SRS>EPSG:20350</SRS> <SRS>EPSG:20351</SRS> <SRS>EPSG:20352</SRS> <SRS>EPSG:20353</SRS> <SRS>EPSG:20354</SRS> <SRS>EPSG:20355</SRS> <SRS>EPSG:20356</SRS> <SRS>EPSG:20357</SRS> <SRS>EPSG:20358</SRS> <SRS>EPSG:20436</SRS> <SRS>EPSG:20437</SRS> <SRS>EPSG:20438</SRS> <SRS>EPSG:20439</SRS> <SRS>EPSG:20440</SRS> <SRS>EPSG:20499</SRS> <SRS>EPSG:20538</SRS> <SRS>EPSG:20539</SRS> <SRS>EPSG:20790</SRS> <SRS>EPSG:20791</SRS> <SRS>EPSG:20822</SRS> <SRS>EPSG:20823</SRS> <SRS>EPSG:20824</SRS> <SRS>EPSG:20934</SRS> <SRS>EPSG:20935</SRS> <SRS>EPSG:20936</SRS> <SRS>EPSG:21035</SRS> <SRS>EPSG:21036</SRS> <SRS>EPSG:21037</SRS> <SRS>EPSG:21095</SRS> <SRS>EPSG:21096</SRS> <SRS>EPSG:21097</SRS> <SRS>EPSG:21100</SRS> <SRS>EPSG:21148</SRS> <SRS>EPSG:21149</SRS> <SRS>EPSG:21150</SRS> <SRS>EPSG:21291</SRS> <SRS>EPSG:21292</SRS> <SRS>EPSG:21413</SRS> <SRS>EPSG:21414</SRS> <SRS>EPSG:21415</SRS> <SRS>EPSG:21416</SRS> <SRS>EPSG:21417</SRS> <SRS>EPSG:21418</SRS> <SRS>EPSG:21419</SRS> <SRS>EPSG:21420</SRS> <SRS>EPSG:21421</SRS> <SRS>EPSG:21422</SRS> <SRS>EPSG:21423</SRS> <SRS>EPSG:21453</SRS> <SRS>EPSG:21454</SRS> <SRS>EPSG:21455</SRS> <SRS>EPSG:21456</SRS> <SRS>EPSG:21457</SRS> <SRS>EPSG:21458</SRS> <SRS>EPSG:21459</SRS> <SRS>EPSG:21460</SRS> <SRS>EPSG:21461</SRS> <SRS>EPSG:21462</SRS> <SRS>EPSG:21463</SRS> <SRS>EPSG:21473</SRS> <SRS>EPSG:21474</SRS> <SRS>EPSG:21475</SRS> <SRS>EPSG:21476</SRS> <SRS>EPSG:21477</SRS> <SRS>EPSG:21478</SRS> <SRS>EPSG:21479</SRS> <SRS>EPSG:21480</SRS> <SRS>EPSG:21481</SRS> <SRS>EPSG:21482</SRS> <SRS>EPSG:21483</SRS> <SRS>EPSG:21500</SRS> <SRS>EPSG:21780</SRS> <SRS>EPSG:21781</SRS> <SRS>EPSG:21782</SRS> <SRS>EPSG:21817</SRS> <SRS>EPSG:21818</SRS> <SRS>EPSG:21891</SRS> <SRS>EPSG:21892</SRS> <SRS>EPSG:21893</SRS> <SRS>EPSG:21894</SRS> <SRS>EPSG:21896</SRS> <SRS>EPSG:21897</SRS> <SRS>EPSG:21898</SRS> <SRS>EPSG:21899</SRS> <SRS>EPSG:22032</SRS> <SRS>EPSG:22033</SRS> <SRS>EPSG:22091</SRS> <SRS>EPSG:22092</SRS> <SRS>EPSG:22171</SRS> <SRS>EPSG:22172</SRS> <SRS>EPSG:22173</SRS> <SRS>EPSG:22174</SRS> <SRS>EPSG:22175</SRS> <SRS>EPSG:22176</SRS> <SRS>EPSG:22177</SRS> <SRS>EPSG:22181</SRS> <SRS>EPSG:22182</SRS> <SRS>EPSG:22183</SRS> <SRS>EPSG:22184</SRS> <SRS>EPSG:22185</SRS> <SRS>EPSG:22186</SRS> <SRS>EPSG:22187</SRS> <SRS>EPSG:22191</SRS> <SRS>EPSG:22192</SRS> <SRS>EPSG:22193</SRS> <SRS>EPSG:22194</SRS> <SRS>EPSG:22195</SRS> <SRS>EPSG:22196</SRS> <SRS>EPSG:22197</SRS> <SRS>EPSG:22234</SRS> <SRS>EPSG:22235</SRS> <SRS>EPSG:22236</SRS> <SRS>EPSG:22275</SRS> <SRS>EPSG:22277</SRS> <SRS>EPSG:22279</SRS> <SRS>EPSG:22281</SRS> <SRS>EPSG:22283</SRS> <SRS>EPSG:22285</SRS> <SRS>EPSG:22287</SRS> <SRS>EPSG:22289</SRS> <SRS>EPSG:22291</SRS> <SRS>EPSG:22293</SRS> <SRS>EPSG:22300</SRS> <SRS>EPSG:22332</SRS> <SRS>EPSG:22391</SRS> <SRS>EPSG:22392</SRS> <SRS>EPSG:22521</SRS> <SRS>EPSG:22522</SRS> <SRS>EPSG:22523</SRS> <SRS>EPSG:22524</SRS> <SRS>EPSG:22525</SRS> <SRS>EPSG:22700</SRS> <SRS>EPSG:22770</SRS> <SRS>EPSG:22780</SRS> <SRS>EPSG:22832</SRS> <SRS>EPSG:22991</SRS> <SRS>EPSG:22992</SRS> <SRS>EPSG:22993</SRS> <SRS>EPSG:22994</SRS> <SRS>EPSG:23028</SRS> <SRS>EPSG:23029</SRS> <SRS>EPSG:23030</SRS> <SRS>EPSG:23031</SRS> <SRS>EPSG:23032</SRS> <SRS>EPSG:23033</SRS> <SRS>EPSG:23034</SRS> <SRS>EPSG:23035</SRS> <SRS>EPSG:23036</SRS> <SRS>EPSG:23037</SRS> <SRS>EPSG:23038</SRS> <SRS>EPSG:23090</SRS> <SRS>EPSG:23095</SRS> <SRS>EPSG:23239</SRS> <SRS>EPSG:23240</SRS> <SRS>EPSG:23433</SRS> <SRS>EPSG:23700</SRS> <SRS>EPSG:23830</SRS> <SRS>EPSG:23831</SRS> <SRS>EPSG:23832</SRS> <SRS>EPSG:23833</SRS> <SRS>EPSG:23834</SRS> <SRS>EPSG:23835</SRS> <SRS>EPSG:23836</SRS> <SRS>EPSG:23837</SRS> <SRS>EPSG:23838</SRS> <SRS>EPSG:23839</SRS> <SRS>EPSG:23840</SRS> <SRS>EPSG:23841</SRS> <SRS>EPSG:23842</SRS> <SRS>EPSG:23843</SRS> <SRS>EPSG:23844</SRS> <SRS>EPSG:23845</SRS> <SRS>EPSG:23846</SRS> <SRS>EPSG:23847</SRS> <SRS>EPSG:23848</SRS> <SRS>EPSG:23849</SRS> <SRS>EPSG:23850</SRS> <SRS>EPSG:23851</SRS> <SRS>EPSG:23852</SRS> <SRS>EPSG:23853</SRS> <SRS>EPSG:23866</SRS> <SRS>EPSG:23867</SRS> <SRS>EPSG:23868</SRS> <SRS>EPSG:23869</SRS> <SRS>EPSG:23870</SRS> <SRS>EPSG:23871</SRS> <SRS>EPSG:23872</SRS> <SRS>EPSG:23877</SRS> <SRS>EPSG:23878</SRS> <SRS>EPSG:23879</SRS> <SRS>EPSG:23880</SRS> <SRS>EPSG:23881</SRS> <SRS>EPSG:23882</SRS> <SRS>EPSG:23883</SRS> <SRS>EPSG:23884</SRS> <SRS>EPSG:23886</SRS> <SRS>EPSG:23887</SRS> <SRS>EPSG:23888</SRS> <SRS>EPSG:23889</SRS> <SRS>EPSG:23890</SRS> <SRS>EPSG:23891</SRS> <SRS>EPSG:23892</SRS> <SRS>EPSG:23893</SRS> <SRS>EPSG:23894</SRS> <SRS>EPSG:23946</SRS> <SRS>EPSG:23947</SRS> <SRS>EPSG:23948</SRS> <SRS>EPSG:24047</SRS> <SRS>EPSG:24048</SRS> <SRS>EPSG:24100</SRS> <SRS>EPSG:24200</SRS> <SRS>EPSG:24305</SRS> <SRS>EPSG:24306</SRS> <SRS>EPSG:24311</SRS> <SRS>EPSG:24312</SRS> <SRS>EPSG:24313</SRS> <SRS>EPSG:24342</SRS> <SRS>EPSG:24343</SRS> <SRS>EPSG:24344</SRS> <SRS>EPSG:24345</SRS> <SRS>EPSG:24346</SRS> <SRS>EPSG:24347</SRS> <SRS>EPSG:24370</SRS> <SRS>EPSG:24371</SRS> <SRS>EPSG:24372</SRS> <SRS>EPSG:24373</SRS> <SRS>EPSG:24374</SRS> <SRS>EPSG:24375</SRS> <SRS>EPSG:24376</SRS> <SRS>EPSG:24377</SRS> <SRS>EPSG:24378</SRS> <SRS>EPSG:24379</SRS> <SRS>EPSG:24380</SRS> <SRS>EPSG:24381</SRS> <SRS>EPSG:24382</SRS> <SRS>EPSG:24383</SRS> <SRS>EPSG:24500</SRS> <SRS>EPSG:24547</SRS> <SRS>EPSG:24548</SRS> <SRS>EPSG:24571</SRS> <SRS>EPSG:24600</SRS> <SRS>EPSG:24718</SRS> <SRS>EPSG:24719</SRS> <SRS>EPSG:24720</SRS> <SRS>EPSG:24817</SRS> <SRS>EPSG:24818</SRS> <SRS>EPSG:24819</SRS> <SRS>EPSG:24820</SRS> <SRS>EPSG:24821</SRS> <SRS>EPSG:24877</SRS> <SRS>EPSG:24878</SRS> <SRS>EPSG:24879</SRS> <SRS>EPSG:24880</SRS> <SRS>EPSG:24881</SRS> <SRS>EPSG:24882</SRS> <SRS>EPSG:24891</SRS> <SRS>EPSG:24892</SRS> <SRS>EPSG:24893</SRS> <SRS>EPSG:25000</SRS> <SRS>EPSG:25231</SRS> <SRS>EPSG:25391</SRS> <SRS>EPSG:25392</SRS> <SRS>EPSG:25393</SRS> <SRS>EPSG:25394</SRS> <SRS>EPSG:25395</SRS> <SRS>EPSG:25700</SRS> <SRS>EPSG:25828</SRS> <SRS>EPSG:25829</SRS> <SRS>EPSG:25830</SRS> <SRS>EPSG:25831</SRS> <SRS>EPSG:25832</SRS> <SRS>EPSG:25833</SRS> <SRS>EPSG:25834</SRS> <SRS>EPSG:25835</SRS> <SRS>EPSG:25836</SRS> <SRS>EPSG:25837</SRS> <SRS>EPSG:25838</SRS> <SRS>EPSG:25884</SRS> <SRS>EPSG:25932</SRS> <SRS>EPSG:26191</SRS> <SRS>EPSG:26192</SRS> <SRS>EPSG:26193</SRS> <SRS>EPSG:26194</SRS> <SRS>EPSG:26195</SRS> <SRS>EPSG:26237</SRS> <SRS>EPSG:26331</SRS> <SRS>EPSG:26332</SRS> <SRS>EPSG:26391</SRS> <SRS>EPSG:26392</SRS> <SRS>EPSG:26393</SRS> <SRS>EPSG:26432</SRS> <SRS>EPSG:26591</SRS> <SRS>EPSG:26592</SRS> <SRS>EPSG:26632</SRS> <SRS>EPSG:26692</SRS> <SRS>EPSG:26701</SRS> <SRS>EPSG:26702</SRS> <SRS>EPSG:26703</SRS> <SRS>EPSG:26704</SRS> <SRS>EPSG:26705</SRS> <SRS>EPSG:26706</SRS> <SRS>EPSG:26707</SRS> <SRS>EPSG:26708</SRS> <SRS>EPSG:26709</SRS> <SRS>EPSG:26710</SRS> <SRS>EPSG:26711</SRS> <SRS>EPSG:26712</SRS> <SRS>EPSG:26713</SRS> <SRS>EPSG:26714</SRS> <SRS>EPSG:26715</SRS> <SRS>EPSG:26716</SRS> <SRS>EPSG:26717</SRS> <SRS>EPSG:26718</SRS> <SRS>EPSG:26719</SRS> <SRS>EPSG:26720</SRS> <SRS>EPSG:26721</SRS> <SRS>EPSG:26722</SRS> <SRS>EPSG:26729</SRS> <SRS>EPSG:26730</SRS> <SRS>EPSG:26731</SRS> <SRS>EPSG:26732</SRS> <SRS>EPSG:26733</SRS> <SRS>EPSG:26734</SRS> <SRS>EPSG:26735</SRS> <SRS>EPSG:26736</SRS> <SRS>EPSG:26737</SRS> <SRS>EPSG:26738</SRS> <SRS>EPSG:26739</SRS> <SRS>EPSG:26740</SRS> <SRS>EPSG:26741</SRS> <SRS>EPSG:26742</SRS> <SRS>EPSG:26743</SRS> <SRS>EPSG:26744</SRS> <SRS>EPSG:26745</SRS> <SRS>EPSG:26746</SRS> <SRS>EPSG:26747</SRS> <SRS>EPSG:26748</SRS> <SRS>EPSG:26749</SRS> <SRS>EPSG:26750</SRS> <SRS>EPSG:26751</SRS> <SRS>EPSG:26752</SRS> <SRS>EPSG:26753</SRS> <SRS>EPSG:26754</SRS> <SRS>EPSG:26755</SRS> <SRS>EPSG:26756</SRS> <SRS>EPSG:26757</SRS> <SRS>EPSG:26758</SRS> <SRS>EPSG:26759</SRS> <SRS>EPSG:26760</SRS> <SRS>EPSG:26766</SRS> <SRS>EPSG:26767</SRS> <SRS>EPSG:26768</SRS> <SRS>EPSG:26769</SRS> <SRS>EPSG:26770</SRS> <SRS>EPSG:26771</SRS> <SRS>EPSG:26772</SRS> <SRS>EPSG:26773</SRS> <SRS>EPSG:26774</SRS> <SRS>EPSG:26775</SRS> <SRS>EPSG:26776</SRS> <SRS>EPSG:26777</SRS> <SRS>EPSG:26778</SRS> <SRS>EPSG:26779</SRS> <SRS>EPSG:26780</SRS> <SRS>EPSG:26781</SRS> <SRS>EPSG:26782</SRS> <SRS>EPSG:26783</SRS> <SRS>EPSG:26784</SRS> <SRS>EPSG:26785</SRS> <SRS>EPSG:26786</SRS> <SRS>EPSG:26787</SRS> <SRS>EPSG:26791</SRS> <SRS>EPSG:26792</SRS> <SRS>EPSG:26793</SRS> <SRS>EPSG:26794</SRS> <SRS>EPSG:26795</SRS> <SRS>EPSG:26796</SRS> <SRS>EPSG:26797</SRS> <SRS>EPSG:26798</SRS> <SRS>EPSG:26799</SRS> <SRS>EPSG:26801</SRS> <SRS>EPSG:26802</SRS> <SRS>EPSG:26803</SRS> <SRS>EPSG:26811</SRS> <SRS>EPSG:26812</SRS> <SRS>EPSG:26813</SRS> <SRS>EPSG:26814</SRS> <SRS>EPSG:26815</SRS> <SRS>EPSG:26819</SRS> <SRS>EPSG:26820</SRS> <SRS>EPSG:26821</SRS> <SRS>EPSG:26822</SRS> <SRS>EPSG:26823</SRS> <SRS>EPSG:26824</SRS> <SRS>EPSG:26825</SRS> <SRS>EPSG:26826</SRS> <SRS>EPSG:26830</SRS> <SRS>EPSG:26831</SRS> <SRS>EPSG:26832</SRS> <SRS>EPSG:26833</SRS> <SRS>EPSG:26834</SRS> <SRS>EPSG:26835</SRS> <SRS>EPSG:26836</SRS> <SRS>EPSG:26837</SRS> <SRS>EPSG:26841</SRS> <SRS>EPSG:26842</SRS> <SRS>EPSG:26843</SRS> <SRS>EPSG:26844</SRS> <SRS>EPSG:26845</SRS> <SRS>EPSG:26846</SRS> <SRS>EPSG:26847</SRS> <SRS>EPSG:26848</SRS> <SRS>EPSG:26849</SRS> <SRS>EPSG:26850</SRS> <SRS>EPSG:26851</SRS> <SRS>EPSG:26852</SRS> <SRS>EPSG:26853</SRS> <SRS>EPSG:26854</SRS> <SRS>EPSG:26855</SRS> <SRS>EPSG:26856</SRS> <SRS>EPSG:26857</SRS> <SRS>EPSG:26858</SRS> <SRS>EPSG:26859</SRS> <SRS>EPSG:26860</SRS> <SRS>EPSG:26861</SRS> <SRS>EPSG:26862</SRS> <SRS>EPSG:26863</SRS> <SRS>EPSG:26864</SRS> <SRS>EPSG:26865</SRS> <SRS>EPSG:26866</SRS> <SRS>EPSG:26867</SRS> <SRS>EPSG:26868</SRS> <SRS>EPSG:26869</SRS> <SRS>EPSG:26870</SRS> <SRS>EPSG:26891</SRS> <SRS>EPSG:26892</SRS> <SRS>EPSG:26893</SRS> <SRS>EPSG:26894</SRS> <SRS>EPSG:26895</SRS> <SRS>EPSG:26896</SRS> <SRS>EPSG:26897</SRS> <SRS>EPSG:26898</SRS> <SRS>EPSG:26899</SRS> <SRS>EPSG:26901</SRS> <SRS>EPSG:26902</SRS> <SRS>EPSG:26903</SRS> <SRS>EPSG:26904</SRS> <SRS>EPSG:26905</SRS> <SRS>EPSG:26906</SRS> <SRS>EPSG:26907</SRS> <SRS>EPSG:26908</SRS> <SRS>EPSG:26909</SRS> <SRS>EPSG:26910</SRS> <SRS>EPSG:26911</SRS> <SRS>EPSG:26912</SRS> <SRS>EPSG:26913</SRS> <SRS>EPSG:26914</SRS> <SRS>EPSG:26915</SRS> <SRS>EPSG:26916</SRS> <SRS>EPSG:26917</SRS> <SRS>EPSG:26918</SRS> <SRS>EPSG:26919</SRS> <SRS>EPSG:26920</SRS> <SRS>EPSG:26921</SRS> <SRS>EPSG:26922</SRS> <SRS>EPSG:26923</SRS> <SRS>EPSG:26929</SRS> <SRS>EPSG:26930</SRS> <SRS>EPSG:26931</SRS> <SRS>EPSG:26932</SRS> <SRS>EPSG:26933</SRS> <SRS>EPSG:26934</SRS> <SRS>EPSG:26935</SRS> <SRS>EPSG:26936</SRS> <SRS>EPSG:26937</SRS> <SRS>EPSG:26938</SRS> <SRS>EPSG:26939</SRS> <SRS>EPSG:26940</SRS> <SRS>EPSG:26941</SRS> <SRS>EPSG:26942</SRS> <SRS>EPSG:26943</SRS> <SRS>EPSG:26944</SRS> <SRS>EPSG:26945</SRS> <SRS>EPSG:26946</SRS> <SRS>EPSG:26948</SRS> <SRS>EPSG:26949</SRS> <SRS>EPSG:26950</SRS> <SRS>EPSG:26951</SRS> <SRS>EPSG:26952</SRS> <SRS>EPSG:26953</SRS> <SRS>EPSG:26954</SRS> <SRS>EPSG:26955</SRS> <SRS>EPSG:26956</SRS> <SRS>EPSG:26957</SRS> <SRS>EPSG:26958</SRS> <SRS>EPSG:26959</SRS> <SRS>EPSG:26960</SRS> <SRS>EPSG:26961</SRS> <SRS>EPSG:26962</SRS> <SRS>EPSG:26963</SRS> <SRS>EPSG:26964</SRS> <SRS>EPSG:26965</SRS> <SRS>EPSG:26966</SRS> <SRS>EPSG:26967</SRS> <SRS>EPSG:26968</SRS> <SRS>EPSG:26969</SRS> <SRS>EPSG:26970</SRS> <SRS>EPSG:26971</SRS> <SRS>EPSG:26972</SRS> <SRS>EPSG:26973</SRS> <SRS>EPSG:26974</SRS> <SRS>EPSG:26975</SRS> <SRS>EPSG:26976</SRS> <SRS>EPSG:26977</SRS> <SRS>EPSG:26978</SRS> <SRS>EPSG:26979</SRS> <SRS>EPSG:26980</SRS> <SRS>EPSG:26981</SRS> <SRS>EPSG:26982</SRS> <SRS>EPSG:26983</SRS> <SRS>EPSG:26984</SRS> <SRS>EPSG:26985</SRS> <SRS>EPSG:26986</SRS> <SRS>EPSG:26987</SRS> <SRS>EPSG:26988</SRS> <SRS>EPSG:26989</SRS> <SRS>EPSG:26990</SRS> <SRS>EPSG:26991</SRS> <SRS>EPSG:26992</SRS> <SRS>EPSG:26993</SRS> <SRS>EPSG:26994</SRS> <SRS>EPSG:26995</SRS> <SRS>EPSG:26996</SRS> <SRS>EPSG:26997</SRS> <SRS>EPSG:26998</SRS> <SRS>EPSG:27037</SRS> <SRS>EPSG:27038</SRS> <SRS>EPSG:27039</SRS> <SRS>EPSG:27040</SRS> <SRS>EPSG:27120</SRS> <SRS>EPSG:27200</SRS> <SRS>EPSG:27205</SRS> <SRS>EPSG:27206</SRS> <SRS>EPSG:27207</SRS> <SRS>EPSG:27208</SRS> <SRS>EPSG:27209</SRS> <SRS>EPSG:27210</SRS> <SRS>EPSG:27211</SRS> <SRS>EPSG:27212</SRS> <SRS>EPSG:27213</SRS> <SRS>EPSG:27214</SRS> <SRS>EPSG:27215</SRS> <SRS>EPSG:27216</SRS> <SRS>EPSG:27217</SRS> <SRS>EPSG:27218</SRS> <SRS>EPSG:27219</SRS> <SRS>EPSG:27220</SRS> <SRS>EPSG:27221</SRS> <SRS>EPSG:27222</SRS> <SRS>EPSG:27223</SRS> <SRS>EPSG:27224</SRS> <SRS>EPSG:27225</SRS> <SRS>EPSG:27226</SRS> <SRS>EPSG:27227</SRS> <SRS>EPSG:27228</SRS> <SRS>EPSG:27229</SRS> <SRS>EPSG:27230</SRS> <SRS>EPSG:27231</SRS> <SRS>EPSG:27232</SRS> <SRS>EPSG:27258</SRS> <SRS>EPSG:27259</SRS> <SRS>EPSG:27260</SRS> <SRS>EPSG:27291</SRS> <SRS>EPSG:27292</SRS> <SRS>EPSG:27391</SRS> <SRS>EPSG:27392</SRS> <SRS>EPSG:27393</SRS> <SRS>EPSG:27394</SRS> <SRS>EPSG:27395</SRS> <SRS>EPSG:27396</SRS> <SRS>EPSG:27397</SRS> <SRS>EPSG:27398</SRS> <SRS>EPSG:27429</SRS> <SRS>EPSG:27492</SRS> <SRS>EPSG:27493</SRS> <SRS>EPSG:27500</SRS> <SRS>EPSG:27561</SRS> <SRS>EPSG:27562</SRS> <SRS>EPSG:27563</SRS> <SRS>EPSG:27564</SRS> <SRS>EPSG:27571</SRS> <SRS>EPSG:27572</SRS> <SRS>EPSG:27573</SRS> <SRS>EPSG:27574</SRS> <SRS>EPSG:27581</SRS> <SRS>EPSG:27582</SRS> <SRS>EPSG:27583</SRS> <SRS>EPSG:27584</SRS> <SRS>EPSG:27591</SRS> <SRS>EPSG:27592</SRS> <SRS>EPSG:27593</SRS> <SRS>EPSG:27594</SRS> <SRS>EPSG:27700</SRS> <SRS>EPSG:28191</SRS> <SRS>EPSG:28192</SRS> <SRS>EPSG:28193</SRS> <SRS>EPSG:28232</SRS> <SRS>EPSG:28348</SRS> <SRS>EPSG:28349</SRS> <SRS>EPSG:28350</SRS> <SRS>EPSG:28351</SRS> <SRS>EPSG:28352</SRS> <SRS>EPSG:28353</SRS> <SRS>EPSG:28354</SRS> <SRS>EPSG:28355</SRS> <SRS>EPSG:28356</SRS> <SRS>EPSG:28357</SRS> <SRS>EPSG:28358</SRS> <SRS>EPSG:28402</SRS> <SRS>EPSG:28403</SRS> <SRS>EPSG:28404</SRS> <SRS>EPSG:28405</SRS> <SRS>EPSG:28406</SRS> <SRS>EPSG:28407</SRS> <SRS>EPSG:28408</SRS> <SRS>EPSG:28409</SRS> <SRS>EPSG:28410</SRS> <SRS>EPSG:28411</SRS> <SRS>EPSG:28412</SRS> <SRS>EPSG:28413</SRS> <SRS>EPSG:28414</SRS> <SRS>EPSG:28415</SRS> <SRS>EPSG:28416</SRS> <SRS>EPSG:28417</SRS> <SRS>EPSG:28418</SRS> <SRS>EPSG:28419</SRS> <SRS>EPSG:28420</SRS> <SRS>EPSG:28421</SRS> <SRS>EPSG:28422</SRS> <SRS>EPSG:28423</SRS> <SRS>EPSG:28424</SRS> <SRS>EPSG:28425</SRS> <SRS>EPSG:28426</SRS> <SRS>EPSG:28427</SRS> <SRS>EPSG:28428</SRS> <SRS>EPSG:28429</SRS> <SRS>EPSG:28430</SRS> <SRS>EPSG:28431</SRS> <SRS>EPSG:28432</SRS> <SRS>EPSG:28462</SRS> <SRS>EPSG:28463</SRS> <SRS>EPSG:28464</SRS> <SRS>EPSG:28465</SRS> <SRS>EPSG:28466</SRS> <SRS>EPSG:28467</SRS> <SRS>EPSG:28468</SRS> <SRS>EPSG:28469</SRS> <SRS>EPSG:28470</SRS> <SRS>EPSG:28471</SRS> <SRS>EPSG:28472</SRS> <SRS>EPSG:28473</SRS> <SRS>EPSG:28474</SRS> <SRS>EPSG:28475</SRS> <SRS>EPSG:28476</SRS> <SRS>EPSG:28477</SRS> <SRS>EPSG:28478</SRS> <SRS>EPSG:28479</SRS> <SRS>EPSG:28480</SRS> <SRS>EPSG:28481</SRS> <SRS>EPSG:28482</SRS> <SRS>EPSG:28483</SRS> <SRS>EPSG:28484</SRS> <SRS>EPSG:28485</SRS> <SRS>EPSG:28486</SRS> <SRS>EPSG:28487</SRS> <SRS>EPSG:28488</SRS> <SRS>EPSG:28489</SRS> <SRS>EPSG:28490</SRS> <SRS>EPSG:28491</SRS> <SRS>EPSG:28492</SRS> <SRS>EPSG:28600</SRS> <SRS>EPSG:28991</SRS> <SRS>EPSG:28992</SRS> <SRS>EPSG:29100</SRS> <SRS>EPSG:29101</SRS> <SRS>EPSG:29118</SRS> <SRS>EPSG:29119</SRS> <SRS>EPSG:29120</SRS> <SRS>EPSG:29121</SRS> <SRS>EPSG:29122</SRS> <SRS>EPSG:29168</SRS> <SRS>EPSG:29169</SRS> <SRS>EPSG:29170</SRS> <SRS>EPSG:29171</SRS> <SRS>EPSG:29172</SRS> <SRS>EPSG:29177</SRS> <SRS>EPSG:29178</SRS> <SRS>EPSG:29179</SRS> <SRS>EPSG:29180</SRS> <SRS>EPSG:29181</SRS> <SRS>EPSG:29182</SRS> <SRS>EPSG:29183</SRS> <SRS>EPSG:29184</SRS> <SRS>EPSG:29185</SRS> <SRS>EPSG:29187</SRS> <SRS>EPSG:29188</SRS> <SRS>EPSG:29189</SRS> <SRS>EPSG:29190</SRS> <SRS>EPSG:29191</SRS> <SRS>EPSG:29192</SRS> <SRS>EPSG:29193</SRS> <SRS>EPSG:29194</SRS> <SRS>EPSG:29195</SRS> <SRS>EPSG:29220</SRS> <SRS>EPSG:29221</SRS> <SRS>EPSG:29333</SRS> <SRS>EPSG:29371</SRS> <SRS>EPSG:29373</SRS> <SRS>EPSG:29375</SRS> <SRS>EPSG:29377</SRS> <SRS>EPSG:29379</SRS> <SRS>EPSG:29381</SRS> <SRS>EPSG:29383</SRS> <SRS>EPSG:29385</SRS> <SRS>EPSG:29635</SRS> <SRS>EPSG:29636</SRS> <SRS>EPSG:29700</SRS> <SRS>EPSG:29701</SRS> <SRS>EPSG:29702</SRS> <SRS>EPSG:29738</SRS> <SRS>EPSG:29739</SRS> <SRS>EPSG:29849</SRS> <SRS>EPSG:29850</SRS> <SRS>EPSG:29871</SRS> <SRS>EPSG:29872</SRS> <SRS>EPSG:29873</SRS> <SRS>EPSG:29900</SRS> <SRS>EPSG:29901</SRS> <SRS>EPSG:29902</SRS> <SRS>EPSG:29903</SRS> <SRS>EPSG:30161</SRS> <SRS>EPSG:30162</SRS> <SRS>EPSG:30163</SRS> <SRS>EPSG:30164</SRS> <SRS>EPSG:30165</SRS> <SRS>EPSG:30166</SRS> <SRS>EPSG:30167</SRS> <SRS>EPSG:30168</SRS> <SRS>EPSG:30169</SRS> <SRS>EPSG:30170</SRS> <SRS>EPSG:30171</SRS> <SRS>EPSG:30172</SRS> <SRS>EPSG:30173</SRS> <SRS>EPSG:30174</SRS> <SRS>EPSG:30175</SRS> <SRS>EPSG:30176</SRS> <SRS>EPSG:30177</SRS> <SRS>EPSG:30178</SRS> <SRS>EPSG:30179</SRS> <SRS>EPSG:30200</SRS> <SRS>EPSG:30339</SRS> <SRS>EPSG:30340</SRS> <SRS>EPSG:30491</SRS> <SRS>EPSG:30492</SRS> <SRS>EPSG:30493</SRS> <SRS>EPSG:30494</SRS> <SRS>EPSG:30729</SRS> <SRS>EPSG:30730</SRS> <SRS>EPSG:30731</SRS> <SRS>EPSG:30732</SRS> <SRS>EPSG:30791</SRS> <SRS>EPSG:30792</SRS> <SRS>EPSG:30800</SRS> <SRS>EPSG:31028</SRS> <SRS>EPSG:31121</SRS> <SRS>EPSG:31154</SRS> <SRS>EPSG:31170</SRS> <SRS>EPSG:31171</SRS> <SRS>EPSG:31251</SRS> <SRS>EPSG:31252</SRS> <SRS>EPSG:31253</SRS> <SRS>EPSG:31254</SRS> <SRS>EPSG:31255</SRS> <SRS>EPSG:31256</SRS> <SRS>EPSG:31257</SRS> <SRS>EPSG:31258</SRS> <SRS>EPSG:31259</SRS> <SRS>EPSG:31265</SRS> <SRS>EPSG:31266</SRS> <SRS>EPSG:31267</SRS> <SRS>EPSG:31268</SRS> <SRS>EPSG:31275</SRS> <SRS>EPSG:31276</SRS> <SRS>EPSG:31277</SRS> <SRS>EPSG:31278</SRS> <SRS>EPSG:31279</SRS> <SRS>EPSG:31281</SRS> <SRS>EPSG:31282</SRS> <SRS>EPSG:31283</SRS> <SRS>EPSG:31284</SRS> <SRS>EPSG:31285</SRS> <SRS>EPSG:31286</SRS> <SRS>EPSG:31287</SRS> <SRS>EPSG:31288</SRS> <SRS>EPSG:31289</SRS> <SRS>EPSG:31290</SRS> <SRS>EPSG:31291</SRS> <SRS>EPSG:31292</SRS> <SRS>EPSG:31293</SRS> <SRS>EPSG:31294</SRS> <SRS>EPSG:31295</SRS> <SRS>EPSG:31296</SRS> <SRS>EPSG:31297</SRS> <SRS>EPSG:31300</SRS> <SRS>EPSG:31370</SRS> <SRS>EPSG:31461</SRS> <SRS>EPSG:31462</SRS> <SRS>EPSG:31463</SRS> <SRS>EPSG:31464</SRS> <SRS>EPSG:31465</SRS> <SRS>EPSG:31466</SRS> <SRS>EPSG:31467</SRS> <SRS>EPSG:31468</SRS> <SRS>EPSG:31469</SRS> <SRS>EPSG:31528</SRS> <SRS>EPSG:31529</SRS> <SRS>EPSG:31600</SRS> <SRS>EPSG:31700</SRS> <SRS>EPSG:31838</SRS> <SRS>EPSG:31839</SRS> <SRS>EPSG:31900</SRS> <SRS>EPSG:31901</SRS> <SRS>EPSG:31965</SRS> <SRS>EPSG:31966</SRS> <SRS>EPSG:31967</SRS> <SRS>EPSG:31968</SRS> <SRS>EPSG:31969</SRS> <SRS>EPSG:31970</SRS> <SRS>EPSG:31971</SRS> <SRS>EPSG:31972</SRS> <SRS>EPSG:31973</SRS> <SRS>EPSG:31974</SRS> <SRS>EPSG:31975</SRS> <SRS>EPSG:31976</SRS> <SRS>EPSG:31977</SRS> <SRS>EPSG:31978</SRS> <SRS>EPSG:31979</SRS> <SRS>EPSG:31980</SRS> <SRS>EPSG:31981</SRS> <SRS>EPSG:31982</SRS> <SRS>EPSG:31983</SRS> <SRS>EPSG:31984</SRS> <SRS>EPSG:31985</SRS> <SRS>EPSG:31986</SRS> <SRS>EPSG:31987</SRS> <SRS>EPSG:31988</SRS> <SRS>EPSG:31989</SRS> <SRS>EPSG:31990</SRS> <SRS>EPSG:31991</SRS> <SRS>EPSG:31992</SRS> <SRS>EPSG:31993</SRS> <SRS>EPSG:31994</SRS> <SRS>EPSG:31995</SRS> <SRS>EPSG:31996</SRS> <SRS>EPSG:31997</SRS> <SRS>EPSG:31998</SRS> <SRS>EPSG:31999</SRS> <SRS>EPSG:32000</SRS> <SRS>EPSG:32001</SRS> <SRS>EPSG:32002</SRS> <SRS>EPSG:32003</SRS> <SRS>EPSG:32005</SRS> <SRS>EPSG:32006</SRS> <SRS>EPSG:32007</SRS> <SRS>EPSG:32008</SRS> <SRS>EPSG:32009</SRS> <SRS>EPSG:32010</SRS> <SRS>EPSG:32011</SRS> <SRS>EPSG:32012</SRS> <SRS>EPSG:32013</SRS> <SRS>EPSG:32014</SRS> <SRS>EPSG:32015</SRS> <SRS>EPSG:32016</SRS> <SRS>EPSG:32017</SRS> <SRS>EPSG:32018</SRS> <SRS>EPSG:32019</SRS> <SRS>EPSG:32020</SRS> <SRS>EPSG:32021</SRS> <SRS>EPSG:32022</SRS> <SRS>EPSG:32023</SRS> <SRS>EPSG:32024</SRS> <SRS>EPSG:32025</SRS> <SRS>EPSG:32026</SRS> <SRS>EPSG:32027</SRS> <SRS>EPSG:32028</SRS> <SRS>EPSG:32029</SRS> <SRS>EPSG:32030</SRS> <SRS>EPSG:32031</SRS> <SRS>EPSG:32033</SRS> <SRS>EPSG:32034</SRS> <SRS>EPSG:32035</SRS> <SRS>EPSG:32036</SRS> <SRS>EPSG:32037</SRS> <SRS>EPSG:32038</SRS> <SRS>EPSG:32039</SRS> <SRS>EPSG:32040</SRS> <SRS>EPSG:32041</SRS> <SRS>EPSG:32042</SRS> <SRS>EPSG:32043</SRS> <SRS>EPSG:32044</SRS> <SRS>EPSG:32045</SRS> <SRS>EPSG:32046</SRS> <SRS>EPSG:32047</SRS> <SRS>EPSG:32048</SRS> <SRS>EPSG:32049</SRS> <SRS>EPSG:32050</SRS> <SRS>EPSG:32051</SRS> <SRS>EPSG:32052</SRS> <SRS>EPSG:32053</SRS> <SRS>EPSG:32054</SRS> <SRS>EPSG:32055</SRS> <SRS>EPSG:32056</SRS> <SRS>EPSG:32057</SRS> <SRS>EPSG:32058</SRS> <SRS>EPSG:32061</SRS> <SRS>EPSG:32062</SRS> <SRS>EPSG:32064</SRS> <SRS>EPSG:32065</SRS> <SRS>EPSG:32066</SRS> <SRS>EPSG:32067</SRS> <SRS>EPSG:32074</SRS> <SRS>EPSG:32075</SRS> <SRS>EPSG:32076</SRS> <SRS>EPSG:32077</SRS> <SRS>EPSG:32081</SRS> <SRS>EPSG:32082</SRS> <SRS>EPSG:32083</SRS> <SRS>EPSG:32084</SRS> <SRS>EPSG:32085</SRS> <SRS>EPSG:32086</SRS> <SRS>EPSG:32098</SRS> <SRS>EPSG:32099</SRS> <SRS>EPSG:32100</SRS> <SRS>EPSG:32104</SRS> <SRS>EPSG:32107</SRS> <SRS>EPSG:32108</SRS> <SRS>EPSG:32109</SRS> <SRS>EPSG:32110</SRS> <SRS>EPSG:32111</SRS> <SRS>EPSG:32112</SRS> <SRS>EPSG:32113</SRS> <SRS>EPSG:32114</SRS> <SRS>EPSG:32115</SRS> <SRS>EPSG:32116</SRS> <SRS>EPSG:32117</SRS> <SRS>EPSG:32118</SRS> <SRS>EPSG:32119</SRS> <SRS>EPSG:32120</SRS> <SRS>EPSG:32121</SRS> <SRS>EPSG:32122</SRS> <SRS>EPSG:32123</SRS> <SRS>EPSG:32124</SRS> <SRS>EPSG:32125</SRS> <SRS>EPSG:32126</SRS> <SRS>EPSG:32127</SRS> <SRS>EPSG:32128</SRS> <SRS>EPSG:32129</SRS> <SRS>EPSG:32130</SRS> <SRS>EPSG:32133</SRS> <SRS>EPSG:32134</SRS> <SRS>EPSG:32135</SRS> <SRS>EPSG:32136</SRS> <SRS>EPSG:32137</SRS> <SRS>EPSG:32138</SRS> <SRS>EPSG:32139</SRS> <SRS>EPSG:32140</SRS> <SRS>EPSG:32141</SRS> <SRS>EPSG:32142</SRS> <SRS>EPSG:32143</SRS> <SRS>EPSG:32144</SRS> <SRS>EPSG:32145</SRS> <SRS>EPSG:32146</SRS> <SRS>EPSG:32147</SRS> <SRS>EPSG:32148</SRS> <SRS>EPSG:32149</SRS> <SRS>EPSG:32150</SRS> <SRS>EPSG:32151</SRS> <SRS>EPSG:32152</SRS> <SRS>EPSG:32153</SRS> <SRS>EPSG:32154</SRS> <SRS>EPSG:32155</SRS> <SRS>EPSG:32156</SRS> <SRS>EPSG:32157</SRS> <SRS>EPSG:32158</SRS> <SRS>EPSG:32161</SRS> <SRS>EPSG:32164</SRS> <SRS>EPSG:32165</SRS> <SRS>EPSG:32166</SRS> <SRS>EPSG:32167</SRS> <SRS>EPSG:32180</SRS> <SRS>EPSG:32181</SRS> <SRS>EPSG:32182</SRS> <SRS>EPSG:32183</SRS> <SRS>EPSG:32184</SRS> <SRS>EPSG:32185</SRS> <SRS>EPSG:32186</SRS> <SRS>EPSG:32187</SRS> <SRS>EPSG:32188</SRS> <SRS>EPSG:32189</SRS> <SRS>EPSG:32190</SRS> <SRS>EPSG:32191</SRS> <SRS>EPSG:32192</SRS> <SRS>EPSG:32193</SRS> <SRS>EPSG:32194</SRS> <SRS>EPSG:32195</SRS> <SRS>EPSG:32196</SRS> <SRS>EPSG:32197</SRS> <SRS>EPSG:32198</SRS> <SRS>EPSG:32199</SRS> <SRS>EPSG:32201</SRS> <SRS>EPSG:32202</SRS> <SRS>EPSG:32203</SRS> <SRS>EPSG:32204</SRS> <SRS>EPSG:32205</SRS> <SRS>EPSG:32206</SRS> <SRS>EPSG:32207</SRS> <SRS>EPSG:32208</SRS> <SRS>EPSG:32209</SRS> <SRS>EPSG:32210</SRS> <SRS>EPSG:32211</SRS> <SRS>EPSG:32212</SRS> <SRS>EPSG:32213</SRS> <SRS>EPSG:32214</SRS> <SRS>EPSG:32215</SRS> <SRS>EPSG:32216</SRS> <SRS>EPSG:32217</SRS> <SRS>EPSG:32218</SRS> <SRS>EPSG:32219</SRS> <SRS>EPSG:32220</SRS> <SRS>EPSG:32221</SRS> <SRS>EPSG:32222</SRS> <SRS>EPSG:32223</SRS> <SRS>EPSG:32224</SRS> <SRS>EPSG:32225</SRS> <SRS>EPSG:32226</SRS> <SRS>EPSG:32227</SRS> <SRS>EPSG:32228</SRS> <SRS>EPSG:32229</SRS> <SRS>EPSG:32230</SRS> <SRS>EPSG:32231</SRS> <SRS>EPSG:32232</SRS> <SRS>EPSG:32233</SRS> <SRS>EPSG:32234</SRS> <SRS>EPSG:32235</SRS> <SRS>EPSG:32236</SRS> <SRS>EPSG:32237</SRS> <SRS>EPSG:32238</SRS> <SRS>EPSG:32239</SRS> <SRS>EPSG:32240</SRS> <SRS>EPSG:32241</SRS> <SRS>EPSG:32242</SRS> <SRS>EPSG:32243</SRS> <SRS>EPSG:32244</SRS> <SRS>EPSG:32245</SRS> <SRS>EPSG:32246</SRS> <SRS>EPSG:32247</SRS> <SRS>EPSG:32248</SRS> <SRS>EPSG:32249</SRS> <SRS>EPSG:32250</SRS> <SRS>EPSG:32251</SRS> <SRS>EPSG:32252</SRS> <SRS>EPSG:32253</SRS> <SRS>EPSG:32254</SRS> <SRS>EPSG:32255</SRS> <SRS>EPSG:32256</SRS> <SRS>EPSG:32257</SRS> <SRS>EPSG:32258</SRS> <SRS>EPSG:32259</SRS> <SRS>EPSG:32260</SRS> <SRS>EPSG:32301</SRS> <SRS>EPSG:32302</SRS> <SRS>EPSG:32303</SRS> <SRS>EPSG:32304</SRS> <SRS>EPSG:32305</SRS> <SRS>EPSG:32306</SRS> <SRS>EPSG:32307</SRS> <SRS>EPSG:32308</SRS> <SRS>EPSG:32309</SRS> <SRS>EPSG:32310</SRS> <SRS>EPSG:32311</SRS> <SRS>EPSG:32312</SRS> <SRS>EPSG:32313</SRS> <SRS>EPSG:32314</SRS> <SRS>EPSG:32315</SRS> <SRS>EPSG:32316</SRS> <SRS>EPSG:32317</SRS> <SRS>EPSG:32318</SRS> <SRS>EPSG:32319</SRS> <SRS>EPSG:32320</SRS> <SRS>EPSG:32321</SRS> <SRS>EPSG:32322</SRS> <SRS>EPSG:32323</SRS> <SRS>EPSG:32324</SRS> <SRS>EPSG:32325</SRS> <SRS>EPSG:32326</SRS> <SRS>EPSG:32327</SRS> <SRS>EPSG:32328</SRS> <SRS>EPSG:32329</SRS> <SRS>EPSG:32330</SRS> <SRS>EPSG:32331</SRS> <SRS>EPSG:32332</SRS> <SRS>EPSG:32333</SRS> <SRS>EPSG:32334</SRS> <SRS>EPSG:32335</SRS> <SRS>EPSG:32336</SRS> <SRS>EPSG:32337</SRS> <SRS>EPSG:32338</SRS> <SRS>EPSG:32339</SRS> <SRS>EPSG:32340</SRS> <SRS>EPSG:32341</SRS> <SRS>EPSG:32342</SRS> <SRS>EPSG:32343</SRS> <SRS>EPSG:32344</SRS> <SRS>EPSG:32345</SRS> <SRS>EPSG:32346</SRS> <SRS>EPSG:32347</SRS> <SRS>EPSG:32348</SRS> <SRS>EPSG:32349</SRS> <SRS>EPSG:32350</SRS> <SRS>EPSG:32351</SRS> <SRS>EPSG:32352</SRS> <SRS>EPSG:32353</SRS> <SRS>EPSG:32354</SRS> <SRS>EPSG:32355</SRS> <SRS>EPSG:32356</SRS> <SRS>EPSG:32357</SRS> <SRS>EPSG:32358</SRS> <SRS>EPSG:32359</SRS> <SRS>EPSG:32360</SRS> <SRS>EPSG:32401</SRS> <SRS>EPSG:32402</SRS> <SRS>EPSG:32403</SRS> <SRS>EPSG:32404</SRS> <SRS>EPSG:32405</SRS> <SRS>EPSG:32406</SRS> <SRS>EPSG:32407</SRS> <SRS>EPSG:32408</SRS> <SRS>EPSG:32409</SRS> <SRS>EPSG:32410</SRS> <SRS>EPSG:32411</SRS> <SRS>EPSG:32412</SRS> <SRS>EPSG:32413</SRS> <SRS>EPSG:32414</SRS> <SRS>EPSG:32415</SRS> <SRS>EPSG:32416</SRS> <SRS>EPSG:32417</SRS> <SRS>EPSG:32418</SRS> <SRS>EPSG:32419</SRS> <SRS>EPSG:32420</SRS> <SRS>EPSG:32421</SRS> <SRS>EPSG:32422</SRS> <SRS>EPSG:32423</SRS> <SRS>EPSG:32424</SRS> <SRS>EPSG:32425</SRS> <SRS>EPSG:32426</SRS> <SRS>EPSG:32427</SRS> <SRS>EPSG:32428</SRS> <SRS>EPSG:32429</SRS> <SRS>EPSG:32430</SRS> <SRS>EPSG:32431</SRS> <SRS>EPSG:32432</SRS> <SRS>EPSG:32433</SRS> <SRS>EPSG:32434</SRS> <SRS>EPSG:32435</SRS> <SRS>EPSG:32436</SRS> <SRS>EPSG:32437</SRS> <SRS>EPSG:32438</SRS> <SRS>EPSG:32439</SRS> <SRS>EPSG:32440</SRS> <SRS>EPSG:32441</SRS> <SRS>EPSG:32442</SRS> <SRS>EPSG:32443</SRS> <SRS>EPSG:32444</SRS> <SRS>EPSG:32445</SRS> <SRS>EPSG:32446</SRS> <SRS>EPSG:32447</SRS> <SRS>EPSG:32448</SRS> <SRS>EPSG:32449</SRS> <SRS>EPSG:32450</SRS> <SRS>EPSG:32451</SRS> <SRS>EPSG:32452</SRS> <SRS>EPSG:32453</SRS> <SRS>EPSG:32454</SRS> <SRS>EPSG:32455</SRS> <SRS>EPSG:32456</SRS> <SRS>EPSG:32457</SRS> <SRS>EPSG:32458</SRS> <SRS>EPSG:32459</SRS> <SRS>EPSG:32460</SRS> <SRS>EPSG:32501</SRS> <SRS>EPSG:32502</SRS> <SRS>EPSG:32503</SRS> <SRS>EPSG:32504</SRS> <SRS>EPSG:32505</SRS> <SRS>EPSG:32506</SRS> <SRS>EPSG:32507</SRS> <SRS>EPSG:32508</SRS> <SRS>EPSG:32509</SRS> <SRS>EPSG:32510</SRS> <SRS>EPSG:32511</SRS> <SRS>EPSG:32512</SRS> <SRS>EPSG:32513</SRS> <SRS>EPSG:32514</SRS> <SRS>EPSG:32515</SRS> <SRS>EPSG:32516</SRS> <SRS>EPSG:32517</SRS> <SRS>EPSG:32518</SRS> <SRS>EPSG:32519</SRS> <SRS>EPSG:32520</SRS> <SRS>EPSG:32521</SRS> <SRS>EPSG:32522</SRS> <SRS>EPSG:32523</SRS> <SRS>EPSG:32524</SRS> <SRS>EPSG:32525</SRS> <SRS>EPSG:32526</SRS> <SRS>EPSG:32527</SRS> <SRS>EPSG:32528</SRS> <SRS>EPSG:32529</SRS> <SRS>EPSG:32530</SRS> <SRS>EPSG:32531</SRS> <SRS>EPSG:32532</SRS> <SRS>EPSG:32533</SRS> <SRS>EPSG:32534</SRS> <SRS>EPSG:32535</SRS> <SRS>EPSG:32536</SRS> <SRS>EPSG:32537</SRS> <SRS>EPSG:32538</SRS> <SRS>EPSG:32539</SRS> <SRS>EPSG:32540</SRS> <SRS>EPSG:32541</SRS> <SRS>EPSG:32542</SRS> <SRS>EPSG:32543</SRS> <SRS>EPSG:32544</SRS> <SRS>EPSG:32545</SRS> <SRS>EPSG:32546</SRS> <SRS>EPSG:32547</SRS> <SRS>EPSG:32548</SRS> <SRS>EPSG:32549</SRS> <SRS>EPSG:32550</SRS> <SRS>EPSG:32551</SRS> <SRS>EPSG:32552</SRS> <SRS>EPSG:32553</SRS> <SRS>EPSG:32554</SRS> <SRS>EPSG:32555</SRS> <SRS>EPSG:32556</SRS> <SRS>EPSG:32557</SRS> <SRS>EPSG:32558</SRS> <SRS>EPSG:32559</SRS> <SRS>EPSG:32560</SRS> <SRS>EPSG:32600</SRS> <SRS>EPSG:32601</SRS> <SRS>EPSG:32602</SRS> <SRS>EPSG:32603</SRS> <SRS>EPSG:32604</SRS> <SRS>EPSG:32605</SRS> <SRS>EPSG:32606</SRS> <SRS>EPSG:32607</SRS> <SRS>EPSG:32608</SRS> <SRS>EPSG:32609</SRS> <SRS>EPSG:32610</SRS> <SRS>EPSG:32611</SRS> <SRS>EPSG:32612</SRS> <SRS>EPSG:32613</SRS> <SRS>EPSG:32614</SRS> <SRS>EPSG:32615</SRS> <SRS>EPSG:32616</SRS> <SRS>EPSG:32617</SRS> <SRS>EPSG:32618</SRS> <SRS>EPSG:32619</SRS> <SRS>EPSG:32620</SRS> <SRS>EPSG:32621</SRS> <SRS>EPSG:32622</SRS> <SRS>EPSG:32623</SRS> <SRS>EPSG:32624</SRS> <SRS>EPSG:32625</SRS> <SRS>EPSG:32626</SRS> <SRS>EPSG:32627</SRS> <SRS>EPSG:32628</SRS> <SRS>EPSG:32629</SRS> <SRS>EPSG:32630</SRS> <SRS>EPSG:32631</SRS> <SRS>EPSG:32632</SRS> <SRS>EPSG:32633</SRS> <SRS>EPSG:32634</SRS> <SRS>EPSG:32635</SRS> <SRS>EPSG:32636</SRS> <SRS>EPSG:32637</SRS> <SRS>EPSG:32638</SRS> <SRS>EPSG:32639</SRS> <SRS>EPSG:32640</SRS> <SRS>EPSG:32641</SRS> <SRS>EPSG:32642</SRS> <SRS>EPSG:32643</SRS> <SRS>EPSG:32644</SRS> <SRS>EPSG:32645</SRS> <SRS>EPSG:32646</SRS> <SRS>EPSG:32647</SRS> <SRS>EPSG:32648</SRS> <SRS>EPSG:32649</SRS> <SRS>EPSG:32650</SRS> <SRS>EPSG:32651</SRS> <SRS>EPSG:32652</SRS> <SRS>EPSG:32653</SRS> <SRS>EPSG:32654</SRS> <SRS>EPSG:32655</SRS> <SRS>EPSG:32656</SRS> <SRS>EPSG:32657</SRS> <SRS>EPSG:32658</SRS> <SRS>EPSG:32659</SRS> <SRS>EPSG:32660</SRS> <SRS>EPSG:32661</SRS> <SRS>EPSG:32662</SRS> <SRS>EPSG:32663</SRS> <SRS>EPSG:32664</SRS> <SRS>EPSG:32665</SRS> <SRS>EPSG:32666</SRS> <SRS>EPSG:32667</SRS> <SRS>EPSG:32700</SRS> <SRS>EPSG:32701</SRS> <SRS>EPSG:32702</SRS> <SRS>EPSG:32703</SRS> <SRS>EPSG:32704</SRS> <SRS>EPSG:32705</SRS> <SRS>EPSG:32706</SRS> <SRS>EPSG:32707</SRS> <SRS>EPSG:32708</SRS> <SRS>EPSG:32709</SRS> <SRS>EPSG:32710</SRS> <SRS>EPSG:32711</SRS> <SRS>EPSG:32712</SRS> <SRS>EPSG:32713</SRS> <SRS>EPSG:32714</SRS> <SRS>EPSG:32715</SRS> <SRS>EPSG:32716</SRS> <SRS>EPSG:32717</SRS> <SRS>EPSG:32718</SRS> <SRS>EPSG:32719</SRS> <SRS>EPSG:32720</SRS> <SRS>EPSG:32721</SRS> <SRS>EPSG:32722</SRS> <SRS>EPSG:32723</SRS> <SRS>EPSG:32724</SRS> <SRS>EPSG:32725</SRS> <SRS>EPSG:32726</SRS> <SRS>EPSG:32727</SRS> <SRS>EPSG:32728</SRS> <SRS>EPSG:32729</SRS> <SRS>EPSG:32730</SRS> <SRS>EPSG:32731</SRS> <SRS>EPSG:32732</SRS> <SRS>EPSG:32733</SRS> <SRS>EPSG:32734</SRS> <SRS>EPSG:32735</SRS> <SRS>EPSG:32736</SRS> <SRS>EPSG:32737</SRS> <SRS>EPSG:32738</SRS> <SRS>EPSG:32739</SRS> <SRS>EPSG:32740</SRS> <SRS>EPSG:32741</SRS> <SRS>EPSG:32742</SRS> <SRS>EPSG:32743</SRS> <SRS>EPSG:32744</SRS> <SRS>EPSG:32745</SRS> <SRS>EPSG:32746</SRS> <SRS>EPSG:32747</SRS> <SRS>EPSG:32748</SRS> <SRS>EPSG:32749</SRS> <SRS>EPSG:32750</SRS> <SRS>EPSG:32751</SRS> <SRS>EPSG:32752</SRS> <SRS>EPSG:32753</SRS> <SRS>EPSG:32754</SRS> <SRS>EPSG:32755</SRS> <SRS>EPSG:32756</SRS> <SRS>EPSG:32757</SRS> <SRS>EPSG:32758</SRS> <SRS>EPSG:32759</SRS> <SRS>EPSG:32760</SRS> <SRS>EPSG:32761</SRS> <SRS>EPSG:32766</SRS> <SRS>EPSG:61206405</SRS> <SRS>EPSG:61216405</SRS> <SRS>EPSG:61226405</SRS> <SRS>EPSG:61236405</SRS> <SRS>EPSG:61246405</SRS> <SRS>EPSG:61266405</SRS> <SRS>EPSG:61266413</SRS> <SRS>EPSG:61276405</SRS> <SRS>EPSG:61286405</SRS> <SRS>EPSG:61296405</SRS> <SRS>EPSG:61306405</SRS> <SRS>EPSG:61306413</SRS> <SRS>EPSG:61316405</SRS> <SRS>EPSG:61326405</SRS> <SRS>EPSG:61336405</SRS> <SRS>EPSG:61346405</SRS> <SRS>EPSG:61356405</SRS> <SRS>EPSG:61366405</SRS> <SRS>EPSG:61376405</SRS> <SRS>EPSG:61386405</SRS> <SRS>EPSG:61396405</SRS> <SRS>EPSG:61406405</SRS> <SRS>EPSG:61406413</SRS> <SRS>EPSG:61416405</SRS> <SRS>EPSG:61426405</SRS> <SRS>EPSG:61436405</SRS> <SRS>EPSG:61446405</SRS> <SRS>EPSG:61456405</SRS> <SRS>EPSG:61466405</SRS> <SRS>EPSG:61476405</SRS> <SRS>EPSG:61486405</SRS> <SRS>EPSG:61486413</SRS> <SRS>EPSG:61496405</SRS> <SRS>EPSG:61506405</SRS> <SRS>EPSG:61516405</SRS> <SRS>EPSG:61516413</SRS> <SRS>EPSG:61526405</SRS> <SRS>EPSG:61526413</SRS> <SRS>EPSG:61536405</SRS> <SRS>EPSG:61546405</SRS> <SRS>EPSG:61556405</SRS> <SRS>EPSG:61566405</SRS> <SRS>EPSG:61576405</SRS> <SRS>EPSG:61586405</SRS> <SRS>EPSG:61596405</SRS> <SRS>EPSG:61606405</SRS> <SRS>EPSG:61616405</SRS> <SRS>EPSG:61626405</SRS> <SRS>EPSG:61636405</SRS> <SRS>EPSG:61636413</SRS> <SRS>EPSG:61646405</SRS> <SRS>EPSG:61656405</SRS> <SRS>EPSG:61666405</SRS> <SRS>EPSG:61676405</SRS> <SRS>EPSG:61676413</SRS> <SRS>EPSG:61686405</SRS> <SRS>EPSG:61696405</SRS> <SRS>EPSG:61706405</SRS> <SRS>EPSG:61706413</SRS> <SRS>EPSG:61716405</SRS> <SRS>EPSG:61716413</SRS> <SRS>EPSG:61736405</SRS> <SRS>EPSG:61736413</SRS> <SRS>EPSG:61746405</SRS> <SRS>EPSG:61756405</SRS> <SRS>EPSG:61766405</SRS> <SRS>EPSG:61766413</SRS> <SRS>EPSG:61786405</SRS> <SRS>EPSG:61796405</SRS> <SRS>EPSG:61806405</SRS> <SRS>EPSG:61806413</SRS> <SRS>EPSG:61816405</SRS> <SRS>EPSG:61826405</SRS> <SRS>EPSG:61836405</SRS> <SRS>EPSG:61846405</SRS> <SRS>EPSG:61886405</SRS> <SRS>EPSG:61896405</SRS> <SRS>EPSG:61896413</SRS> <SRS>EPSG:61906405</SRS> <SRS>EPSG:61906413</SRS> <SRS>EPSG:61916405</SRS> <SRS>EPSG:61926405</SRS> <SRS>EPSG:61936405</SRS> <SRS>EPSG:61946405</SRS> <SRS>EPSG:61956405</SRS> <SRS>EPSG:61966405</SRS> <SRS>EPSG:61976405</SRS> <SRS>EPSG:61986405</SRS> <SRS>EPSG:61996405</SRS> <SRS>EPSG:62006405</SRS> <SRS>EPSG:62016405</SRS> <SRS>EPSG:62026405</SRS> <SRS>EPSG:62036405</SRS> <SRS>EPSG:62046405</SRS> <SRS>EPSG:62056405</SRS> <SRS>EPSG:62066405</SRS> <SRS>EPSG:62076405</SRS> <SRS>EPSG:62086405</SRS> <SRS>EPSG:62096405</SRS> <SRS>EPSG:62106405</SRS> <SRS>EPSG:62116405</SRS> <SRS>EPSG:62126405</SRS> <SRS>EPSG:62136405</SRS> <SRS>EPSG:62146405</SRS> <SRS>EPSG:62156405</SRS> <SRS>EPSG:62166405</SRS> <SRS>EPSG:62186405</SRS> <SRS>EPSG:62196405</SRS> <SRS>EPSG:62206405</SRS> <SRS>EPSG:62216405</SRS> <SRS>EPSG:62226405</SRS> <SRS>EPSG:62236405</SRS> <SRS>EPSG:62246405</SRS> <SRS>EPSG:62256405</SRS> <SRS>EPSG:62276405</SRS> <SRS>EPSG:62296405</SRS> <SRS>EPSG:62306405</SRS> <SRS>EPSG:62316405</SRS> <SRS>EPSG:62326405</SRS> <SRS>EPSG:62336405</SRS> <SRS>EPSG:62366405</SRS> <SRS>EPSG:62376405</SRS> <SRS>EPSG:62386405</SRS> <SRS>EPSG:62396405</SRS> <SRS>EPSG:62406405</SRS> <SRS>EPSG:62416405</SRS> <SRS>EPSG:62426405</SRS> <SRS>EPSG:62436405</SRS> <SRS>EPSG:62446405</SRS> <SRS>EPSG:62456405</SRS> <SRS>EPSG:62466405</SRS> <SRS>EPSG:62476405</SRS> <SRS>EPSG:62486405</SRS> <SRS>EPSG:62496405</SRS> <SRS>EPSG:62506405</SRS> <SRS>EPSG:62516405</SRS> <SRS>EPSG:62526405</SRS> <SRS>EPSG:62536405</SRS> <SRS>EPSG:62546405</SRS> <SRS>EPSG:62556405</SRS> <SRS>EPSG:62566405</SRS> <SRS>EPSG:62576405</SRS> <SRS>EPSG:62586405</SRS> <SRS>EPSG:62586413</SRS> <SRS>EPSG:62596405</SRS> <SRS>EPSG:62616405</SRS> <SRS>EPSG:62626405</SRS> <SRS>EPSG:62636405</SRS> <SRS>EPSG:62646405</SRS> <SRS>EPSG:62656405</SRS> <SRS>EPSG:62666405</SRS> <SRS>EPSG:62676405</SRS> <SRS>EPSG:62686405</SRS> <SRS>EPSG:62696405</SRS> <SRS>EPSG:62706405</SRS> <SRS>EPSG:62716405</SRS> <SRS>EPSG:62726405</SRS> <SRS>EPSG:62736405</SRS> <SRS>EPSG:62746405</SRS> <SRS>EPSG:62756405</SRS> <SRS>EPSG:62766405</SRS> <SRS>EPSG:62776405</SRS> <SRS>EPSG:62786405</SRS> <SRS>EPSG:62796405</SRS> <SRS>EPSG:62806405</SRS> <SRS>EPSG:62816405</SRS> <SRS>EPSG:62826405</SRS> <SRS>EPSG:62836405</SRS> <SRS>EPSG:62836413</SRS> <SRS>EPSG:62846405</SRS> <SRS>EPSG:62856405</SRS> <SRS>EPSG:62866405</SRS> <SRS>EPSG:62886405</SRS> <SRS>EPSG:62896405</SRS> <SRS>EPSG:62926405</SRS> <SRS>EPSG:62936405</SRS> <SRS>EPSG:62956405</SRS> <SRS>EPSG:62976405</SRS> <SRS>EPSG:62986405</SRS> <SRS>EPSG:62996405</SRS> <SRS>EPSG:63006405</SRS> <SRS>EPSG:63016405</SRS> <SRS>EPSG:63026405</SRS> <SRS>EPSG:63036405</SRS> <SRS>EPSG:63046405</SRS> <SRS>EPSG:63066405</SRS> <SRS>EPSG:63076405</SRS> <SRS>EPSG:63086405</SRS> <SRS>EPSG:63096405</SRS> <SRS>EPSG:63106405</SRS> <SRS>EPSG:63116405</SRS> <SRS>EPSG:63126405</SRS> <SRS>EPSG:63136405</SRS> <SRS>EPSG:63146405</SRS> <SRS>EPSG:63156405</SRS> <SRS>EPSG:63166405</SRS> <SRS>EPSG:63176405</SRS> <SRS>EPSG:63186405</SRS> <SRS>EPSG:63196405</SRS> <SRS>EPSG:63226405</SRS> <SRS>EPSG:63246405</SRS> <SRS>EPSG:63266405</SRS> <SRS>EPSG:63266406</SRS> <SRS>EPSG:63266407</SRS> <SRS>EPSG:63266408</SRS> <SRS>EPSG:63266409</SRS> <SRS>EPSG:63266410</SRS> <SRS>EPSG:63266411</SRS> <SRS>EPSG:63266412</SRS> <SRS>EPSG:63266413</SRS> <SRS>EPSG:63266414</SRS> <SRS>EPSG:63266415</SRS> <SRS>EPSG:63266416</SRS> <SRS>EPSG:63266417</SRS> <SRS>EPSG:63266418</SRS> <SRS>EPSG:63266419</SRS> <SRS>EPSG:63266420</SRS> <SRS>EPSG:66006405</SRS> <SRS>EPSG:66016405</SRS> <SRS>EPSG:66026405</SRS> <SRS>EPSG:66036405</SRS> <SRS>EPSG:66046405</SRS> <SRS>EPSG:66056405</SRS> <SRS>EPSG:66066405</SRS> <SRS>EPSG:66076405</SRS> <SRS>EPSG:66086405</SRS> <SRS>EPSG:66096405</SRS> <SRS>EPSG:66106405</SRS> <SRS>EPSG:66116405</SRS> <SRS>EPSG:66126405</SRS> <SRS>EPSG:66126413</SRS> <SRS>EPSG:66136405</SRS> <SRS>EPSG:66146405</SRS> <SRS>EPSG:66156405</SRS> <SRS>EPSG:66166405</SRS> <SRS>EPSG:66186405</SRS> <SRS>EPSG:66196405</SRS> <SRS>EPSG:66196413</SRS> <SRS>EPSG:66206405</SRS> <SRS>EPSG:66216405</SRS> <SRS>EPSG:66226405</SRS> <SRS>EPSG:66236405</SRS> <SRS>EPSG:66246405</SRS> <SRS>EPSG:66246413</SRS> <SRS>EPSG:66256405</SRS> <SRS>EPSG:66266405</SRS> <SRS>EPSG:66276405</SRS> <SRS>EPSG:66276413</SRS> <SRS>EPSG:66286405</SRS> <SRS>EPSG:66296405</SRS> <SRS>EPSG:66306405</SRS> <SRS>EPSG:66316405</SRS> <SRS>EPSG:66326405</SRS> <SRS>EPSG:66336405</SRS> <SRS>EPSG:66346405</SRS> <SRS>EPSG:66356405</SRS> <SRS>EPSG:66366405</SRS> <SRS>EPSG:66376405</SRS> <SRS>EPSG:66386405</SRS> <SRS>EPSG:66396405</SRS> <SRS>EPSG:66406405</SRS> <SRS>EPSG:66406413</SRS> <SRS>EPSG:66416405</SRS> <SRS>EPSG:66426405</SRS> <SRS>EPSG:66436405</SRS> <SRS>EPSG:66446405</SRS> <SRS>EPSG:66456405</SRS> <SRS>EPSG:66456413</SRS> <SRS>EPSG:66466405</SRS> <SRS>EPSG:66576405</SRS> <SRS>EPSG:66586405</SRS> <SRS>EPSG:66596405</SRS> <SRS>EPSG:66596413</SRS> <SRS>EPSG:66606405</SRS> <SRS>EPSG:66616405</SRS> <SRS>EPSG:66616413</SRS> <SRS>EPSG:66636405</SRS> <SRS>EPSG:66646405</SRS> <SRS>EPSG:66656405</SRS> <SRS>EPSG:66666405</SRS> <SRS>EPSG:66676405</SRS> <SRS>EPSG:68016405</SRS> <SRS>EPSG:68026405</SRS> <SRS>EPSG:68036405</SRS> <SRS>EPSG:68046405</SRS> <SRS>EPSG:68056405</SRS> <SRS>EPSG:68066405</SRS> <SRS>EPSG:68086405</SRS> <SRS>EPSG:68096405</SRS> <SRS>EPSG:68136405</SRS> <SRS>EPSG:68146405</SRS> <SRS>EPSG:68156405</SRS> <SRS>EPSG:68186405</SRS> <SRS>EPSG:68206405</SRS> <SRS>EPSG:69036405</SRS> <SRS>EPSG:900913</SRS> <SRS>EPSG:102113</SRS> <SRS>EPSG:102100</SRS> <SRS>EPSG:41001</SRS> <LatLonBoundingBox minx="-158.774" miny="-90.0" maxx="103.174" maxy="90.0"/> <Layer queryable="1"> <Name>massgis:AFREEMAN.AUDUBON_BIRD_S_V</Name> <Title>Breeding Bird Atlas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.199" maxx="-69.839" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="34354.586" miny="773982.0" maxx="335458.781" maxy="972348.125"/> <Style> <Name>Light_Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.AUDUBON_BIRD_S_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.AUDUBON_BUTTERFLY_S_V</Name> <Title>MA Butterfly Atlas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.199" maxx="-69.839" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="34354.586" miny="773982.0" maxx="335458.781" maxy="972348.125"/> <Style> <Name>Light_Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.AUDUBON_BUTTERFLY_S_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.AUDUBON_GRID_POLY</Name> <Title>Grid for Breeding Bird Atlas and Butterfly Atlas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://massaudubon.org/birdatlas/bbaportal/index.php</Keyword> <Keyword>Bird</Keyword> <Keyword>Butterfly</Keyword> <Keyword>Breeding</Keyword> <Keyword>for</Keyword> <Keyword>AFREEMAN.AUDUBON_GRID_POLY</Keyword> <Keyword>grid</Keyword> <Keyword>Atlas</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53097043930515" miny="41.19864707581633" maxx="-69.83901423882615" maxy="43.00162179177471"/> <BoundingBox SRS="EPSG:26986" minx="34354.5859210428" miny="773982.000153252" maxx="335458.781266457" maxy="972348.124850833"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.AUDUBON_GRID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.BLDGS_TEST_POLY</Name> <Title>Buildings Test Poly</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>polygon</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a green line</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.BLDGS_TEST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.CAMPUS_BLDGS_POLY</Name> <Title>Campus Buildings Poly Test</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.337" miny="42.312" maxx="-71.031" maxy="42.656"/> <BoundingBox SRS="EPSG:26986" minx="213421.078" miny="895789.938" maxx="238492.094" maxy="933942.188"/> <Style> <Name>AFREEMAN.CAMPUS_BLDGS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CAMPUS_BLDGS_POLY"/> </LegendURL> </Style> <Style> <Name>AFREEMAN.CAMPUS_BLDGS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CAMPUS_BLDGS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.CAMPUS_SITES_POLY</Name> <Title>Campus Sites Poly Test</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.339" miny="42.31" maxx="-71.031" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="213272.078" miny="895658.25" maxx="238424.562" maxy="934213.5"/> <Style> <Name>AFREEMAN.CAMPUS_SITES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CAMPUS_SITES_POLY"/> </LegendURL> </Style> <Style> <Name>AFREEMAN.CAMPUS_SITES_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CAMPUS_SITES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.CPA_COMBINED_V_PT</Name> <Title>Community Preservation Act Projects With Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>AFREEMAN.CPA_COMBINED_V_PT</Keyword> <Keyword>Projects</Keyword> <Keyword>Community</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cpa_points.htm</Keyword> <Keyword>Act</Keyword> <Keyword>Preservation</Keyword> <Keyword>Points</Keyword> <Keyword>With</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.34255006983986" miny="41.23864196486389" maxx="-69.93412480736937" maxy="42.83285201019497"/> <BoundingBox SRS="EPSG:26986" minx="49323.00421500034" miny="778094.0008559831" maxx="328046.00421500375" maxy="953591.0008559899"/> <Style> <Name>AFREEMAN.CPA_COMBINED_V_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CPA_COMBINED_V_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.CPA_PT</Name> <Title>Community Preservation Act Projects</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>AFREEMAN.CPA_PT</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.125" miny="41.674" maxx="-70.574" maxy="42.827"/> <BoundingBox SRS="EPSG:26986" minx="-1.0" miny="-1.0" maxx="328586.769" maxy="953611.665"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.CPA_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.DCAM_BLDG_PTS_20120229</Name> <Title>DCAM Buildings Test</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.517" miny="41.257" maxx="-69.981" maxy="42.865"/> <BoundingBox SRS="EPSG:26986" minx="35099.524" miny="780409.516" maxx="324145.926" maxy="957146.464"/> <Style> <Name>AFREEMAN.DCAM_BLDG_PTS_20120229::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.DCAM_BLDG_PTS_20120229"/> </LegendURL> </Style> <Style> <Name>AFREEMAN.DCAM_BLDG_PTS_20120229::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.DCAM_BLDG_PTS_20120229"/> </LegendURL> </Style> <Style> <Name>Green_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.DCAM_BLDG_PTS_20120229"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_LINE</Name> <Title>GeoServer Test Line Placeholder</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>webeditor_sde</Keyword> <Keyword>AFREEMAN.GEOSERVER_TEST_LINE</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.125" miny="41.674" maxx="-70.603" maxy="42.827"/> <BoundingBox SRS="EPSG:26986" minx="184484.784" miny="907921.755" maxx="184490.364" maxy="907974.565"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_LINE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_LINE2</Name> <Title>GeoServer Test Line2</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>line</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a green line</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_LINE2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_LINE_HTTPS</Name> <Title>GeoServer Test Line HTTPS</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_LINE_HTTPS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_POLY</Name> <Title>GeoServer Test Polygon Placeholder</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>AFREEMAN.GEOSERVER_TEST_POLY</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.278" miny="40.899" maxx="-70.577" maxy="43.6"/> <BoundingBox SRS="EPSG:26986" minx="56757.0" miny="941484.0" maxx="63796.0" maxy="945357.0"/> <Style> <Name>Yellow_Lines_Width_2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_POLY_HTTPS</Name> <Title>GeoServer Test Poly HTTPS</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Yellow_Lines_Width_2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_POLY_HTTPS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT</Name> <Title>GeoServer Test Point Placeholder</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>webeditor_sde</Keyword> <Keyword>AFREEMAN.GEOSERVER_TEST_PT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.125" miny="41.295" maxx="-70.05" maxy="42.827"/> <BoundingBox SRS="EPSG:26986" minx="318604.464" miny="783968.061" maxx="318606.464" maxy="783970.061"/> <Style> <Name>Green_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT_COMMENT</Name> <Title>GeoServer Test Pt Comment</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-141.627" miny="-90.0" maxx="103.174" maxy="90.0"/> <BoundingBox SRS="EPSG:26986" minx="0.0" miny="0.0" maxx="9.223372036854776E18" maxy="9.223372036854776E18"/> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a red square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT_COMMENT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT_COMMENT2</Name> <Title>GeoServer Test Pt Comment 2</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-141.627" miny="-90.0" maxx="103.174" maxy="90.0"/> <BoundingBox SRS="EPSG:26986" minx="0.0" miny="0.0" maxx="9.223372036854776E18" maxy="9.223372036854776E18"/> <Style> <Name>Pink_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT_COMMENT2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT_COMMENT_SV</Name> <Title>GeoServer Test Pt SV</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.935" miny="41.107" maxx="-69.884" maxy="42.716"/> <BoundingBox SRS="EPSG:26986" minx="503.304" miny="764703.301" maxx="332358.464" maxy="940640.981"/> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a red square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT_COMMENT_SV"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT_DATE</Name> <Title>GeoServer Test Pt Date</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a red square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT_DATE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.GEOSERVER_TEST_PT_HTTPS</Name> <Title>GeoServer Test Pt HTTPS</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-141.627" miny="-90.0" maxx="103.174" maxy="90.0"/> <BoundingBox SRS="EPSG:26986" minx="0.0" miny="0.0" maxx="9.223372036854776E18" maxy="9.223372036854776E18"/> <Style> <Name>Green_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.GEOSERVER_TEST_PT_HTTPS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.MHC_PT</Name> <Title>MassHistoric MHC Points</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>AFREEMAN.MHC_PT</Keyword> <Keyword>MassHistoric</Keyword> <Keyword>Points</Keyword> <Keyword>webeditor_sde</Keyword> <Keyword>MHC</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.12547184147735" miny="41.673535819411995" maxx="-70.60312010962788" maxy="42.82676799657797"/> <BoundingBox SRS="EPSG:26986" minx="67066.42421999815" miny="826053.4408599831" maxx="273342.03422000137" maxy="952907.4408599872"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.MHC_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:AFREEMAN.SITES_TEST_POLY</Name> <Title>Sites Test Poly</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.09" miny="42.412" maxx="-71.02" maxy="42.476"/> <BoundingBox SRS="EPSG:26986" minx="233785.492" miny="906977.865" maxx="239461.972" maxy="914028.465"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=AFREEMAN.SITES_TEST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FARMS_PT_S_V</Name> <Title>Farms</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.477" miny="41.25" maxx="-69.946" maxy="42.88"/> <BoundingBox SRS="EPSG:26986" minx="38442.589" miny="779588.37" maxx="326982.979" maxy="958805.319"/> <Style> <Name>DAR.FARMS_PT_S_V::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FARMS_PT_S_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH1</Name> <Title>DAR.FIELDS_PONDS_FISH1</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH10</Name> <Title>DAR.FIELDS_PONDS_FISH10</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH10"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH11</Name> <Title>DAR.FIELDS_PONDS_FISH11</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH11"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH12</Name> <Title>DAR.FIELDS_PONDS_FISH12</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH12"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH13</Name> <Title>DAR.FIELDS_PONDS_FISH13</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH13"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH14</Name> <Title>DAR.FIELDS_PONDS_FISH14</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH14"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH15</Name> <Title>DAR.FIELDS_PONDS_FISH15</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH15"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH16</Name> <Title>DAR.FIELDS_PONDS_FISH16</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH16"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH17</Name> <Title>DAR.FIELDS_PONDS_FISH17</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH17"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH18</Name> <Title>DAR.FIELDS_PONDS_FISH18</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH18"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH19</Name> <Title>DAR.FIELDS_PONDS_FISH19</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH19"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH2</Name> <Title>DAR.FIELDS_PONDS_FISH2</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH20</Name> <Title>DAR.FIELDS_PONDS_FISH20</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH20"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH22</Name> <Title>DAR.FIELDS_PONDS_FISH22</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH22"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH23</Name> <Title>DAR.FIELDS_PONDS_FISH23</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH23"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH24</Name> <Title>DAR.FIELDS_PONDS_FISH24</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH24"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH25</Name> <Title>DAR.FIELDS_PONDS_FISH25</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH25"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH26</Name> <Title>DAR.FIELDS_PONDS_FISH26</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH26"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH27</Name> <Title>DAR.FIELDS_PONDS_FISH27</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH27"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH28</Name> <Title>DAR.FIELDS_PONDS_FISH28</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH28"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH29</Name> <Title>DAR.FIELDS_PONDS_FISH29</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH29"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH3</Name> <Title>DAR.FIELDS_PONDS_FISH3</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH30</Name> <Title>DAR.FIELDS_PONDS_FISH30</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH30"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH31</Name> <Title>DAR.FIELDS_PONDS_FISH31</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH31"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH32</Name> <Title>DAR.FIELDS_PONDS_FISH32</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH32"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH33</Name> <Title>DAR.FIELDS_PONDS_FISH33</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH33"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH35</Name> <Title>DAR.FIELDS_PONDS_FISH35</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH35"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH36</Name> <Title>DAR.FIELDS_PONDS_FISH36</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH37</Name> <Title>DAR.FIELDS_PONDS_FISH37</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH37"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH38</Name> <Title>DAR.FIELDS_PONDS_FISH38</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH38"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH39</Name> <Title>DAR.FIELDS_PONDS_FISH39</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH39"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH4</Name> <Title>DAR.FIELDS_PONDS_FISH4</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH40</Name> <Title>DAR.FIELDS_PONDS_FISH40</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH40"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH41</Name> <Title>DAR.FIELDS_PONDS_FISH41</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH41"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH42</Name> <Title>DAR.FIELDS_PONDS_FISH42</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH42"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH43</Name> <Title>DAR.FIELDS_PONDS_FISH43</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH43"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH44</Name> <Title>DAR.FIELDS_PONDS_FISH44</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH44"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH45</Name> <Title>DAR.FIELDS_PONDS_FISH45</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH45"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH46</Name> <Title>DAR.FIELDS_PONDS_FISH46</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH46"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH47</Name> <Title>DAR.FIELDS_PONDS_FISH47</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH47"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH48</Name> <Title>DAR.FIELDS_PONDS_FISH48</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH48"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH5</Name> <Title>DAR.FIELDS_PONDS_FISH5</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH5"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH50</Name> <Title>DAR.FIELDS_PONDS_FISH50</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH50"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH51</Name> <Title>DAR.FIELDS_PONDS_FISH51</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH51"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH52</Name> <Title>DAR.FIELDS_PONDS_FISH52</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH52"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH6</Name> <Title>DAR.FIELDS_PONDS_FISH6</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH6"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH7</Name> <Title>DAR.FIELDS_PONDS_FISH7</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH7"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH8</Name> <Title>DAR.FIELDS_PONDS_FISH8</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH8"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_FISH9</Name> <Title>DAR.FIELDS_PONDS_FISH9</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Green_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_FISH9"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG0</Name> <Title>DAR.FIELDS_PONDS_ORG0</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG0"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG100</Name> <Title>DAR.FIELDS_PONDS_ORG100</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG100"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1000</Name> <Title>DAR.FIELDS_PONDS_ORG1000</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1000"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1013</Name> <Title>DAR.FIELDS_PONDS_ORG1013</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1013"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1014</Name> <Title>DAR.FIELDS_PONDS_ORG1014</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1014"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1015</Name> <Title>DAR.FIELDS_PONDS_ORG1015</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1015"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1017</Name> <Title>DAR.FIELDS_PONDS_ORG1017</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1017"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1018</Name> <Title>DAR.FIELDS_PONDS_ORG1018</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1018"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG102</Name> <Title>DAR.FIELDS_PONDS_ORG102</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG102"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1020</Name> <Title>DAR.FIELDS_PONDS_ORG1020</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1020"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1021</Name> <Title>DAR.FIELDS_PONDS_ORG1021</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1021"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1022</Name> <Title>DAR.FIELDS_PONDS_ORG1022</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1022"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1025</Name> <Title>DAR.FIELDS_PONDS_ORG1025</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1025"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1026</Name> <Title>DAR.FIELDS_PONDS_ORG1026</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1026"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1028</Name> <Title>DAR.FIELDS_PONDS_ORG1028</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1028"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1029</Name> <Title>DAR.FIELDS_PONDS_ORG1029</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1029"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG103</Name> <Title>DAR.FIELDS_PONDS_ORG103</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG103"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1030</Name> <Title>DAR.FIELDS_PONDS_ORG1030</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1030"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1031</Name> <Title>DAR.FIELDS_PONDS_ORG1031</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1031"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1032</Name> <Title>DAR.FIELDS_PONDS_ORG1032</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1032"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1033</Name> <Title>DAR.FIELDS_PONDS_ORG1033</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1033"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1035</Name> <Title>DAR.FIELDS_PONDS_ORG1035</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1035"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1036</Name> <Title>DAR.FIELDS_PONDS_ORG1036</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1036"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1037</Name> <Title>DAR.FIELDS_PONDS_ORG1037</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1037"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1038</Name> <Title>DAR.FIELDS_PONDS_ORG1038</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1038"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1039</Name> <Title>DAR.FIELDS_PONDS_ORG1039</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1039"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG104</Name> <Title>DAR.FIELDS_PONDS_ORG104</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG104"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG1040</Name> <Title>DAR.FIELDS_PONDS_ORG1040</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG1040"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG106</Name> <Title>DAR.FIELDS_PONDS_ORG106</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG106"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG107</Name> <Title>DAR.FIELDS_PONDS_ORG107</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG107"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG108</Name> <Title>DAR.FIELDS_PONDS_ORG108</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG108"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG109</Name> <Title>DAR.FIELDS_PONDS_ORG109</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG109"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG11</Name> <Title>DAR.FIELDS_PONDS_ORG11</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG11"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG111</Name> <Title>DAR.FIELDS_PONDS_ORG111</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG111"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG112</Name> <Title>DAR.FIELDS_PONDS_ORG112</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG112"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG113</Name> <Title>DAR.FIELDS_PONDS_ORG113</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG113"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG114</Name> <Title>DAR.FIELDS_PONDS_ORG114</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG114"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG115</Name> <Title>DAR.FIELDS_PONDS_ORG115</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG115"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG117</Name> <Title>DAR.FIELDS_PONDS_ORG117</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG117"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG118</Name> <Title>DAR.FIELDS_PONDS_ORG118</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG118"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG119</Name> <Title>DAR.FIELDS_PONDS_ORG119</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG119"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG12</Name> <Title>DAR.FIELDS_PONDS_ORG12</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG12"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG120</Name> <Title>DAR.FIELDS_PONDS_ORG120</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG120"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG125</Name> <Title>DAR.FIELDS_PONDS_ORG125</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG125"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG126</Name> <Title>DAR.FIELDS_PONDS_ORG126</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG126"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG13</Name> <Title>DAR.FIELDS_PONDS_ORG13</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG13"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG14</Name> <Title>DAR.FIELDS_PONDS_ORG14</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG14"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG15</Name> <Title>DAR.FIELDS_PONDS_ORG15</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG15"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG16</Name> <Title>DAR.FIELDS_PONDS_ORG16</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG16"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG17</Name> <Title>DAR.FIELDS_PONDS_ORG17</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG17"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG18</Name> <Title>DAR.FIELDS_PONDS_ORG18</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG18"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG19</Name> <Title>DAR.FIELDS_PONDS_ORG19</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG19"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG2</Name> <Title>DAR.FIELDS_PONDS_ORG2</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG20</Name> <Title>DAR.FIELDS_PONDS_ORG20</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG20"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG21</Name> <Title>DAR.FIELDS_PONDS_ORG21</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG21"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG23</Name> <Title>DAR.FIELDS_PONDS_ORG23</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG23"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG24</Name> <Title>DAR.FIELDS_PONDS_ORG24</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG24"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG27</Name> <Title>DAR.FIELDS_PONDS_ORG27</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG27"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG28</Name> <Title>DAR.FIELDS_PONDS_ORG28</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG28"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG29</Name> <Title>DAR.FIELDS_PONDS_ORG29</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG29"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG3</Name> <Title>DAR.FIELDS_PONDS_ORG3</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG30</Name> <Title>DAR.FIELDS_PONDS_ORG30</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG30"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG31</Name> <Title>DAR.FIELDS_PONDS_ORG31</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG31"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG32</Name> <Title>DAR.FIELDS_PONDS_ORG32</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG32"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG35</Name> <Title>DAR.FIELDS_PONDS_ORG35</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG35"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG36</Name> <Title>DAR.FIELDS_PONDS_ORG36</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG37</Name> <Title>DAR.FIELDS_PONDS_ORG37</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG37"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG38</Name> <Title>DAR.FIELDS_PONDS_ORG38</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG38"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG39</Name> <Title>DAR.FIELDS_PONDS_ORG39</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG39"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG4</Name> <Title>DAR.FIELDS_PONDS_ORG4</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG40</Name> <Title>DAR.FIELDS_PONDS_ORG40</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG40"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG41</Name> <Title>DAR.FIELDS_PONDS_ORG41</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG41"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG42</Name> <Title>DAR.FIELDS_PONDS_ORG42</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG42"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG44</Name> <Title>DAR.FIELDS_PONDS_ORG44</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG44"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG45</Name> <Title>DAR.FIELDS_PONDS_ORG45</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG45"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG46</Name> <Title>DAR.FIELDS_PONDS_ORG46</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG46"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG47</Name> <Title>DAR.FIELDS_PONDS_ORG47</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG47"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG48</Name> <Title>DAR.FIELDS_PONDS_ORG48</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG48"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG5</Name> <Title>DAR.FIELDS_PONDS_ORG5</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG5"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG51</Name> <Title>DAR.FIELDS_PONDS_ORG51</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG51"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG52</Name> <Title>DAR.FIELDS_PONDS_ORG52</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG52"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG53</Name> <Title>DAR.FIELDS_PONDS_ORG53</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG53"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG55</Name> <Title>DAR.FIELDS_PONDS_ORG55</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG55"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG56</Name> <Title>DAR.FIELDS_PONDS_ORG56</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG56"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG58</Name> <Title>DAR.FIELDS_PONDS_ORG58</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG58"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG60</Name> <Title>DAR.FIELDS_PONDS_ORG60</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG60"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG61</Name> <Title>DAR.FIELDS_PONDS_ORG61</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG61"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG62</Name> <Title>DAR.FIELDS_PONDS_ORG62</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG62"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG63</Name> <Title>DAR.FIELDS_PONDS_ORG63</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG63"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG65</Name> <Title>DAR.FIELDS_PONDS_ORG65</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG65"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG66</Name> <Title>DAR.FIELDS_PONDS_ORG66</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG66"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG67</Name> <Title>DAR.FIELDS_PONDS_ORG67</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG67"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG68</Name> <Title>DAR.FIELDS_PONDS_ORG68</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG68"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG69</Name> <Title>DAR.FIELDS_PONDS_ORG69</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG69"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG7</Name> <Title>DAR.FIELDS_PONDS_ORG7</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG7"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG71</Name> <Title>DAR.FIELDS_PONDS_ORG71</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG71"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG72</Name> <Title>DAR.FIELDS_PONDS_ORG72</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG72"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG73</Name> <Title>DAR.FIELDS_PONDS_ORG73</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG73"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG74</Name> <Title>DAR.FIELDS_PONDS_ORG74</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG74"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG75</Name> <Title>DAR.FIELDS_PONDS_ORG75</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG75"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG78</Name> <Title>DAR.FIELDS_PONDS_ORG78</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG78"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG79</Name> <Title>DAR.FIELDS_PONDS_ORG79</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG79"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG8</Name> <Title>DAR.FIELDS_PONDS_ORG8</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG8"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG80</Name> <Title>DAR.FIELDS_PONDS_ORG80</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG80"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG82</Name> <Title>DAR.FIELDS_PONDS_ORG82</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG82"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG83</Name> <Title>DAR.FIELDS_PONDS_ORG83</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG83"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG85</Name> <Title>DAR.FIELDS_PONDS_ORG85</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG85"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG86</Name> <Title>DAR.FIELDS_PONDS_ORG86</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG86"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG87</Name> <Title>DAR.FIELDS_PONDS_ORG87</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG87"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG89</Name> <Title>DAR.FIELDS_PONDS_ORG89</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG89"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG90</Name> <Title>DAR.FIELDS_PONDS_ORG90</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG90"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG93</Name> <Title>DAR.FIELDS_PONDS_ORG93</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG93"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG94</Name> <Title>DAR.FIELDS_PONDS_ORG94</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG94"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DAR.FIELDS_PONDS_ORG96</Name> <Title>DAR.FIELDS_PONDS_ORG96</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Red_Line_DAR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DAR.FIELDS_PONDS_ORG96"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.BEACH_POINTS</Name> <Title>DCR Beach Points</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.308" miny="41.339" maxx="-70.0" maxy="42.844"/> <BoundingBox SRS="EPSG:26986" minx="52210.358" miny="789205.298" maxx="322605.598" maxy="954816.542"/> <Style> <Name>DCR.BEACH_POINTS::13x13_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.BEACH_POINTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.DCR_FACILITIES</Name> <Title>DCR Facilities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.514" miny="41.253" maxx="-70.006" maxy="42.844"/> <BoundingBox SRS="EPSG:26986" minx="35318.686" miny="779944.668" maxx="322145.368" maxy="954802.912"/> <Style> <Name>DCR.DCR_FACILITIES::13x13_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.DCR_FACILITIES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.FACILITIES</Name> <Title>DCR Facilities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.32" miny="42.19" maxx="-70.917" maxy="42.466"/> <BoundingBox SRS="EPSG:26986" minx="214903.124" miny="882361.468" maxx="247970.622" maxy="912868.685"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.FACILITIES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HHT_START_POINTS</Name> <Title>DCR Heart Healthy Trail Start Points</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.458" miny="41.393" maxx="-70.007" maxy="42.823"/> <BoundingBox SRS="EPSG:26986" minx="39892.285" miny="795457.471" maxx="322092.09" maxy="952522.725"/> <Style> <Name>DCR.HHT_START_POINTS::13x13_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HHT_START_POINTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HLI_LANDSCAPES</Name> <Title>DCR Heritage Landscapes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.HLI_LANDSCAPES</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>DCR.HLI_LANDSCAPES::Default</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES"/> </LegendURL> </Style> <Style> <Name>DCR.HLI_LANDSCAPES::Max_25000_No_Min</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES"/> </LegendURL> </Style> <Style> <Name>DCR.HLI_LANDSCAPES::SUPPORTING</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES"/> </LegendURL> </Style> <Style> <Name>DCR.HLI_LANDSCAPES::CAT_PRIMAR</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES"/> </LegendURL> </Style> <Style> <Name>DCR.HLI_LANDSCAPES::CONNECTING</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HLI_LANDSCAPES_CONNECTING</Name> <Title>DCR HLI Landscapes Connecting</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.HLI_LANDSCAPES_CONNECTING</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.37245161514169" miny="42.149021062214146" maxx="-71.96043789591133" maxy="42.72124875087689"/> <BoundingBox SRS="EPSG:26986" minx="128536.86118975881" miny="877983.4172926856" maxx="161944.42408431435" maxy="941287.449985049"/> <Style> <Name>DCR.HLI_LANDSCAPES_CONNECTING::Default</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES_CONNECTING"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HLI_LANDSCAPES_PRIORITY</Name> <Title>DCR HLI Landscapes Priority</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.HLI_LANDSCAPES_PRIORITY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.3829324495501" miny="42.155399604289855" maxx="-71.95738594252828" maxy="42.72631673241593"/> <BoundingBox SRS="EPSG:26986" minx="127684.12120000234" miny="878700.6299999815" maxx="162200.52139999805" maxy="941849.0600999892"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES_PRIORITY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HLI_LANDSCAPES_SUPPORTING</Name> <Title>DCR HLI Landscapes Supporting</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>massgis_sde</Keyword> <Keyword>DCR.HLI_LANDSCAPES_SUPPORTING</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.36680467629076" miny="42.15421982384852" maxx="-71.9777619312932" maxy="42.72494172651735"/> <BoundingBox SRS="EPSG:26986" minx="129003.68778234553" miny="878556.1683794614" maxx="160515.75685274732" maxy="941705.6300369927"/> <Style> <Name>DCR.HLI_LANDSCAPES_SUPPORTING::Default</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPES_SUPPORTING"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.HLI_LANDSCAPE_CENTROIDS</Name> <Title>DCR HLI LANDSCAPE CENTROIDS</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.HLI_LANDSCAPE_CENTROIDS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.38174710595192" miny="42.15925825832587" maxx="-71.96697581568618" maxy="42.72134820543899"/> <BoundingBox SRS="EPSG:26986" minx="127775.5513999974" miny="879128.3051999831" maxx="161410.3169000015" maxy="941301.4280999885"/> <Style> <Name>DCR.HLI_LANDSCAPE_CENTROIDS::Min_250000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.HLI_LANDSCAPE_CENTROIDS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.RMP_PLANNING_UNITS</Name> <Title>DCR RMP Planning Units</Title> <Abstract>DCR RMP Planning Units</Abstract> <KeywordList> <Keyword>DCR RMP Planning Units</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.535" miny="41.23" maxx="-69.963" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="33694.637" miny="777461.954" maxx="325632.549" maxy="958574.23"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.RMP_PLANNING_UNITS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.ROADS_TRAILS_LINE</Name> <Title>DCR Roads Trail Line</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.ROADS_TRAILS_LINE</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.5417400057757" miny="41.50582123539291" maxx="-70.01133315290909" maxy="42.84104097777114"/> <BoundingBox SRS="EPSG:26986" minx="33050.49949999724" miny="808138.8701999822" maxx="321714.78670000366" maxy="954528.233199988"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.ROADS_TRAILS_LINE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.ROADS_TRAILS_LINE_NHESP</Name> <Title>DCR.ROADS_TRAILS_LINE_NHESP</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.532" miny="41.506" maxx="-70.012" maxy="42.841"/> <BoundingBox SRS="EPSG:26986" minx="33883.31" miny="808138.87" maxx="321645.958" maxy="954528.233"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.ROADS_TRAILS_LINE_NHESP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.ROADS_TRAILS_LINE_TEST</Name> <Title>DCR Roads Trails Line Test</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.542" miny="41.506" maxx="-70.011" maxy="42.841"/> <BoundingBox SRS="EPSG:26986" minx="33050.499" miny="808138.87" maxx="321714.787" maxy="954528.233"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.ROADS_TRAILS_LINE_TEST"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.ROADS_TRAILS_POINT</Name> <Title>DCR Roads Trail Point</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>massgis_sde</Keyword> <Keyword>DCR.ROADS_TRAILS_POINT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54162885715711" miny="41.50579355987015" maxx="-70.01133315290909" maxy="42.841041110481484"/> <BoundingBox SRS="EPSG:26986" minx="33059.59139999587" miny="808135.5822999834" maxx="321714.7867000047" maxy="954528.233199988"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.ROADS_TRAILS_POINT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.TOWNS_POLYM_FORESTRY</Name> <Title>DCR Forestry</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.TOWNS_POLYM_FORESTRY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::SUSTCOM_SC</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::MGTPLAN_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::FSCARS_SC</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::UFORE_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::PDENSQMI00</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::POVPCT2000</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::IMPERV_PCT</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::PROSTAF_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::TREEINV_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::LOC_ORD_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::ST_ASST_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::ADV_GRP_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::CANOPY_COV</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::Default</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::OSPLAN_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::TREECITYYN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::STRATUM_YN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_FORESTRY::BUDGET_P_C</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_FORESTRY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DCR.TOWNS_POLYM_HLI</Name> <Title>DCR Heritage Landscape Initiative</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DCR.TOWNS_POLYM_HLI</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>DCR.TOWNS_POLYM_HLI::HLI_STATUS</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::RPA_ACRONYM</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::HLI_STATUS</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_ARCHAEO</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_COMMERC</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::CPA_STATUS</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::PARTNER</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_CIVIC</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_TRANS</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_BURIAL</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_ETHNO</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::OSP_PCT</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_INSTIT</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::SIMPLE_POP_DENS_SQ_MI_2000</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::Filled_White</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::Labels_Yellow_Max_25000_Scaled_Black_Max_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_AGRIC</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::Yellow_Outlines_Max_12000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_INDUST</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_OTHER</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_NATUR</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_MILIT</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::Outline_Yellow_Max_25000_Black_Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_RESID</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> <Style> <Name>DCR.TOWNS_POLYM_HLI::N_REC_OPEN</Name> <Title>Default Styler</Title> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DCR.TOWNS_POLYM_HLI"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.EELGRASS_SA_END_ARC</Name> <Title>Limit of MassDEP Eelgrass Survey Lines</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.084" miny="41.241" maxx="-69.936" maxy="42.837"/> <BoundingBox SRS="EPSG:26986" minx="234848.193" miny="777923.887" maxx="327881.817" maxy="954096.827"/> <Style> <Name>DEP.EELGRASS_SA_END_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.EELGRASS_SA_END_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.EELGRASS_SA_OUT_POLY</Name> <Title>DEP Eelgrass - Outside of Study Areas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.289" miny="41.143" maxx="-69.805" maxy="42.894"/> <BoundingBox SRS="EPSG:26986" minx="217733.362" miny="767210.886" maxx="338494.475" maxy="960437.69"/> <Style> <Name>DEP.EELGRASS_SA_OUT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.EELGRASS_SA_OUT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.EELGRASS_SA_STATS_POLY</Name> <Title>MassDEP Eelgrass Map Extents</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.119" miny="41.261" maxx="-69.902" maxy="42.686"/> <BoundingBox SRS="EPSG:26986" minx="231888.875" miny="780165.375" maxx="330978.906" maxy="937380.562"/> <Style> <Name>DEP.EELGRASS_SA_STATS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.EELGRASS_SA_STATS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.EELGRASS_WEB_POLY</Name> <Title>DEP Eelgrass Dissolved by Project Year</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.117" miny="41.269" maxx="-69.907" maxy="42.679"/> <BoundingBox SRS="EPSG:26986" minx="232125.875" miny="781102.625" maxx="330605.875" maxy="936543.761"/> <Style> <Name>DEP.EELGRASS_WEB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.EELGRASS_WEB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.MA_PBW_AR_POLY</Name> <Title>Arsenic Probabilities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.MA_PBW_AR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.MA_PBW_UR_POLY</Name> <Title>Uranium Probabilities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.MA_PBW_UR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.WIRE_401_PT</Name> <Title>DEP Wire 401 Points</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.111" miny="41.537" maxx="-69.979" maxy="42.801"/> <BoundingBox SRS="EPSG:26986" minx="68167.159" miny="810904.813" maxx="324454.29" maxy="950037.105"/> <Style> <Name>DEP.WIRE_401_PT::Depgis_blue_star</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.WIRE_401_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.WIRE_DET_PT</Name> <Title>DEP WIRE DET Points</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.644" miny="41.25" maxx="-69.961" maxy="42.177"/> <BoundingBox SRS="EPSG:26986" minx="105440.634" miny="778852.496" maxx="327179.196" maxy="880793.795"/> <Style> <Name>DEP.WIRE_DET_PT::Depgis_blue_square</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.WIRE_DET_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DEP.WIRE_NOI_PT</Name> <Title>DEP WIRE NOI Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DEP</Keyword> <Keyword>WIRE</Keyword> <Keyword>NOI</Keyword> <Keyword>Points</Keyword> <Keyword>DEP.WIRE_NOI_PT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.35023219722785" miny="41.086402270425985" maxx="-69.93648925864566" maxy="42.988914694966695"/> <BoundingBox SRS="EPSG:26986" minx="49070.7559999973" miny="761186.116" maxx="327534.755000003" maxy="970929.537999999"/> <Style> <Name>DEP.WIRE_NOI_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DEP.WIRE_NOI_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DFG.BIOMAP2_CNL</Name> <Title>Biomap2 Critical Natural Landscape</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/dfg/BIOMAP2_CRITICAL_NATURAL_LANDSCAPE_META.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.226" maxx="-69.893" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777065.275" maxx="331326.912" maxy="958293.626"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DFG.BIOMAP2_CNL"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DFG.BIOMAP2_CORE_HABITAT</Name> <Title>DFG Biomap2 Query</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.896" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777504.138" maxx="331102.88" maxy="958260.691"/> <Style> <Name>polygon</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a green line</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DFG.BIOMAP2_CORE_HABITAT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DFG.PARKING</Name> <Title>DFG.PARKING_Type</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DFG.PARKING</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.46877366538037" miny="41.54213954635395" maxx="-70.25909056056759" maxy="42.77385280450371"/> <BoundingBox SRS="EPSG:26986" minx="38846.152459999925" miny="812040.1546059799" maxx="301563.69246000156" maxy="947041.5546059902"/> <Style> <Name>DFG.PARKING::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DFG.PARKING"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DFG.PRIHAB_COMMENT_PT</Name> <Title>NHESP Priority Habitat Comment Points</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.399" miny="41.242" maxx="-69.952" maxy="42.885"/> <BoundingBox SRS="EPSG:26986" minx="44812.394" miny="778520.361" maxx="326470.334" maxy="959391.831"/> <Style> <Name>DFG.PRIHAB_COMMENT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DFG.PRIHAB_COMMENT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DKOCH.BASELINE_07_GPS_PT</Name> <Title>DFG Baseline 07 GPS Points</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>DKOCH.BASELINE_07_GPS_PT</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.12547184147735" miny="41.673535819411995" maxx="-70.60312010962788" maxy="42.82676799657797"/> <BoundingBox SRS="EPSG:26986" minx="67066.42421999815" miny="826053.4408599831" maxx="273342.03422000137" maxy="952907.4408599872"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DKOCH.BASELINE_07_GPS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DKOCH.BASELINE_07_POLY</Name> <Title>DFB Baseline 07 Poly</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DKOCH.BASELINE_07_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.45488183412944" miny="42.03771790479549" maxx="-71.50145559186106" maxy="42.63468895579316"/> <BoundingBox SRS="EPSG:26986" minx="39628.97421725953" miny="867079.6748152263" maxx="199879.5092135314" maxy="931568.1908440982"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DKOCH.BASELINE_07_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DKOCH.VALCR0306</Name> <Title>DFG VALCR0306</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>DKOCH.VALCR0306</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.827" miny="42.104" maxx="-72.822" maxy="42.108"/> <BoundingBox SRS="EPSG:26986" minx="90226.207" miny="873509.584" maxx="90647.246" maxy="873946.176"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DKOCH.VALCR0306"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DKOCH.VALCR0306_OS_POLY</Name> <Title>DFG VALCR0306 Openspace Polygons</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>DKOCH.VALCR0306_OS_POLY</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.827" miny="42.104" maxx="-72.822" maxy="42.108"/> <BoundingBox SRS="EPSG:26986" minx="90218.55" miny="873502.97" maxx="90653.47" maxy="873942.59"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DKOCH.VALCR0306_OS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.EEA_WIND_PTS</Name> <Title>Wind Projects</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.EEA_WIND_PTS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.33" miny="40.335" maxx="-69.923" maxy="43.742"/> <BoundingBox SRS="EPSG:26986" minx="52862.287" miny="788146.035" maxx="326468.501" maxy="944059.184"/> <Style> <Name>DMARRIER.EEA_WIND_PTS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.EEA_WIND_PTS"/> </LegendURL> </Style> <Style> <Name>DMARRIER.EEA_WIND_PTS::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.EEA_WIND_PTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.HIGHWIND_BNDRY_30M</Name> <Title>Higher Wind Resource (Boundary)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.HIGHWIND_BNDRY_30M</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53338156769497" miny="41.18066658319382" maxx="-69.82663872570812" maxy="42.91906273555644"/> <BoundingBox SRS="EPSG:26986" minx="33940.38059860346" miny="771993.6541679495" maxx="336649.58286372165" maxy="963174.8490644577"/> <Style> <Name>DMARRIER.HIGHWIND_BNDRY_30M::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.HIGHWIND_BNDRY_30M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.HIGHWIND_BNDRY_50M</Name> <Title>Higher Wind Resource (Boundary) 50M</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.HIGHWIND_BNDRY_50M</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53338156769497" miny="41.18066658319382" maxx="-69.82663872570812" maxy="42.91906273555644"/> <BoundingBox SRS="EPSG:26986" minx="33940.38059860346" miny="771993.6541679495" maxx="336649.58286372165" maxy="963174.8490644577"/> <Style> <Name>DMARRIER.HIGHWIND_BNDRY_50M::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.HIGHWIND_BNDRY_50M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.HIGHWIND_BNDRY_70M</Name> <Title>Higher Wind Resource (Boundary)</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.181" maxx="-69.827" maxy="42.919"/> <BoundingBox SRS="EPSG:26986" minx="33940.381" miny="771993.654" maxx="336649.583" maxy="963174.849"/> <Style> <Name>DMARRIER.HIGHWIND_BNDRY_70M::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.HIGHWIND_BNDRY_70M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.IBA_POLY</Name> <Title>Audubon Important Bird Areas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.452" miny="41.335" maxx="-69.899" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="40455.108" miny="788994.63" maxx="330846.062" maxy="958136.401"/> <Style> <Name>DMARRIER.IBA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.IBA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA05_Q4</Name> <Title>MEPA Environmental Notification Form Project Sites 2005 Q4</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.MEPA05_Q4</Keyword> <Keyword>Sites</Keyword> <Keyword>2005</Keyword> <Keyword>MEPA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>Notification</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA05_Q4.xml</Keyword> <Keyword>Environmen tal</Keyword> <Keyword>Form</Keyword> <Keyword>Q4</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.274" miny="41.379" maxx="-69.961" maxy="42.841"/> <BoundingBox SRS="EPSG:26986" minx="54928.301" miny="793518.097" maxx="325833.588" maxy="954529.404"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA05_Q4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA06_Q1</Name> <Title>MEPA Environmental Notification Form Project Sites 2006 Q1</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2006</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MEPA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>Notification</Keyword> <Keyword>Q1</Keyword> <Keyword>Form</Keyword> <Keyword>DMARRIER.MEPA06_Q1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA06_Q1.xml</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.381" miny="41.158" maxx="-70.016" maxy="42.809"/> <BoundingBox SRS="EPSG:26986" minx="46125.007" miny="769188.091" maxx="321365.565" maxy="950910.745"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA06_Q2</Name> <Title>MEPA Environmental Notification Form Project Sites 2006 Q2</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2006</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>MEPA</Keyword> <Keyword>Notification</Keyword> <Keyword>Form</Keyword> <Keyword>Q2</Keyword> <Keyword>DMARRIER.MEPA06_Q2</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA06_Q2.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.292" miny="41.41" maxx="-69.982" maxy="42.985"/> <BoundingBox SRS="EPSG:26986" minx="53835.549" miny="797009.125" maxx="323844.402" maxy="970458.516"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA06_Q3</Name> <Title>MEPA Environmental Notification Form Project Sites 2006 Q3</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2006</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA06_Q3.xml</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>MEPA</Keyword> <Keyword>Notification</Keyword> <Keyword>Form</Keyword> <Keyword>DMARRIER.MEPA06_Q3</Keyword> <Keyword>Q3</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.433" miny="41.455" maxx="-70.081" maxy="42.846"/> <BoundingBox SRS="EPSG:26986" minx="41967.033" miny="802252.906" maxx="315986.272" maxy="955032.945"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA06_Q4</Name> <Title>MEPA Environmental Notification Form Project Sites 2006 Q4</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2006</Keyword> <Keyword>Sites</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA06_Q4.xml</Keyword> <Keyword>Environmental</Keyword> <Keyword>MEPA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>Notification</Keyword> <Keyword>Form</Keyword> <Keyword>DMARRIER.MEPA06_Q4</Keyword> <Keyword>Q4</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.255" miny="40.554" maxx="-69.977" maxy="42.82"/> <BoundingBox SRS="EPSG:26986" minx="56474.571" miny="701895.628" maxx="324544.541" maxy="952126.915"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA06_Q4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA07_Q1</Name> <Title>MEPA Environmental Notification Form Project Sites 2007 Q1</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2007</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>MEPA</Keyword> <Keyword>Notification</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA07_Q1.xml</Keyword> <Keyword>Q1</Keyword> <Keyword>Form</Keyword> <Keyword>Project</Keyword> <Keyword>DMARRIER.MEPA07_Q1</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.678" miny="41.28" maxx="-69.979" maxy="42.879"/> <BoundingBox SRS="EPSG:26986" minx="103748.858" miny="782134.857" maxx="324266.09" maxy="958692.632"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA07_Q2</Name> <Title>MEPA Environmental Notification Form Project Sites 2007 Q2</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2007</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MEPA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA07_Q2.xml</Keyword> <Keyword>Notification</Keyword> <Keyword>DMARRIER.MEPA07_Q2</Keyword> <Keyword>Form</Keyword> <Keyword>Q2</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.198" miny="41.27" maxx="-70.036" maxy="42.842"/> <BoundingBox SRS="EPSG:26986" minx="61130.805" miny="781358.375" maxx="319703.374" maxy="954614.457"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA07_Q3</Name> <Title>MEPA Environmental Notification Form Project Sites 2007 Q3</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2007</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>MEPA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA07_Q3.xml</Keyword> <Keyword>Notification</Keyword> <Keyword>DMARRIER.MEPA07_Q3</Keyword> <Keyword>Form</Keyword> <Keyword>Q3</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.259" miny="41.629" maxx="-70.067" maxy="42.802"/> <BoundingBox SRS="EPSG:26986" minx="56092.963" miny="821349.732" maxx="317242.791" maxy="950124.482"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA07_Q4</Name> <Title>MEPA Environmental Notification Form Project Sites 2007 Q4</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2007</Keyword> <Keyword>Sites</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>MEPA</Keyword> <Keyword>Notification</Keyword> <Keyword>DMARRIER.MEPA07_Q4</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA07_Q4.xml</Keyword> <Keyword>Form</Keyword> <Keyword>Q4</Keyword> <Keyword>Project</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49" miny="40.577" maxx="-70.494" maxy="43.0"/> <BoundingBox SRS="EPSG:26986" minx="37735.259" miny="704830.164" maxx="282064.841" maxy="972173.721"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA07_Q4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA08_Q1</Name> <Title>MEPA Environmental Notification Form Project Sites 2008 Q1</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA08_Q1.xml</Keyword> <Keyword>Sites</Keyword> <Keyword>Form</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>Project</Keyword> <Keyword>DMARRIER.MEPA08_Q1</Keyword> <Keyword>Notification</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.678" miny="40.257" maxx="-70.032" maxy="42.769"/> <BoundingBox SRS="EPSG:26986" minx="21681.305" miny="669624.86" maxx="320136.254" maxy="946485.542"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.MEPA08_Q2</Name> <Title>MEPA Environmental Notification Form Project Sites 2008 Q2</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>Sites</Keyword> <Keyword>Form</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mepa.htm</Keyword> <Keyword>Project</Keyword> <Keyword>DMARRIER.MEPA08_Q2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/DMARRIER.MEPA08_Q2.xml</Keyword> <Keyword>Notification</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.378" miny="41.294" maxx="-69.976" maxy="43.004"/> <BoundingBox SRS="EPSG:26986" minx="46837.677" miny="784321.026" maxx="324266.09" maxy="972618.164"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Vehicle_Trips_Per_Day</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Effect_On_Housing</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Supergroups</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Areas_Of_Newly_Developed_Land</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> <Style> <Name>DMARRIER.MEPAXX_QX::Change_In_Water_Use</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.MEPA08_Q2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.RERL_FINAL_NONSTATE_SITES</Name> <Title>Potential Wind Development Sites Final Non-State Sites RERL</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.515" miny="41.246" maxx="-69.936" maxy="42.754"/> <BoundingBox SRS="EPSG:26986" minx="35033.024" miny="779273.708" maxx="328083.347" maxy="944795.59"/> <Style> <Name>DMARRIER.RERL_FINAL_NONSTATE_SITES::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.RERL_FINAL_NONSTATE_SITES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.RERL_FINAL_NONSTATE_SITES_PTS</Name> <Title>Potential Wind Development Sites - Non-State Land, pts RERL</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.507" miny="41.252" maxx="-69.947" maxy="42.745"/> <BoundingBox SRS="EPSG:26986" minx="35637.819" miny="779899.846" maxx="327127.892" maxy="943888.022"/> <Style> <Name>DMARRIER.RERL_FINAL_NONSTATE_SITES_PTS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.RERL_FINAL_NONSTATE_SITES_PTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.RERL_FINAL_STATE_SITES</Name> <Title>Potential Wind Development Sites Final State Sites RERL</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.46" miny="41.571" maxx="-70.499" maxy="42.756"/> <BoundingBox SRS="EPSG:26986" minx="39478.003" miny="815287.122" maxx="281935.143" maxy="945076.038"/> <Style> <Name>DMARRIER.RERL_FINAL_STATE_SITES::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.RERL_FINAL_STATE_SITES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.RERL_FINAL_STATE_SITES_PTS</Name> <Title>Potential Wind Development Sites - State Land, pts RERL</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.453" miny="41.587" maxx="-70.518" maxy="42.754"/> <BoundingBox SRS="EPSG:26986" minx="40079.896" miny="816980.821" maxx="280377.171" maxy="944767.526"/> <Style> <Name>DMARRIER.RERL_FINAL_STATE_SITES_PTS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.RERL_FINAL_STATE_SITES_PTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.RESBUFF1000</Name> <Title>1000 Ft. Residential Buffer</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.RESBUFF1000</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.51294293738349" miny="41.23296393284388" maxx="-69.91039691563564" maxy="42.888002657835976"/> <BoundingBox SRS="EPSG:26986" minx="35527.6159409009" miny="777767.52925886" maxx="329871.033199706" maxy="959730.470024396"/> <Style> <Name>DMARRIER.RESBUFF1000::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.RESBUFF1000"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.TOWNPHONE</Name> <Title>Massachusetts Town Boundaries with Contact Information</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.TOWNPHONE</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53333449231926" miny="41.230337978954275" maxx="-69.89846132707768" maxy="42.88814761391938"/> <BoundingBox SRS="EPSG:26986" minx="33861.2637366582" miny="777514.311045975" maxx="330846.09344633203" maxy="959747.4406221571"/> <Style> <Name>DMARRIER.TOWNPHONE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.TOWNPHONE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.WINDDEV_ENV_CONCERNS</Name> <Title>Environmental Concerns</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.664" miny="41.213" maxx="-69.827" maxy="42.983"/> <BoundingBox SRS="EPSG:26986" minx="23470.42" miny="775788.395" maxx="336458.605" maxy="970333.75"/> <Style> <Name>DMARRIER.WINDDEV_ENV_CONCERNS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDDEV_ENV_CONCERNS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.WINDDEV_ENV_EXCLUSIONS</Name> <Title>Environmental Exclusions</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.664" miny="41.395" maxx="-70.236" maxy="42.984"/> <BoundingBox SRS="EPSG:26986" minx="23470.42" miny="796099.391" maxx="303122.824" maxy="970333.75"/> <Style> <Name>DMARRIER.WINDDEV_ENV_EXCLUSIONS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDDEV_ENV_EXCLUSIONS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.WINDGRID200M_DISS30</Name> <Title>Annual Mean Wind Speeds at 30 Meters</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://mass.gov/mgis/windspeed.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DMARRIER.WINDGRID200M_DISS30</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.181" maxx="-69.827" maxy="42.919"/> <BoundingBox SRS="EPSG:26986" minx="33940.381" miny="771993.654" maxx="336649.583" maxy="963174.849"/> <Style> <Name>DMARRIER.WINDGRID200M_DISS30::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS30"/> </LegendURL> </Style> <Style> <Name>DMARRIER.WINDGRID200M_DISS30::Dot_Pattern</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS30"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.WINDGRID200M_DISS50</Name> <Title>Annual Mean Wind Speeds at 50 Meters</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>DMARRIER.WINDGRID200M_DISS50</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.181" maxx="-69.827" maxy="42.919"/> <BoundingBox SRS="EPSG:26986" minx="33940.381" miny="771993.654" maxx="336649.583" maxy="963174.849"/> <Style> <Name>DMARRIER.WINDGRID200M_DISS50::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS50"/> </LegendURL> </Style> <Style> <Name>DMARRIER.WINDGRID200M_DISS50::Dot_Pattern</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS50"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:DMARRIER.WINDGRID200M_DISS70</Name> <Title>Annual Mean Wind Speeds at 70 Meters</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.181" maxx="-69.827" maxy="42.919"/> <BoundingBox SRS="EPSG:26986" minx="33940.381" miny="771993.654" maxx="336649.583" maxy="963174.849"/> <Style> <Name>DMARRIER.WINDGRID200M_DISS70::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS70"/> </LegendURL> </Style> <Style> <Name>DMARRIER.WINDGRID200M_DISS70::Dot_Pattern</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=DMARRIER.WINDGRID200M_DISS70"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.REGION_495_POLY</Name> <Title>The 495 Region</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.886" miny="41.984" maxx="-71.175" maxy="42.654"/> <BoundingBox SRS="EPSG:26986" minx="168333.896" miny="859409.861" maxx="226651.627" maxy="933689.281"/> <Style> <Name>Tan_Polys</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.REGION_495_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SCR_PDA_PPA_POLY</Name> <Title>South Coast Rail Priority Development and Protection Areas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.342" miny="41.5" maxx="-70.612" maxy="42.228"/> <BoundingBox SRS="EPSG:26986" minx="213208.299" miny="805952.224" maxx="273330.129" maxy="886444.621"/> <Style> <Name>EOHED.SCR_PDA_PPA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SCR_PDA_PPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SCR_REGION_POLY</Name> <Title>South Coast Rail Region</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.383" miny="41.478" maxx="-70.611" maxy="42.228"/> <BoundingBox SRS="EPSG:26986" minx="209811.807" miny="803499.371" maxx="273422.307" maxy="886437.211"/> <Style> <Name>Brown_Lines_Width_2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SCR_REGION_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SCR_SOUTHERN_TRIANGLE_ARC</Name> <Title>SCR Southern Triangle</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.166" miny="41.64" maxx="-70.921" maxy="41.877"/> <BoundingBox SRS="EPSG:26986" minx="227853.814" miny="821216.255" maxx="248035.184" maxy="847504.755"/> <Style> <Name>Black_Lines_Width_2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SCR_SOUTHERN_TRIANGLE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SCR_STOUGHTON_ROUTE_ARC</Name> <Title>SCR Stoughton Route</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.157" miny="41.878" maxx="-71.059" maxy="42.347"/> <BoundingBox SRS="EPSG:26986" minx="228431.079" miny="847558.393" maxx="236339.975" maxy="899681.625"/> <Style> <Name>Red_Lines_Width_2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SCR_STOUGHTON_ROUTE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SRPEDD_LOCAL_PDA_PPA_POLY</Name> <Title>SRPEDD Local Priority Development and Protection Areas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.382" miny="41.502" maxx="-70.626" maxy="42.163"/> <BoundingBox SRS="EPSG:26986" minx="209815.476" miny="806104.477" maxx="272230.375" maxy="879178.577"/> <Style> <Name>EOHED.SRPEDD_LOCAL_PDA_PPA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SRPEDD_LOCAL_PDA_PPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SRPEDD_LOCAL_PDA_PPA_POLY_201</Name> <Title>SRPEDD Local PDA PPA New Bedford</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>EOHED.SRPEDD_LOCAL_PDA_PPA_POLY::To_Edit</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SRPEDD_LOCAL_PDA_PPA_POLY_201"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SRPEDD_LOCAL_PDA_PPA_POLY_TEST</Name> <Title>SRPEDD Local Priority Development and Protection Areas TEST</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>EOHED.SRPEDD_LOCAL_PDA_PPA_POLY::To_Edit</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SRPEDD_LOCAL_PDA_PPA_POLY_TEST"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SRPEDD_REGIONAL_CORRIDORS_ARC</Name> <Title>SRPEDD Regional Corridors</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.367" miny="41.514" maxx="-70.639" maxy="42.126"/> <BoundingBox SRS="EPSG:26986" minx="211116.827" miny="807391.113" maxx="271186.333" maxy="875063.406"/> <Style> <Name>EOHED.SRPEDD_REGIONAL_CORRIDORS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SRPEDD_REGIONAL_CORRIDORS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.SRPEDD_REGIONAL_PDA_PPA_POLY</Name> <Title>SRPEDD Regional Priority Development and Protection Areas</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.371" miny="41.5" maxx="-70.611" maxy="42.238"/> <BoundingBox SRS="EPSG:26986" minx="210784.777" miny="805952.224" maxx="273366.063" maxy="887482.681"/> <Style> <Name>EOHED.SRPEDD_REGIONAL_PDA_PPA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.SRPEDD_REGIONAL_PDA_PPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:EOHED.TOWN_PRI_POLY_160</Name> <Title>EOHED Lowell Priorities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>Red_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=EOHED.TOWN_PRI_POLY_160"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ACECS_ARC</Name> <Title>Areas of Critical Environmental Concern ACECs Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Environmental</Keyword> <Keyword>Areas</Keyword> <Keyword>Critical</Keyword> <Keyword>ACECs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/acecs.htm</Keyword> <Keyword>Concern</Keyword> <Keyword>GISDATA.ACECS_ARC</Keyword> <Keyword>of</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ACECS_ARC.xml</Keyword> <Keyword>Boundaries</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/acec1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ACECs_group.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.51" miny="41.533" maxx="-69.896" maxy="42.809"/> <BoundingBox SRS="EPSG:26986" minx="35531.537" miny="811151.565" maxx="331178.347" maxy="950919.375"/> <Style> <Name>GISDATA.ACECS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_ARC::Max_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ACECS_POLY</Name> <Title>Areas of Critical Environmental Concern ACECs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/acectmp.avl</Keyword> <Keyword>Environmental</Keyword> <Keyword>Areas</Keyword> <Keyword>Critical</Keyword> <Keyword>ACECs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ACECS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ACECs.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/acecs.htm</Keyword> <Keyword>Concern</Keyword> <Keyword>of</Keyword> <Keyword>GISDATA.ACECS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.51" miny="41.533" maxx="-69.896" maxy="42.809"/> <BoundingBox SRS="EPSG:26986" minx="35531.534" miny="811151.561" maxx="331178.344" maxy="950919.371"/> <Style> <Name>GISDATA.ACECS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Green_Fill_Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Depgis_Red_Letters_Max10k_Square</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Green_Fill</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Depgis_Red_Letters_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Labels_Max_600000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ACECS_POLY::Transparent_Green_Fill_Max_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ACECS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AIRPORTS_PT</Name> <Title>Airports</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AIRPORTS_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Airports.lyr</Keyword> <Keyword>GISDATA.AIRPORTS_PT</Keyword> <Keyword>Airports</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/airports_pt.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.42" miny="41.247" maxx="-69.96" maxy="42.798"/> <BoundingBox SRS="EPSG:26986" minx="42861.473" miny="779140.0" maxx="325961.437" maxy="949687.312"/> <MetadataURL type="FGDC"> <Format>text/plain</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://maps.massgis.state.ma.us/metadata/GISDATA.AIRPORTS_PT.xml"/> </MetadataURL> <Style> <Name>GISDATA.AIRPORTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AIRPORTS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.AIRPORTS_PT::Ownership_Type</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AIRPORTS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.AIRPORTS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AIRPORTS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.AIRPORTS_PT::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AIRPORTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT</Name> <Title>Anadromous Fish</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>GISDATA.ANADFISH_PT</Keyword> <Keyword>Anadromous</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/neanad1a.avl</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_Presence.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.689" miny="41.253" maxx="-69.938" maxy="42.838"/> <BoundingBox SRS="EPSG:26986" minx="184536.05" miny="779214.63" maxx="327754.63" maxy="954101.63"/> <Style> <Name>GISDATA.ANADFISH_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::By_Manmade_Barriers</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::Presence</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::By_Fishway_Type</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::By_Fishway_Effect</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::By_Natural_Barriers</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ANADFISH_PT::By_Dam_Presence</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT_DAMPRESENCE</Name> <Title>Anadromous Fish by Dam Presence</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Dam</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_by_Dam_Presence.lyr</Keyword> <Keyword>Anadromous</Keyword> <Keyword>Fish</Keyword> <Keyword>GISDATA.ANADFISH_PT_DAMPRESENCE</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> <Keyword>Presence</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.68909378562944" miny="41.42308230235163" maxx="-69.9536348285405" maxy="42.82098282704672"/> <BoundingBox SRS="EPSG:26986" minx="184536.04999999807" miny="798113.7499999807" maxx="326474.2499999998" maxy="952268.0599999878"/> <Style> <Name>GISDATA.ANADFISH_PT::By_Dam_Presence</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT_DAMPRESENCE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT_FISHWAYEFFECT</Name> <Title>Anadromous Fish by Fishway Effect</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>Anadromous</Keyword> <Keyword>by</Keyword> <Keyword>Fish</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_by_Fishway_Effect.lyr</Keyword> <Keyword>GISDATA.ANADFISH_PT_FISHWAYEFFECT</Keyword> <Keyword>Effect</Keyword> <Keyword>Fishway</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.707" miny="41.168" maxx="-69.92" maxy="42.954"/> <BoundingBox SRS="EPSG:26986" minx="184536.05" miny="784516.63" maxx="327754.63" maxy="952268.06"/> <Style> <Name>GISDATA.ANADFISH_PT::By_Fishway_Effect</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT_FISHWAYEFFECT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT_FISHWAYTYPE</Name> <Title>Anadromous Fish by Fishway Type</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>Anadromous</Keyword> <Keyword>Type</Keyword> <Keyword>by</Keyword> <Keyword>Fish</Keyword> <Keyword>GISDATA.ANADFISH_PT_FISHWAYTYPE</Keyword> <Keyword>Fishway</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_by_Fishway_Type.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.337" miny="41.423" maxx="-69.955" maxy="42.757"/> <BoundingBox SRS="EPSG:26986" minx="213659.33" miny="798113.75" maxx="326474.25" maxy="945142.63"/> <Style> <Name>GISDATA.ANADFISH_PT::By_Fishway_Type</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT_FISHWAYTYPE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT_MANBARRIERTYPE</Name> <Title>Anadromous Fish by Manmade Barriers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Manmade</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>Barriers</Keyword> <Keyword>Anadromous</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_by_Manmade_Barriers.lyr</Keyword> <Keyword>GISDATA.ANADFISH_PT_MANBARRIERTYPE</Keyword> <Keyword>by</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.327" miny="41.53" maxx="-69.947" maxy="42.652"/> <BoundingBox SRS="EPSG:26986" minx="214472.75" miny="810010.94" maxx="327382.78" maxy="933542.5"/> <Style> <Name>GISDATA.ANADFISH_PT::By_Manmade_Barriers</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT_MANBARRIERTYPE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ANADFISH_PT_NATBARRIERTYPE</Name> <Title>Anadromous Fish By Natural Barriers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>By</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ANADFISH_PT.xml</Keyword> <Keyword>Barriers</Keyword> <Keyword>Anadromous</Keyword> <Keyword>GISDATA.ANADFISH_PT_NATBARRIERTYPE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Anadromous_Fish_by_Natural_Barriers.lyr</Keyword> <Keyword>Natural</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/anadfish.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.27" miny="41.3" maxx="-69.939" maxy="42.774"/> <BoundingBox SRS="EPSG:26986" minx="219276.25" miny="784516.63" maxx="327754.63" maxy="947123.13"/> <Style> <Name>GISDATA.ANADFISH_PT::By_Natural_Barriers</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ANADFISH_PT_NATBARRIERTYPE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AQSOLE_POLY</Name> <Title>Sole Source Aquifers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Aquifers</Keyword> <Keyword>Source</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Sole_Source_Aquifers.lyr</Keyword> <Keyword>GISDATA.AQSOLE_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/aq_sole.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/aqsole1p.avl</Keyword> <Keyword>Sole</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AQSOLE_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.702" miny="41.237" maxx="-69.914" maxy="42.271"/> <BoundingBox SRS="EPSG:26986" minx="100810.13" miny="777514.31" maxx="330846.09" maxy="891224.19"/> <Style> <Name>GISDATA.AQSOLE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQSOLE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AQUEDUCTS_ARC</Name> <Title>Aqueducts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/aqdnam1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AQUEDUCTS_ARC.xml</Keyword> <Keyword>GISDATA.AQUEDUCTS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Aqueducts_by_Name.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/aqueduct.htm</Keyword> <Keyword>Aqueducts</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.206" miny="41.99" maxx="-70.805" maxy="42.59"/> <BoundingBox SRS="EPSG:26986" minx="59990.56" miny="861296.8" maxx="257079.01" maxy="926644.69"/> <Style> <Name>GISDATA.AQUEDUCTS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQUEDUCTS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AQUIFERS_ARC</Name> <Title>Aquifers Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AQUIFERS_ARC.xml</Keyword> <Keyword>Aquifers</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataURL=http://www.mass.gov/mgis/aq.htm</Keyword> <Keyword>GISDATA.AQUIFERS_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.504" miny="41.231" maxx="-69.92" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="36270.91" miny="777514.31" maxx="329095.53" maxy="959747.44"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQUIFERS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AQUIFERS_POLY</Name> <Title>Aquifers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Aquifers</Keyword> <Keyword>GISDATA.AQUIFERS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NPDWSA_AQ.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/aqyield.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/All_Aquifers_Transparent_Green.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/aq.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AQUIFERS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/All_Aquifers_Solid_Green_Shades.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/aqutyp3p.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.46" miny="41.232" maxx="-69.92" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="39871.549" miny="777514.313" maxx="329095.529" maxy="959747.433"/> <Style> <Name>GISDATA.AQUIFERS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQUIFERS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.AQUIFERS_POLY::Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQUIFERS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.AQUIFERS_POLY::Green_Shades</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AQUIFERS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ASSESSPARNC_POLY_PUB_NOROADS</Name> <Title>Assessors Parcel Level 0 Without Large Roads Polygons</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.ASSESSPARNC_POLY_PUB_NOROADS</Keyword> <Keyword>0</Keyword> <Keyword>Level</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/parcels.htm</Keyword> <Keyword>Parcels</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.104" miny="777536.061" maxx="330779.566" maxy="959743.062"/> <Style> <Name>GISDATA.ASSESSPARNC_POLY_PUBLIC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_PUB_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPARNC_POLY_PUB_NOROADS::Site_Addr</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_PUB_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPARNC_POLY_PUB_NOROADS::Map_Id</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_PUB_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPARNC_POLY_PUB_NOROADS::Acres</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_PUB_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPARNC_POLY_PUBLIC::Yellow_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_PUB_NOROADS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ASSESSPARNC_POLY_STATUS</Name> <Title>Assessors Parcel Boundaries Level 0 Status</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.ASSESSPARNC_POLY_STATUS</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/parcels.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.5333496975222" miny="41.230340707579856" maxx="-69.89847702741667" maxy="42.888150273287174"/> <BoundingBox SRS="EPSG:26986" minx="33861.26373319913" miny="777514.3110367048" maxx="330846.0934497906" maxy="959747.4406784303"/> <Style> <Name>GISDATA.ASSESSPARNC_POLY_STATUS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPARNC_POLY_STATUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ASSESSPAR_POLY_PUBLIC</Name> <Title>Test Original Numerous Vertices Assessor Parcels Level 2</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.745" miny="41.507" maxx="-69.915" maxy="42.737"/> <BoundingBox SRS="EPSG:26986" minx="98000.844" miny="807538.051" maxx="329784.62" maxy="942904.011"/> <Style> <Name>polygon</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a green line</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC::Yellow_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC::Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS</Name> <Title>Assessor Parcels Level 2 Without Roads, Rail, Water</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ASSESSPAR_POLY_PUBLIC.xml</Keyword> <Keyword>Without</Keyword> <Keyword>2</Keyword> <Keyword>parcels</Keyword> <Keyword>Roads</Keyword> <Keyword>Rails</Keyword> <Keyword>GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS</Keyword> <Keyword>Level</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/parcels.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Water</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.745" miny="41.507" maxx="-69.915" maxy="42.737"/> <BoundingBox SRS="EPSG:26986" minx="98000.844" miny="807538.051" maxx="329784.62" maxy="942904.011"/> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS::Map_Par_Id</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS::Yellow_Outlines_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS::For_Orthos</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS"/> </LegendURL> </Style> <Style> <Name>GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS::Site_Address</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_PUBLIC_NOROADS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ASSESSPAR_POLY_STATUS</Name> <Title>Parcels Level 2 Status</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Status</Keyword> <Keyword>2</Keyword> <Keyword>Level</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ASSESSPAR_POLY_STATUS.xml</Keyword> <Keyword>Parcels</Keyword> <Keyword>GISDATA.ASSESSPAR_POLY_STATUS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.746" miny="41.507" maxx="-69.914" maxy="42.737"/> <BoundingBox SRS="EPSG:26986" minx="97992.224" miny="807549.251" maxx="329919.594" maxy="942914.691"/> <Style> <Name>GISDATA.ASSESSPAR_POLY_STATUS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ASSESSPAR_POLY_STATUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ATLNPROV_POLY</Name> <Title>Atlantic Provinces</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/atlnprov.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/atlpro2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Atlantic_Provinces_Shaded.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ATLNPROV_POLY.xml</Keyword> <Keyword>Provinces</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Atlantic_Provinces_Outline.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/atldef1p.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.ATLNPROV_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-69.3" miny="40.378" maxx="-58.852" maxy="50.825"/> <BoundingBox SRS="EPSG:26986" minx="386051.92" miny="1037511.72" maxx="1144347.26" maxy="1553384.12"/> <Style> <Name>GISDATA.ATLNPROV_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ATLNPROV_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ATLNPROV_POLY::Shaded</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ATLNPROV_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ATLNPROV_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ATLNPROV_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.AUL_PT</Name> <Title>AUL Sites</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Sites</Keyword> <Keyword>AUL</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/CH21E_AUL_Sites.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.AUL_PT.xml</Keyword> <Keyword>GISDATA.AUL_PT</Keyword> <Keyword>MassgisMetadataURL=http://www.mass.gov/mgis/aul.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/AUL_PT.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.473" miny="41.259" maxx="-69.924" maxy="42.867"/> <BoundingBox SRS="EPSG:26986" minx="38739.731" miny="780615.025" maxx="328148.716" maxy="957338.305"/> <Style> <Name>GISDATA.AUL_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AUL_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.AUL_PT::Sites</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AUL_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.AUL_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.AUL_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BARRIERB_POLY</Name> <Title>Barrier Beaches</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Beaches</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/barrierb.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BARRIERB_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bardef1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Barrier_Beaches.lyr</Keyword> <Keyword>GISDATA.BARRIERB_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Barrier</Keyword> <Keyword>DataType=polygon</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.226" miny="41.238" maxx="-69.899" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="223002.61" miny="777608.38" maxx="330838.69" maxy="958161.06"/> <Style> <Name>GISDATA.BARRIERB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BARRIERB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BATHYMGM_ARC</Name> <Title>Bathymetry of the Gulf of Maine Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BATHYMGM_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bathymgm.htm</Keyword> <Keyword>Arcs</Keyword> <Keyword>Gulf</Keyword> <Keyword>the</Keyword> <Keyword>Maine</Keyword> <Keyword>GISDATA.BATHYMGM_ARC</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.824" miny="39.13" maxx="-62.204" maxy="46.05"/> <BoundingBox SRS="EPSG:26986" minx="174878.8" miny="577731.94" maxx="923912.69" maxy="1311467.0"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BATHYMGM_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BATHYMGM_POLY</Name> <Title>Bathymetry of the Gulf of ME</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bathymetry_Gulf_of_Maine_with_Labels.lyr</Keyword> <Keyword>Gulf</Keyword> <Keyword>the</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BATHYMGM_POLY.xml</Keyword> <Keyword>of</Keyword> <Keyword>ME</Keyword> <Keyword>GISDATA.BATHYMGM_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bathymgm.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bathgm.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.824" miny="39.13" maxx="-62.204" maxy="46.05"/> <BoundingBox SRS="EPSG:26986" minx="174878.8" miny="577731.94" maxx="923912.69" maxy="1311467.0"/> <Style> <Name>GISDATA.BATHYMGM_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BATHYMGM_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BEDROCKLITHOLOGY_POLY</Name> <Title>Bedrock Lithology</Title> <Abstract>Generated from massgis_sde Bedrock Lithology</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bedldbas.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bedlgp.avl</Keyword> <Keyword>GISDATA.BEDROCKLITHOLOGY_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BEDROCKLITHOLOGY_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bedrock_Lithology_Group_B.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bedrock_Lithology_Group_A.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bedrock_Lithology_Drainage_Basin.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bedrock_Lithology_Geol_Prov.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bedlgrpb.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bedlith.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bedlgrpa.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.524" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34616.205" miny="777623.23" maxx="330839.495" maxy="959747.44"/> <Style> <Name>GISDATA.BEDROCKLITHOLOGY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BEDROCKLITHOLOGY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BEDROCKLITHOLOGY_POLY::Group_A_General</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BEDROCKLITHOLOGY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BEDROCKLITHOLOGY_POLY::Geologic_Provinces</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BEDROCKLITHOLOGY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BEDROCKLITHOLOGY_POLY::Group_B_Detailed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BEDROCKLITHOLOGY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BEDROCKLITHOLOGY_POLY::Drainage_Basin</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BEDROCKLITHOLOGY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BIKETRAILS_ARC</Name> <Title>Bicycle Trails</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biketrails.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/biktra1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bike_Trails.lyr</Keyword> <Keyword>Trails</Keyword> <Keyword>GISDATA.BIKETRAILS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BIKETRAILS_ARC.xml</Keyword> <Keyword>Bicycle</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.427" miny="41.383" maxx="-69.922" maxy="42.872"/> <BoundingBox SRS="EPSG:26986" minx="42526.52" miny="794291.002" maxx="328921.47" maxy="957916.812"/> <Style> <Name>GISDATA.BIKETRAILS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BIKETRAILS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_AQUATIC_CORE</Name> <Title>BioMap2 Core Habitat Aquatic Core</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.508" miny="41.236" maxx="-69.935" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="35937.736" miny="778073.655" maxx="327851.441" maxy="958260.691"/> <Style> <Name>GISDATA.BM2_CH_AQUATIC_CORE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_AQUATIC_CORE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_BIOMAP2_WETLANDS</Name> <Title>BioMap2 Core Habitat Wetlands</Title> <Abstract/> <KeywordList> <Keyword>Ma</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.498" miny="41.239" maxx="-69.941" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="36713.27" miny="778439.375" maxx="327423.625" maxy="958012.563"/> <Style> <Name>GISDATA.BM2_CH_BIOMAP2_WETLANDS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_BIOMAP2_WETLANDS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_FOREST_CORE</Name> <Title>BioMap2 Core Habitat Forest Core</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53" miny="41.363" maxx="-69.935" maxy="42.787"/> <BoundingBox SRS="EPSG:26986" minx="33871.509" miny="792251.306" maxx="328103.452" maxy="948496.901"/> <Style> <Name>GISDATA.BM2_CH_FOREST_CORE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_FOREST_CORE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_PRIORITY_NATURAL_COMMS</Name> <Title>BioMap2 Core Habitat Priority Natural Communities</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.249" maxx="-69.917" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="34011.249" miny="779538.438" maxx="329344.698" maxy="958133.807"/> <Style> <Name>GISDATA.BM2_CH_PRIORITY_NATURAL_COMMS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_PRIORITY_NATURAL_COMMS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_SPECIES_CONS_CONCERN</Name> <Title>BioMap2 Core Habitat Species of Conservation Concern</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.896" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777504.138" maxx="331102.88" maxy="958246.015"/> <Style> <Name>GISDATA.BM2_CH_SPECIES_CONS_CONCERN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_SPECIES_CONS_CONCERN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CH_VERNAL_POOL_CORE</Name> <Title>BioMap2 Core Habitat Vernal Pool Core</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.492" miny="41.484" maxx="-70.073" maxy="42.84"/> <BoundingBox SRS="EPSG:26986" minx="37100.0" miny="805637.973" maxx="316699.152" maxy="954364.672"/> <Style> <Name>GISDATA.BM2_CH_VERNAL_POOL_CORE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CH_VERNAL_POOL_CORE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CNL_AQUATIC_BUFFER</Name> <Title>BioMap2 Critical Natural Landscape Aquatic Buffer</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.508" miny="41.235" maxx="-69.934" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="35870.0" miny="778032.821" maxx="327940.0" maxy="958293.626"/> <Style> <Name>GISDATA.BM2_CNL_AQUATIC_BUFFER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CNL_AQUATIC_BUFFER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CNL_COASTAL_ADAPT_AN</Name> <Title>BioMap2 Critical Natural Landscape Coastal Adaptation Analysis</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.333" miny="41.244" maxx="-69.902" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="214032.868" miny="778305.52" maxx="330601.094" maxy="958065.0"/> <Style> <Name>GISDATA.BM2_CNL_COASTAL_ADAPT_AN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CNL_COASTAL_ADAPT_AN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CNL_LANDSCAPE_BLOCKS</Name> <Title>BioMap2 Critical Natural Landscape Landscape Blocks</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.233" maxx="-69.899" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777775.907" maxx="330844.201" maxy="958134.855"/> <Style> <Name>GISDATA.BM2_CNL_LANDSCAPE_BLOCKS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CNL_LANDSCAPE_BLOCKS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CNL_TERN_FORAGING</Name> <Title>BioMap2 Critical Natural Landscape Tern Foraging</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.229" miny="41.233" maxx="-69.893" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="222697.169" miny="777065.275" maxx="331326.912" maxy="958201.101"/> <Style> <Name>GISDATA.BM2_CNL_TERN_FORAGING::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CNL_TERN_FORAGING"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CNL_WETLAND_BUFFER</Name> <Title>BioMap2 Critical Natural Landscape Wetland Buffer</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.498" miny="41.239" maxx="-69.94" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="36686.444" miny="778396.688" maxx="327486.413" maxy="958086.688"/> <Style> <Name>GISDATA.BM2_CNL_WETLAND_BUFFER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CNL_WETLAND_BUFFER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CORE_HABITAT</Name> <Title>BioMap2 Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.896" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777504.138" maxx="331102.88" maxy="958260.691"/> <Style> <Name>GISDATA.BM2_CORE_HABITAT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CORE_HABITAT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BM2_CRITICAL_NATURAL_LANDSCAPE</Name> <Title>BioMap2 Critical Natural Landscape</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/biomap2.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.226" maxx="-69.893" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777065.275" maxx="331326.912" maxy="958293.626"/> <Style> <Name>GISDATA.BM2_CRITICAL_NATURAL_LANDSCAPE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BM2_CRITICAL_NATURAL_LANDSCAPE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BOUNDARY_ARC</Name> <Title>Massachusetts Boundary</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/boundary.htm</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BOUNDARY_ARC.xml</Keyword> <Keyword>Boundary</Keyword> <Keyword>GISDATA.BOUNDARY_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.145" maxx="-69.794" maxy="43.922"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="771781.311" maxx="336337.874" maxy="959747.441"/> <Style> <Name>GISDATA.BOUNDARY_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.BOUNDARY_ARC::Depgis_Pb_Brown_Max100k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.BOUNDARY_ARC::Thick_Grey_Thin_Dashed_Red_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BOUNDARY_POLY</Name> <Title>Massachusetts Towns Outlines No Coast</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Town_Boundaries.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bndnum1p.avl</Keyword> <Keyword>No</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Town_Boundaries_Shaded.lyr</Keyword> <Keyword>Outlines</Keyword> <Keyword>Towns</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/boundary.htm</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BOUNDARY_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bndnum2p.avl</Keyword> <Keyword>GISDATA.BOUNDARY_POLY</Keyword> <Keyword>Coast</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.179" maxx="-69.831" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="771781.311" maxx="336337.874" maxy="959747.441"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BOUNDARY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.BOUNDARY_POLY::Shaded</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BOUNDARY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BREAKLINES_ARC</Name> <Title>Breaklines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BREAKLINES_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/l.htm</Keyword> <Keyword>Breaklines</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.459" maxx="-69.898" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="33000.0" miny="802964.191" maxx="330837.69" maxy="962000.061"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BREAKLINES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BROADBAND_SURVEY_PT</Name> <Title>Broadband Survey Points</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>GISDATA.BROADBAND_SURVEY_PT</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.12547184147735" miny="41.673535819411995" maxx="-70.60312010962788" maxy="42.82676799657797"/> <BoundingBox SRS="EPSG:26986" minx="67066.42421999815" miny="826053.4408599831" maxx="273342.03422000137" maxy="952907.4408599872"/> <Style> <Name>GISDATA.BROADBAND_SURVEY_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BROADBAND_SURVEY_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BTHOS250_POLY</Name> <Title>Bathymetry 250K Scale</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>250K</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BTHOS250_POLY.xml</Keyword> <Keyword>GISDATA.BTHOS250_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bath250.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Bathymetry_250K_scale.lyr</Keyword> <Keyword>Scale</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bthos250.htm</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.611" miny="40.724" maxx="-68.945" maxy="43.194"/> <BoundingBox SRS="EPSG:26986" minx="109704.23" miny="722389.38" maxx="407804.5" maxy="993659.5"/> <Style> <Name>GISDATA.BTHOS250_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BTHOS250_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS34_POLY</Name> <Title>Insect Infestation 1934</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1934</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1934.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS34_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS34_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.549" miny="42.316" maxx="-72.455" maxy="42.592"/> <BoundingBox SRS="EPSG:26986" minx="113907.13" miny="896664.75" maxx="121309.3" maxy="927318.0"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS34_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS35_POLY</Name> <Title>Insect Infestation 1935</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1935</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1935.lyr</Keyword> <Keyword>GISDATA.BUGS35_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS35_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.602" miny="42.256" maxx="-72.226" maxy="42.692"/> <BoundingBox SRS="EPSG:26986" minx="109708.75" miny="890032.06" maxx="140072.48" maxy="938167.38"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS35_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS36_POLY</Name> <Title>Insect Infestation 1936</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1936</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1936.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS36_POLY.xml</Keyword> <Keyword>GISDATA.BUGS36_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.594" miny="42.233" maxx="-72.248" maxy="42.683"/> <BoundingBox SRS="EPSG:26986" minx="110332.8" miny="887504.63" maxx="138233.39" maxy="937235.94"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS36_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS37_POLY</Name> <Title>Insect Infestation 1937</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS37_POLY.xml</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1937.lyr</Keyword> <Keyword>GISDATA.BUGS37_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1937</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.871" miny="42.146" maxx="-72.211" maxy="42.716"/> <BoundingBox SRS="EPSG:26986" minx="87661.93" miny="878147.63" maxx="141268.17" maxy="940843.88"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS37_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS38_POLY</Name> <Title>Insect Infestation 1938</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1938.lyr</Keyword> <Keyword>1938</Keyword> <Keyword>GISDATA.BUGS38_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS38_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.858" miny="42.153" maxx="-72.217" maxy="42.731"/> <BoundingBox SRS="EPSG:26986" minx="88809.93" miny="878974.13" maxx="140724.48" maxy="942494.5"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS38_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS39_POLY</Name> <Title>Insect Infestation 1939</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS39_POLY</Keyword> <Keyword>1939</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1939.lyr</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS39_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.874" miny="42.125" maxx="-72.21" maxy="42.73"/> <BoundingBox SRS="EPSG:26986" minx="87482.77" miny="875888.63" maxx="141306.0" maxy="942362.94"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS39_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS40_POLY</Name> <Title>Insect Infestation 1940</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS40_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1940.lyr</Keyword> <Keyword>1940</Keyword> <Keyword>GISDATA.BUGS40_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.914" miny="42.062" maxx="-72.215" maxy="42.726"/> <BoundingBox SRS="EPSG:26986" minx="84184.63" miny="868891.69" maxx="140859.73" maxy="941927.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS40_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS41_POLY</Name> <Title>Insect Infestation 1941</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1941.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS41_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS41_POLY.xml</Keyword> <Keyword>1941</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.863" miny="42.029" maxx="-72.164" maxy="42.729"/> <BoundingBox SRS="EPSG:26986" minx="93066.15" miny="865900.88" maxx="140282.77" maxy="941491.06"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS41_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS44_POLY</Name> <Title>Insect Infestation 1944</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1944</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS44_POLY.xml</Keyword> <Keyword>GISDATA.BUGS44_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1944.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.745" miny="42.241" maxx="-72.223" maxy="42.729"/> <BoundingBox SRS="EPSG:26986" minx="98000.57" miny="888631.06" maxx="140330.09" maxy="942276.25"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS44_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS45_POLY</Name> <Title>Insect Infestation 1945</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1945</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1945.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS45_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS45_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.86" miny="42.158" maxx="-72.209" maxy="42.733"/> <BoundingBox SRS="EPSG:26986" minx="88603.41" miny="879552.25" maxx="141411.17" maxy="942753.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS45_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS46_POLY</Name> <Title>Insect Infestation 1946</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>1946</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1946.lyr</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS46_POLY.xml</Keyword> <Keyword>GISDATA.BUGS46_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.885" miny="42.008" maxx="-72.209" maxy="42.726"/> <BoundingBox SRS="EPSG:26986" minx="86532.14" miny="862834.06" maxx="141302.75" maxy="942003.69"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS46_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS61_POLY</Name> <Title>Insect Infestation 1961</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS61_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1961.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS61_POLY.xml</Keyword> <Keyword>1961</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.417" miny="41.617" maxx="-70.38" maxy="42.695"/> <BoundingBox SRS="EPSG:26986" minx="42848.85" miny="820307.06" maxx="291804.09" maxy="938296.69"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS61_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS62_POLY</Name> <Title>Insect Infestation 1962</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS62_POLY</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS62_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1962.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>1962</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.525" miny="42.029" maxx="-71.049" maxy="42.754"/> <BoundingBox SRS="EPSG:26986" minx="34170.04" miny="866248.88" maxx="236884.97" maxy="944853.81"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS62_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS63_POLY</Name> <Title>Insect Infestation 1963</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS63_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>1963</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS63_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1963.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.509" miny="42.038" maxx="-72.275" maxy="42.755"/> <BoundingBox SRS="EPSG:26986" minx="35487.32" miny="867222.69" maxx="135822.05" maxy="945255.13"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS63_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS64_POLY</Name> <Title>Insect Infestation 1964</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS64_POLY</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1964.lyr</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>1964</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS64_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.528" miny="41.588" maxx="-69.996" maxy="42.757"/> <BoundingBox SRS="EPSG:26986" minx="33925.99" miny="817236.38" maxx="323123.34" maxy="945199.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS64_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS65_POLY</Name> <Title>Insect Infestation 1965</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS65_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS65_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1965.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>1965</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.177" miny="41.612" maxx="-70.016" maxy="42.737"/> <BoundingBox SRS="EPSG:26986" minx="62655.29" miny="819316.06" maxx="321499.88" maxy="942927.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS65_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS66_POLY</Name> <Title>Insect Infestation 1966</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>1966</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1966.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS66_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS66_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.484" miny="41.57" maxx="-70.599" maxy="42.659"/> <BoundingBox SRS="EPSG:26986" minx="119315.23" miny="813713.63" maxx="273892.41" maxy="934254.56"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS66_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS67_POLY</Name> <Title>Insect Infestation 1967</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>1967</Keyword> <Keyword>GISDATA.BUGS67_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS67_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1967.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.395" miny="42.022" maxx="-71.686" maxy="42.754"/> <BoundingBox SRS="EPSG:26986" minx="44859.98" miny="865172.0" maxx="184606.84" maxy="944863.81"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS67_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS68_POLY</Name> <Title>Insect Infestation 1968</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1968.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS68_POLY.xml</Keyword> <Keyword>1968</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS68_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.471" miny="41.357" maxx="-69.928" maxy="42.712"/> <BoundingBox SRS="EPSG:26986" minx="38485.97" miny="791508.38" maxx="328781.78" maxy="940109.31"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS68_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS69_POLY</Name> <Title>Insect Infestation 1969</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS69_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1969</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1969.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS69_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.356" miny="41.527" maxx="-69.921" maxy="42.758"/> <BoundingBox SRS="EPSG:26986" minx="48053.09" miny="810139.31" maxx="329297.09" maxy="945229.44"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS69_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS70_POLY</Name> <Title>Insect Infestation 1970</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1970</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS70_POLY.xml</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1970.lyr</Keyword> <Keyword>GISDATA.BUGS70_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.504" miny="41.357" maxx="-69.922" maxy="42.756"/> <BoundingBox SRS="EPSG:26986" minx="35916.26" miny="791570.88" maxx="329158.81" maxy="945043.06"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS70_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS71_POLY</Name> <Title>Insect Infestation 1971</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1971</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1971.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS71_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS71_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.513" miny="41.559" maxx="-69.931" maxy="42.752"/> <BoundingBox SRS="EPSG:26986" minx="35188.0" miny="813992.44" maxx="328502.38" maxy="944572.81"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS71_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS72_POLY</Name> <Title>Insect Infestation 1972</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS72_POLY</Keyword> <Keyword>Infestation</Keyword> <Keyword>1972</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1972.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS72_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.347" miny="41.561" maxx="-69.959" maxy="42.752"/> <BoundingBox SRS="EPSG:26986" minx="48773.37" miny="813970.06" maxx="326137.66" maxy="944589.63"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS72_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS73_POLY</Name> <Title>Insect Infestation 1973</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS73_POLY.xml</Keyword> <Keyword>Infestation</Keyword> <Keyword>1973</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1973.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS73_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.413" miny="41.355" maxx="-69.924" maxy="42.73"/> <BoundingBox SRS="EPSG:26986" minx="43326.82" miny="791104.88" maxx="329069.72" maxy="942186.06"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS73_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS74_POLY</Name> <Title>Insect Infestation 1974</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1974.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS74_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1974</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS74_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.524" miny="41.335" maxx="-69.959" maxy="42.69"/> <BoundingBox SRS="EPSG:26986" minx="34140.6" miny="789112.44" maxx="326258.06" maxy="937727.88"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS74_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS75_POLY</Name> <Title>Insect Infestation 1975</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1975.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS75_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1975</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS75_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.759" miny="41.651" maxx="-70.621" maxy="42.861"/> <BoundingBox SRS="EPSG:26986" minx="97098.44" miny="823063.81" maxx="271809.34" maxy="956747.63"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS75_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS76_POLY</Name> <Title>Insect Infestation 1976</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS76_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1976</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1976.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS76_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.333" miny="41.332" maxx="-70.431" maxy="42.752"/> <BoundingBox SRS="EPSG:26986" minx="49894.48" miny="788496.06" maxx="287516.28" maxy="944600.88"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS76_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS77_POLY</Name> <Title>Insect Infestation 1977</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1977.lyr</Keyword> <Keyword>1977</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS77_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>GISDATA.BUGS77_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.516" miny="41.342" maxx="-69.97" maxy="42.864"/> <BoundingBox SRS="EPSG:26986" minx="35237.12" miny="789841.69" maxx="325022.34" maxy="957097.5"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS77_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS78_POLY</Name> <Title>Insect Infestation 1978</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1978.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>1978</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS78_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS78_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.522" miny="41.234" maxx="-69.933" maxy="42.731"/> <BoundingBox SRS="EPSG:26986" minx="34351.74" miny="777957.5" maxx="328341.56" maxy="942309.5"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS78_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS79_POLY</Name> <Title>Insect Infestation 1979</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS79_POLY.xml</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1979.lyr</Keyword> <Keyword>GISDATA.BUGS79_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>1979</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.421" miny="41.237" maxx="-69.941" maxy="42.758"/> <BoundingBox SRS="EPSG:26986" minx="42732.48" miny="778108.69" maxx="327618.38" maxy="945217.81"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS79_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS80_POLY</Name> <Title>Insect Infestation 1980</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1980</Keyword> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS80_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1980.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS80_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.532" miny="41.555" maxx="-69.968" maxy="42.855"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="813634.06" maxx="325229.94" maxy="956089.69"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS80_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS81_POLY</Name> <Title>Insect Infestation 1981</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>1981</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS81_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1981.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.BUGS81_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.617" maxx="-69.938" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="820514.56" maxx="327625.19" maxy="959540.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS81_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS82_POLY</Name> <Title>Insect Infestation 1982</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1982</Keyword> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS82_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1982.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS82_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.27" maxx="-69.932" maxy="42.883"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="781874.19" maxx="328145.56" maxy="959114.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS82_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS83_POLY</Name> <Title>Insect Infestation 1983</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1983</Keyword> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS83_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1983.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS83_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.513" miny="41.261" maxx="-69.934" maxy="42.87"/> <BoundingBox SRS="EPSG:26986" minx="35452.03" miny="780900.5" maxx="327999.38" maxy="957761.63"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS83_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS84_POLY</Name> <Title>Insect Infestation 1984</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1984.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS84_POLY.xml</Keyword> <Keyword>1984</Keyword> <Keyword>GISDATA.BUGS84_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.513" miny="41.267" maxx="-69.928" maxy="42.684"/> <BoundingBox SRS="EPSG:26986" minx="35001.9" miny="781568.56" maxx="328845.44" maxy="937016.38"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS84_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS85_POLY</Name> <Title>Insect Infestation 1985</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS85_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS85_POLY.xml</Keyword> <Keyword>1985</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1985.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.347" miny="41.239" maxx="-69.94" maxy="42.806"/> <BoundingBox SRS="EPSG:26986" minx="48922.07" miny="778128.63" maxx="327591.75" maxy="950578.69"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS85_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS86_POLY</Name> <Title>Insect Infestation 1986</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS86_POLY</Keyword> <Keyword>Infestation</Keyword> <Keyword>1986</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS86_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1986.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.111" miny="41.327" maxx="-69.933" maxy="42.785"/> <BoundingBox SRS="EPSG:26986" minx="68127.38" miny="787579.19" maxx="328265.91" maxy="948253.44"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS86_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS87_POLY</Name> <Title>Insect Infestation 1987</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1987</Keyword> <Keyword>GISDATA.BUGS87_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1987.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS87_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.389" miny="41.258" maxx="-69.934" maxy="42.795"/> <BoundingBox SRS="EPSG:26986" minx="45427.11" miny="780381.38" maxx="328156.66" maxy="949330.31"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS87_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS88_POLY</Name> <Title>Insect Infestation 1988</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS88_POLY.xml</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS88_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>1988</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1988.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.512" miny="41.675" maxx="-70.936" maxy="42.748"/> <BoundingBox SRS="EPSG:26986" minx="35259.7" miny="826890.44" maxx="246200.39" maxy="944152.06"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS88_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS89_POLY</Name> <Title>Insect Infestation 1989</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS89_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1989.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS89_POLY.xml</Keyword> <Keyword>1989</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.385" miny="41.448" maxx="-69.928" maxy="42.723"/> <BoundingBox SRS="EPSG:26986" minx="45563.22" miny="801469.75" maxx="328784.13" maxy="941377.06"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS89_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS90_POLY</Name> <Title>Insect Infestation 1990</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1990.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>Insect</Keyword> <Keyword>GISDATA.BUGS90_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>1990</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS90_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.492" miny="41.353" maxx="-69.927" maxy="42.747"/> <BoundingBox SRS="EPSG:26986" minx="36914.52" miny="791016.63" maxx="328774.94" maxy="944073.88"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS90_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS91_POLY</Name> <Title>Insect Infestation 1991</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>1991</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS91_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1991.lyr</Keyword> <Keyword>GISDATA.BUGS91_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.202" miny="41.543" maxx="-69.921" maxy="42.756"/> <BoundingBox SRS="EPSG:26986" minx="60612.73" miny="811654.94" maxx="329243.03" maxy="945055.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS91_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS92_POLY</Name> <Title>Insect Infestation 1992</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1992.lyr</Keyword> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1992</Keyword> <Keyword>GISDATA.BUGS92_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS92_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.342" miny="41.656" maxx="-69.916" maxy="42.853"/> <BoundingBox SRS="EPSG:26986" minx="49450.96" miny="824419.81" maxx="329522.66" maxy="955821.69"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS92_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS93_POLY</Name> <Title>Insect Infestation 1993</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.BUGS93_POLY</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1993.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS93_POLY.xml</Keyword> <Keyword>1993</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.211" miny="41.6" maxx="-69.923" maxy="42.865"/> <BoundingBox SRS="EPSG:26986" minx="60121.17" miny="818064.25" maxx="328849.0" maxy="957210.38"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS93_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS94_POLY</Name> <Title>Insect Infestation 1994</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Infestation</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>1994</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS94_POLY.xml</Keyword> <Keyword>GISDATA.BUGS94_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1994.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.42" miny="41.572" maxx="-69.914" maxy="42.716"/> <BoundingBox SRS="EPSG:26986" minx="42724.0" miny="815251.94" maxx="329914.72" maxy="940585.31"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS94_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS95_POLY</Name> <Title>Insect Infestation 1995</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1995</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS95_POLY.xml</Keyword> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS95_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1995.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>Insect</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.418" miny="41.238" maxx="-69.928" maxy="42.75"/> <BoundingBox SRS="EPSG:26986" minx="42971.86" miny="778154.38" maxx="328687.69" maxy="944395.31"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS95_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS96_POLY</Name> <Title>Insect Infestation 1996</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1996</Keyword> <Keyword>Infestation</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS96_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>GISDATA.BUGS96_POLY</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1996.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.223" miny="41.65" maxx="-69.929" maxy="42.751"/> <BoundingBox SRS="EPSG:26986" minx="58912.65" miny="823588.06" maxx="328607.94" maxy="944455.81"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS96_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUGS97_POLY</Name> <Title>Insect Infestation 1997</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>1997</Keyword> <Keyword>Infestation</Keyword> <Keyword>GISDATA.BUGS97_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bugs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUGS97_POLY.xml</Keyword> <Keyword>Insect</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bugs.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Insect_Infestation_1997.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.224" miny="41.724" maxx="-69.968" maxy="42.682"/> <BoundingBox SRS="EPSG:26986" minx="58682.22" miny="831783.06" maxx="325590.63" maxy="936844.19"/> <Style> <Name>GISDATA.BUGSXX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUGS97_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BUILDINGFP_POLY</Name> <Title>Building Footprints (2-D, from LIDAR)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BUILDINGFP_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Building_Footprints_2-D_from_Lidar.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lidarbuildingfp2d.htm</Keyword> <Keyword>GISDATA.BUILDINGFP_POLY</Keyword> <Keyword>Footprints</Keyword> <Keyword>Building</Keyword> <Keyword>LIDAR)</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/buildingfp_poly.avl</Keyword> <Keyword>from</Keyword> <Keyword>(2-D</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.198" miny="42.195" maxx="-70.945" maxy="42.548"/> <BoundingBox SRS="EPSG:26986" minx="224976.214" miny="882891.781" maxx="245585.284" maxy="922003.771"/> <Style> <Name>GISDATA.BUILDINGFP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BUILDINGFP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.BWPMAJOR_PT</Name> <Title>DEP BWP Major Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Major</Keyword> <Keyword>GISDATA.BWPMAJOR_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_LQG.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_tsdf.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_lqtu.avl</Keyword> <Keyword>Facilities</Keyword> <Keyword>BWP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_SWD.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_swd.avl</Keyword> <Keyword>DEP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_air.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.BWPMAJOR_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_lqg_epa.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_hwr.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_lqg_ma.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_Air.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_GWD.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_LQTU.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/bwp_gwd.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/bwp_maj.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_TSDF.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_BWP_Major_Facilities_HWR.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.383" miny="41.252" maxx="-69.982" maxy="42.861"/> <BoundingBox SRS="EPSG:26986" minx="46113.543" miny="779783.125" maxx="324592.46" maxy="956707.688"/> <Style> <Name>GISDATA.BWPMAJOR_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::LQTU</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::AIR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::SWD</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::LQG_MA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::HWR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::GWD</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::TSDF</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.BWPMAJOR_PT::LQG_RCRA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.BWPMAJOR_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.C21E_PT</Name> <Title>DEP Tier Classified 21E Sites</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Classified</Keyword> <Keyword>Sites</Keyword> <Keyword>Tier</Keyword> <Keyword>GISDATA.C21E_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Tier_Classified_Sites.lyr</Keyword> <Keyword>21E</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.C21E_PT.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/c21e.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/21e_reg.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.471" miny="41.247" maxx="-69.947" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="46104.488" miny="780753.199" maxx="328055.763" maxy="956363.187"/> <Style> <Name>GISDATA.C21E_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.C21E_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.C21E_PT::Blue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.C21E_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CANOEACCESS_PT</Name> <Title>Canoe Access Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CANOEACCESS_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/canacc1p.avl</Keyword> <Keyword>GISDATA.CANOEACCESS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/canoes.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Canoe_Access_Points.lyr</Keyword> <Keyword>Access</Keyword> <Keyword>Canoe</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.741" miny="42.282" maxx="-70.827" maxy="42.866"/> <BoundingBox SRS="EPSG:26986" minx="180308.97" miny="892584.13" maxx="255004.05" maxy="957296.69"/> <Style> <Name>GISDATA.CANOEACCESS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CANOEACCESS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CANOETRIPS_ARC</Name> <Title>Canoe Trips</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Canoe_Trips.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/canoes.htm</Keyword> <Keyword>Trips</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CANOETRIPS_ARC.xml</Keyword> <Keyword>Canoe</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cantyp1a.avl</Keyword> <Keyword>GISDATA.CANOETRIPS_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.741" miny="42.282" maxx="-70.826" maxy="42.866"/> <BoundingBox SRS="EPSG:26986" minx="180309.33" miny="892567.81" maxx="255074.98" maxy="957288.63"/> <Style> <Name>GISDATA.CANOETRIPS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CANOETRIPS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CBRS_ARC</Name> <Title>Coastal Barrier Resource Units Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cbrs.htm</Keyword> <Keyword>Resource</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CBRS_ARC.xml</Keyword> <Keyword>Units</Keyword> <Keyword>Coastal</Keyword> <Keyword>Arcs</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.CBRS_ARC</Keyword> <Keyword>Barrier</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.251" miny="41.237" maxx="-69.894" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="220839.38" miny="777558.81" maxx="331215.84" maxy="958500.13"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CBRS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CBRS_POLY</Name> <Title>Coastal Barrier Resource Units</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CBRS_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cbrs.htm</Keyword> <Keyword>Resource</Keyword> <Keyword>Units</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cbrs.avl</Keyword> <Keyword>Coastal</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Coastal_Barrier_Resource_Units.lyr</Keyword> <Keyword>GISDATA.CBRS_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Barrier</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.251" miny="41.237" maxx="-69.894" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="220839.38" miny="777558.81" maxx="331215.84" maxy="958500.13"/> <Style> <Name>GISDATA.CBRS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CBRS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CCMMRBND1_POLY</Name> <Title>Massachusetts Military Reservation</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Reservation</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>GISDATA.CCMMRBND1_POLY</Keyword> <Keyword>Military</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.59775581482911" miny="41.636993113129016" maxx="-70.48791327160808" maxy="41.77109516654081"/> <BoundingBox SRS="EPSG:26986" minx="275173.4399999947" miny="821248.8799999836" maxx="284150.58999999746" maxy="836043.4999999871"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CCMMRBND1_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CEN2000_BG_LEGATTRIB</Name> <Title>Census 2000 Blockgroups Statistics</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps. massgis.state.ma.us/avls/households.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/p_islnder.avl</Keyword> <Keyword>Statistics</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us /lyrs/Cen2kBG_ncitzn_prc.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/ avls/prc_lt_18.avl</Keyword> <Keyword>ExtractDoc=http://map s.massgis.state.ma.us/avls/ncitzn_prc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_asian.lyr</Keyword> <Keyword>Blockgroup</Keyword> <Keyword>Ext ractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_md_hs_val.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/a vls/hisp_latin.avl</Keyword> <Keyword>ExtractDoc=http://maps .massgis.state.ma.us/lyrs/Cen2kBG_total_pop.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/other.avl</Keyword> <Keyword>ExtractDoc=http://maps. massgis.state.ma.us/lyrs/Cen2kBG_minor_prc.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/inc_lo_prc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CEN2000_BG_LEGATTRIB.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/age_lt18.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_hisp.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDo c=http://maps.massgis.state.ma.us/avls/perc_fvote.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_nw_rnt.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ Cen2kBG_prc_w_rnt.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/ avls/prc_multi.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_lng_span.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.stat e.ma.us/avls/prc_islnd.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_perc_mvote.lyr</Keyword> <Keyword>ExtractDoc=ht tp://maps.massgis.state.ma.us/avls/citizens.avl</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_multi.lyr</Keyword> <Keyword>ExtractDoc= http://maps.massgis.state.ma.us/lyrs/Cen2kBG_perc_fvote.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_ md_prc.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massg is.state.ma.us/avls/prc_asian.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Ce n2kBG_citizens.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/male_child.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/ly rs/Cen2kBG_age_lt18.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_nw_own.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/occ -house.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_other.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/owner_occ.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_lng_asn.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_black.lyr</Keyword> <Keyword>Extract Doc=http://maps.massgis.state.ma.us/avls/multi.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_asian.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_males.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_male_child.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/perc_mvote.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kB G_fem_adult.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_islnd.lyr</Keyword> <Keyword>ExtractDoc=http:// maps.massgis.state.ma.us/lyrs/Cen2kBG_females.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/white_own.avl</Keyword> <Keyword>ExtractDoc=http: //maps.massgis.state.ma.us/avls/med_g_rnt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/minor_prc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_not_citzen.lyr</Keyword> <Keyword>ExtractD oc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_native.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/inc_high.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_mu lti.lyr</Keyword> <Keyword>ExtractDo c=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_lng_other.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.st ate.ma.us/lyrs/Cen2kBG_hisp_latin.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/non_citzen.avl</Keyword> <Keyword>2000</Keyword> <Keyword>ExtractDoc=http://maps.massg is.state.ma.us/lyrs/Census2000_BlockGroups.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_gt_65.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_fem_senior.lyr</Keyword> <Keyword>ExtractDoc=http://map s.massgis.state.ma.us/lyrs/Cen2kBG_owner_occ.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_native.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/inc_med.avl</Keyword> <Keyword>Extract Doc=http://maps.massgis.state.ma.us/avls/inc_md_prc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_age_18_64.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_black.lyr</Keyword> <Keyword>ExtractDo c=http://maps.massgis.state.ma.us/avls/cen2kbg.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/rnt_in_prc.avl</Keyword> <Keyword>ExtractDoc=h ttp://maps.massgis.state.ma.us/lyrs/Cen2kBG_white_own.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/asian.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis. state.ma.us/avls/lng_noteng.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_fem_child.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/males.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lng_asn.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_other.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lng_span.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lng_engl.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_nw_rnt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_rnt_in_prc.lyr</Keyword> <Keyword>ExtractDoc=http://map s.massgis.state.ma.us/avls/fem_child.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma .us/lyrs/Cen2kBG_med_g_rnt.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/females.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/inc_low.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_renter_occ.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgi s.state.ma.us/lyrs/Cen2kBG_prc_gr_65.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_male_se nio.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massg is.state.ma.us/lyrs/Cen2kBG_native.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.m a.us/lyrs/Cen2kBG_age65_over.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/male_senio.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis .state.ma.us/lyrs/Cen2kBG_households.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state. ma.us/avls/age_18_64.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/total_pop.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/native. avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_low.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_high.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_p_islnder.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ln g_other.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_white_rnt. lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state. ma.us/lyrs/Cen2kBG_not_white.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/renter_occ. avl</Keyword> <Keyword>ExtractDoc=http ://maps.massgis.state.ma.us/avls/male_adult.avl</Keyword> <Keyword>E xtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_male_adult.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/inc_hi_prc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_hi_prc.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_p rc_w_own.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgi s.state.ma.us/avls/fem_senior.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_nwhite_own.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_lt_18.lyr</Keyword> <Keyword>Ext ractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_med.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_lng_engl.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.s tate.ma.us/avls/not_white.avl</Keyword> <Keyword>ExtractDoc=http ://maps.massgis.state.ma.us/lyrs/Cen2kBG_prc_hisp.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_nwhite_rnt.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_white.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prc_nw_own.avl</Keyword> <Keyword>Ex tractDoc=http://maps.massgis.state.ma.us/avls/prc_w_own.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/fem_adult.avl</Keyword> <Keyword>ExtractDoc=htt p://maps.massgis.state.ma.us/lyrs/Cen2kBG_lng_euro.lyr</Keyword> <Keyword>ExtractDoc=http://m aps.massgis.state.ma.us/avls/prc_black.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_occ_house.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nwhite_rnt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma .us/avls/lng_euro.avl</Keyword> <Keyword>ExtractDo c=http://maps.massgis.state.ma.us/avls/prc_w_rnt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/age_65_over.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cen2kBG_inc_lo_prc.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/white.avl</Keyword> <Keyword>GISDATA.CEN2000_BG_LEGATTRIB</Keyword> <Keyword>ExtractDoc=http://maps. massgis.state.ma.us/lyrs/Cen2kBG_other.lyr</Keyword> <Keyword>ExtractDoc=http://maps .massgis.state.ma.us/lyrs/Cen2kBG_lng_noteng.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/black.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.691" miny="777514.57" maxx="330846.231" maxy="959743.12"/> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentMulti</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberAsian</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalPopUnderAge18</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentHawaiianOrPI</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentIncLow</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentAsian</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalPop</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MedianGrossRent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MalesAge65AndOver</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentOther</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::M_F_BVS</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NonEnglishHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::IncHigh</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::Inc_Pies_3_Colors</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberAfricanAmerican</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::FemalePop</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::IncLow</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentIncHigh</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::FemalesAge65AndOver</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::OccupiedWhiteOwner</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::FemalesAge18AndOver</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentWhiteRenter</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::OccupiedNonWhiteRenter</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::IncMed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentNotUSCitizens</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MedianValueOwnerOccupied</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MalesAge18AndOver</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberRenterOccupied</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalPopAge18To64</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalOccupied</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberOwnerOccupied</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalPopAge65AndOlder</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::TotalHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentHispanicOrLatino</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberHawaiianOrPI</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::SpanishHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::FemalesAge18To64</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MalesAge18To64</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberOther</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NotUSCitizens</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentPopUnderAge18</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberNativeAmerican</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentMinorityNonWhite</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MalePop</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::M_F_Pies</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::Inc_Pies_3_Color_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::Inc_Pies</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentAfricanAmerican</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::OccupiedWhiteRenter</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::USCitizens</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberHispanicOrLatino</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::OtherHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::AsianHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::RentPercentIncome</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentNonWhiteOwner</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberMinorityNonWhite</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::EnglishHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentWhiteOwner</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::MalesUnderAge18</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::FemalesUnderAge18</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberCaucasian</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::OccupiedNonWhiteOwner</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentNonWhiteRenter</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::IndoEuroHouseholds</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::NumberMulti</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentNativeAmerican</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentIncMed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> <Style> <Name>GISDATA.CEN2000_BG_LEGATTRIB::PercentPopAge65AndOlder</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CEN2000_BG_LEGATTRIB"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS1990BLOCKGROUPS_POLY</Name> <Title>1990 U.S. Census Block Groups</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Groups</Keyword> <Keyword>U.S.</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen1990_blockgroups.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/CENSUS1990BLOCKGROUPS_POLY.xml</Keyword> <Keyword>Census</Keyword> <Keyword>1990</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Block</Keyword> <Keyword>GISDATA.CENSUS1990BLOCKGROUPS_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53324659576872" miny="41.18351438952338" maxx="-69.8312763721314" maxy="42.888185029032385"/> <BoundingBox SRS="EPSG:26986" minx="33869.63000000137" miny="772311.6899999836" maxx="336337.88000000385" maxy="959744.8799999886"/> <Style> <Name>GISDATA.CENSUS1990BLOCKGROUPS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS1990BLOCKGROUPS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS1990BLOCKS_POLY</Name> <Title>1990 U.S. Census Blocks</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>U.S.</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/CENSUS1990BLOCKS_POLY.xml</Keyword> <Keyword>GISDATA.CENSUS1990BLOCKS_POLY</Keyword> <Keyword>Census</Keyword> <Keyword>1990</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen1990_blocks.htm</Keyword> <Keyword>Blocks</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.56959424142057" miny="40.204141138365145" maxx="-69.86212863409563" maxy="43.911606745690094"/> <BoundingBox SRS="EPSG:26986" minx="33869.63439173074" miny="777211.9170861994" maxx="330846.1981978587" maxy="959744.8709103948"/> <Style> <Name>GISDATA.CENSUS1990BLOCKS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS1990BLOCKS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS1990TIGER_ARC</Name> <Title>Census 1990 TIGER Roads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Roads</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/CENSUS1990TIGER_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen1990_tiger.htm</Keyword> <Keyword>TIGER</Keyword> <Keyword>Census</Keyword> <Keyword>1990</Keyword> <Keyword>GISDATA.CENSUS1990TIGER_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.569" miny="40.204" maxx="-69.862" maxy="43.912"/> <BoundingBox SRS="EPSG:26986" minx="33869.63" miny="777211.92" maxx="330846.2" maxy="959744.87"/> <Style> <Name>GISDATA.CENSUS1990TIGER_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS1990TIGER_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS1990TIGER_ARC::Major_Roads</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS1990TIGER_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000BLOCKGROUPS_POLY</Name> <Title>Census 2000 Blockgroups</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_blockgroups.htm</Keyword> <Keyword>Blockgroups</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_BlockGroups.lyr</Keyword> <Keyword>GISDATA.CENSUS2000BLOCKGROUPS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2kbg.avl</Keyword> <Keyword>Census</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000BLOCKGROUPS_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.691" miny="777514.57" maxx="330846.231" maxy="959743.12"/> <Style> <Name>GISDATA.CENSUS2000BLOCKGROUPS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000BLOCKGROUPS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000BLOCKS_POLY</Name> <Title>Census 2000 Blocks</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Blocks.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_blocks.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2kblk.avl</Keyword> <Keyword>GISDATA.CENSUS2000BLOCKS_POLY</Keyword> <Keyword>Census</Keyword> <Keyword>Blocks</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000BLOCKS_POLY.xml</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.691" miny="777514.57" maxx="330846.231" maxy="959743.12"/> <Style> <Name>GISDATA.CENSUS2000BLOCKS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000BLOCKS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGERHYDRO_POLY</Name> <Title>Census 2000 Water Bodies</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Water_Features</Keyword> <Keyword>GISDATA.CENSUS2000TIGERHYDRO_POLY</Keyword> <Keyword>Bodies</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGERHYDRO_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2kpnd.avl</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49" miny="41.235" maxx="-69.918" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="37342.666" miny="777949.505" maxx="329249.656" maxy="958238.435"/> <Style> <Name>GISDATA.CENSUS2000TIGERHYDRO_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGERHYDRO_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC</Name> <Title>Census 2000 TIGER Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_TIGER_Roads_group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.stae.ma.us/avls/cen2krmn.avl</Keyword> <Keyword>Arcs</Keyword> <Keyword>TIGER</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2kstr.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Water_Features.lyr</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2krmj.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_tiger.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.144" maxx="-69.791" maxy="43.923"/> <BoundingBox SRS="EPSG:26986" minx="33869.692" miny="771850.911" maxx="336576.112" maxy="959743.121"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC::Rivers_Streams</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC_HYDRO</Name> <Title>Census 2000 TIGER Hydro</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC_HYDRO.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_tiger.htm</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC_HYDRO</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53324531919466" miny="41.17936700735544" maxx="-69.82836166619605" maxy="42.88817147913476"/> <BoundingBox SRS="EPSG:26986" minx="33869.69240584795" miny="771850.9109787233" maxx="336576.1124058517" maxy="959743.1209787322"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_HYDRO::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_HYDRO"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC_HYDRO_GEN</Name> <Title>Census 2000 TIGER Hydro Generalized</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Hydro</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC_HYDRO_GEN.xml</Keyword> <Keyword>TIGER</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC_HYDRO_GEN</Keyword> <Keyword>Census</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>Generalized</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.242" maxx="-69.936" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34829.182" miny="778831.377" maxx="327778.972" maxy="959699.687"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_HYDRO_GEN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_HYDRO_GEN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC_ROADS</Name> <Title>Census 2000 TIGER Roads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_tiger.htm</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC_ROADS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC_ROADS.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53324531919466" miny="41.17936700735544" maxx="-69.82836166619605" maxy="42.88817147913476"/> <BoundingBox SRS="EPSG:26986" minx="33869.69240584795" miny="771850.9109787233" maxx="336576.1124058517" maxy="959743.1209787322"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_ROADS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_ROADS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN</Name> <Title>Census 2000 Roads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Roads</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2krmn.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_TIGER_Roads_group.lyr</Keyword> <Keyword>Census</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN.xml</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.232" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34857.257" miny="777687.933" maxx="330774.187" maxy="959732.933"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_TRAINS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN::Major_Roads</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_ROADS_GEN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TIGER_ARC_TRAINS_GEN</Name> <Title>Census 2000 TIGER Trains Generalized</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>TIGER</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TIGER_ARC_TRAINS_GEN.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>GISDATA.CENSUS2000TIGER_ARC_TRAINS_GEN</Keyword> <Keyword>Generalized</Keyword> <Keyword>Trains</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.427" miny="41.51" maxx="-69.934" maxy="42.872"/> <BoundingBox SRS="EPSG:26986" minx="42523.438" miny="808373.007" maxx="328001.818" maxy="957912.027"/> <Style> <Name>GISDATA.CENSUS2000TIGER_ARC_TRAINS_GEN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TIGER_ARC_TRAINS_GEN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TOWNS_ARC</Name> <Title>Census 2000 MA Town Boundaries Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TOWNS_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2ktwa.avl</Keyword> <Keyword>Boundaries</Keyword> <Keyword>Town</Keyword> <Keyword>GISDATA.CENSUS2000TOWNS_ARC</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Towns_group.lyr</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.569" miny="40.205" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33869.69" miny="777514.558" maxx="330846.22" maxy="959743.128"/> <Style> <Name>GISDATA.CENSUS2000TOWNS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TOWNS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2000TOWNS_ARC::Dashed_Max_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TOWNS_POLY</Name> <Title>Census 2000 Town Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.CENSUS2000TOWNS_POLY</Keyword> <Keyword>Boundaries</Keyword> <Keyword>Town</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2ktwp.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TOWNS_POLY.xml</Keyword> <Keyword>Census</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Towns_group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.686" miny="777514.571" maxx="330846.226" maxy="959743.121"/> <Style> <Name>GISDATA.CENSUS2000TOWNS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2000TRACTS_POLY</Name> <Title>Census 2000 Tracts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.CENSUS2000TRACTS_POLY</Keyword> <Keyword>Tracts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CENSUS2000TRACTS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Census2000_Tracts.lyr</Keyword> <Keyword>Census</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2000.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cen2ktra.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.691" miny="777514.57" maxx="330846.231" maxy="959743.12"/> <Style> <Name>GISDATA.CENSUS2000TRACTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2000TRACTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010BLOCKGROUPS_POLY</Name> <Title>Census 2010 Block Groups</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010BLOCKGROUPS_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.57" maxx="330838.82" maxy="959743.227"/> <Style> <Name>GISDATA.CENSUS2010BLOCKGROUPS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010BLOCKGROUPS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010BLOCKS_POLY</Name> <Title>Census 2010 Blocks</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010BLOCKS_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.57" maxx="330838.82" maxy="959743.227"/> <Style> <Name>GISDATA.CENSUS2010BLOCKS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010BLOCKS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010TIGERROADS_ARC</Name> <Title>Census 2010 Roads</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010TIGERROADS_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.232" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34857.254" miny="777672.512" maxx="330774.198" maxy="959723.378"/> <Style> <Name>GISDATA.CENSUS2010TIGERROADS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TIGERROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2010TIGERROADS_ARC::Major_Roads</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TIGERROADS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010TOWNS_ARC</Name> <Title>Census 2010 Municipal Boundaries</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010TOWNS_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.57" maxx="330838.82" maxy="959743.227"/> <Style> <Name>GISDATA.CENSUS2010TOWNS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010TOWNS_POLY</Name> <Title>Census 2010 Municipalities</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010TOWNS_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.57" maxx="330838.82" maxy="959743.227"/> <Style> <Name>GISDATA.CENSUS2010TOWNS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2010TOWNS_POLY::POP2010_SQMI</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2010TOWNS_POLY::Town_Black_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CENSUS2010TOWNS_POLY::POPCHG00_10</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CENSUS2010TRACTS_POLY</Name> <Title>Census 2010 Tracts</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/census2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CENSUS2010TRACTS_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.57" maxx="330838.82" maxy="959743.227"/> <Style> <Name>GISDATA.CENSUS2010TRACTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CENSUS2010TRACTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHAPTER40R_DISTRICTS_POLY</Name> <Title>Chapter 40R Districts</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.272" miny="41.621" maxx="-70.672" maxy="42.845"/> <BoundingBox SRS="EPSG:26986" minx="55159.378" miny="820442.5" maxx="267659.014" maxy="954983.019"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHAPTER40R_DISTRICTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHAPTER40R_SUBDISTRICTS_POLY</Name> <Title>Chapter 40R Subdistricts</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.272" miny="41.621" maxx="-70.672" maxy="42.845"/> <BoundingBox SRS="EPSG:26986" minx="55159.378" miny="820442.5" maxx="267659.014" maxy="954982.903"/> <Style> <Name>GISDATA.CHAPTER40R_SUBDISTRICTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHAPTER40R_SUBDISTRICTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHAPTER43D_POLY</Name> <Title>Chapter 43D Districts</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.288" miny="41.603" maxx="-70.597" maxy="42.856"/> <BoundingBox SRS="EPSG:26986" minx="53846.572" miny="818515.537" maxx="273807.812" maxy="956105.362"/> <Style> <Name>Grey_Polys</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHAPTER43D_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHAPTER43E_DISTRICTS_POLY</Name> <Title>Chapter 43E Districts</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.246" miny="41.621" maxx="-70.909" maxy="42.705"/> <BoundingBox SRS="EPSG:26986" minx="56949.154" miny="820401.791" maxx="248399.314" maxy="939397.341"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHAPTER43E_DISTRICTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHCS_PT</Name> <Title>Community Health Centers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>GISDATA.CHCS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/chcs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/chcs_main.avl</Keyword> <Keyword>Health</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CHCS_PT.xml</Keyword> <Keyword>Centers</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Community_Health_Centers.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.392" miny="41.384" maxx="-69.973" maxy="42.716"/> <BoundingBox SRS="EPSG:26986" minx="44964.125" miny="794377.952" maxx="325080.59" maxy="940654.564"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHCS_PT::Satellite_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHCS_PT::Satellite</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHCS_PT::Main</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHCS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHCS_PT::Main_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHCS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHNA_ARC</Name> <Title>Community Health Network Areas Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Community_Health_Network_Areas.lyr</Keyword> <Keyword>Community</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/CHNA_ARC.avl</Keyword> <Keyword>Network</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/chna.htm</Keyword> <Keyword>Boundaries</Keyword> <Keyword>Areas</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CHNA_ARC.xml</Keyword> <Keyword>Health</Keyword> <Keyword>GISDATA.CHNA_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777606.376" maxx="330836.968" maxy="959743.061"/> <Style> <Name>GISDATA.CHNA_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHNA_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CHNA_POLY</Name> <Title>Community Health Network Areas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Community_Health_Network_Areas.lyr</Keyword> <Keyword>Community</Keyword> <Keyword>GISDATA.CHNA_POLY</Keyword> <Keyword>Network</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/chna.htm</Keyword> <Keyword>Areas</Keyword> <Keyword>Health</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CHNA_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/CHNA_POLY.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777606.376" maxx="330836.968" maxy="959743.061"/> <Style> <Name>GISDATA.CHNA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHNA_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CHNA_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CHNA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COAST25K_ARC</Name> <Title>Coast 25K Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>25K</Keyword> <Keyword>GISDATA.COAST25K_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>Coast</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COAST25K_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cs.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.376" miny="41.115" maxx="-69.826" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="210417.89" miny="764090.19" maxx="336517.44" maxy="972430.5"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COAST25K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COLLEGES_PT</Name> <Title>Colleges and Universities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Colleges_and_Universities.lyr</Keyword> <Keyword>Colleges</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colleges.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COLLEGES_PT.xml</Keyword> <Keyword>Universities</Keyword> <Keyword>GISDATA.COLLEGES_PT</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/colleges_pt.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.398" miny="41.292" maxx="-70.002" maxy="42.797"/> <BoundingBox SRS="EPSG:26986" minx="44682.874" miny="784104.371" maxx="322537.094" maxy="949607.271"/> <Style> <Name>GISDATA.COLLEGES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COLLEGES_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.COLLEGES_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COLLEGES_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.COLLEGES_PT::Buildings_Max_30000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COLLEGES_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.COLLEGES_PT::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COLLEGES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONGRESS108_ARC</Name> <Title>US House Voting Districts 108th Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>US</Keyword> <Keyword>108th</Keyword> <Keyword>Arcs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cong108a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONGRESS108_ARC.xml</Keyword> <Keyword>GISDATA.CONGRESS108_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/US_House_Voting_Districts_108th.lyr</Keyword> <Keyword>Districts</Keyword> <Keyword>House</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cong108.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Voting</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.257" miny="777514.314" maxx="330846.097" maxy="959747.434"/> <Style> <Name>GISDATA.CONGRESS108_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONGRESS108_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONGRESS108_POLY</Name> <Title>US House Voting Districts 108th</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>US</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONGRESS108_POLY.xml</Keyword> <Keyword>108th</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/US_House_Voting_Districts_108th.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cong108p.avl</Keyword> <Keyword>Districts</Keyword> <Keyword>House</Keyword> <Keyword>GISDATA.CONGRESS108_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cong108.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Voting</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.CONGRESS108_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONGRESS108_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONGRESS113_ARC</Name> <Title>US Congressional Districts 113th Arcs</Title> <Abstract/> <KeywordList> <Keyword/> <Keyword/> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cong113.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONGRESS113_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.CONGRESS113_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONGRESS113_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONGRESS113_POLY</Name> <Title>US Congressional Districts 113th Polys</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cong113.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONGRESS113_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33869.696" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.CONGRESS113_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONGRESS113_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONGRESS113_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONGRESS113_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONTOURS250K_ARC</Name> <Title>Contours 30ft Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONTOURS250K_ARC.xml</Keyword> <Keyword>30ft</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hp250k.htm</Keyword> <Keyword>GISDATA.CONTOURS250K_ARC</Keyword> <Keyword>Lines</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/connum1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/30_Foot_Contours.lyr</Keyword> <Keyword>Contours</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.235" maxx="-69.961" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33874.42" miny="778055.94" maxx="325713.81" maxy="959744.81"/> <Style> <Name>GISDATA.CONTOURS250K_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS250K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS250K_ARC::Dark_Orange_and_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS250K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS250K_ARC::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS250K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CONTOURS5K_ARC</Name> <Title>Contours 3m Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Lines</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CONTOURS5K_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/connum1a.avl</Keyword> <Keyword>Contours</Keyword> <Keyword>GISDATA.CONTOURS5K_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/3_Meter_Contours.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hp.htm</Keyword> <Keyword>3m</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.581" miny="40.211" maxx="-69.863" maxy="43.929"/> <BoundingBox SRS="EPSG:26986" minx="33000.0" miny="777636.31" maxx="330764.66" maxy="962000.0"/> <Style> <Name>GISDATA.CONTOURS5K_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS5K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS5K_ARC::15000_to_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS5K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS5K_ARC::Labels_Meters</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS5K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS5K_ARC::Labels_Feet</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS5K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.CONTOURS5K_ARC::25000_to_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CONTOURS5K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQ2008INDEX_POLY</Name> <Title>USGS Color Orthos 2008 30cm Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COQ2008INDEX_POLY.xml</Keyword> <Keyword>2008</Keyword> <Keyword>Tiles</Keyword> <Keyword>by</Keyword> <Keyword>30cm</Keyword> <Keyword>Orthos</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/coq2008index_poly.avl</Keyword> <Keyword>Color</Keyword> <Keyword>Index</Keyword> <Keyword>Resolution.lyr</Keyword> <Keyword>GISDATA.COQ2008INDEX_POLY</Keyword> <Keyword>MassgisMetaataUrl=http://www.mass.gov/mgis/coq08ix.htm</Keyword> <Keyword>Ortho</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/2008</Keyword> <Keyword>USGS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.76947211633443" miny="41.85804310629962" maxx="-70.50255157534235" maxy="42.888549036297384"/> <BoundingBox SRS="EPSG:26986" minx="177986.43619999898" miny="845771.0247999819" maxx="281486.43620000046" maxy="959771.024799988"/> <Style> <Name>GISDATA.COQ2008INDEX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQ2008INDEX_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQHMOSAICSCDS_POLY</Name> <Title>Color Orthophotos 2001 Half Meter MrSID Mosaics Index CDs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.COQHMOSAICSCDS_POLY</Keyword> <Keyword>Meter</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COQHMOSAICSCDS_POLY.xml</Keyword> <Keyword>CDs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>Color</Keyword> <Keyword>MrSID</Keyword> <Keyword>Index</Keyword> <Keyword>Mosaics</Keyword> <Keyword>Half</Keyword> <Keyword>Orthophotos</Keyword> <Keyword>2001</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="32999.992" miny="773999.99" maxx="332999.992" maxy="961999.99"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQHMOSAICSCDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQHMOSAICSDVDS_POLY</Name> <Title>2001 MrSID Mosaics DVD Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MrSID</Keyword> <Keyword>Index</Keyword> <Keyword>GISDATA.COQHMOSAICSDVDS_POLY</Keyword> <Keyword>Mosaics</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>2001</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DVD</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.5445473560914" miny="41.19852826109202" maxx="-69.87159391720012" maxy="42.90844054692874"/> <BoundingBox SRS="EPSG:26986" minx="32999.99196889176" miny="773999.9899583012" maxx="332999.99173628644" maxy="961999.9896213954"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQHMOSAICSDVDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQHMOSAICS_POLY</Name> <Title>Color Orthophotos 2001 Half Meter MrSID Mosaics Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Meter</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/coqhmos.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Color_Half_Meter_MrSID_Mosaics.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>GISDATA.COQHMOSAICS_POLY</Keyword> <Keyword>Color</Keyword> <Keyword>MrSID</Keyword> <Keyword>Index</Keyword> <Keyword>Mosaics</Keyword> <Keyword>Half</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COQHMOSAICS_POLY.xml</Keyword> <Keyword>Orthophotos</Keyword> <Keyword>2001</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="32999.996" miny="773999.994" maxx="332999.996" maxy="961999.994"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQHMOSAICS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQMAIN_POLY</Name> <Title>Coastal Color Orthos 10k Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Color_10K_Orthos_Index.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COQMAIN_POLY.xml</Keyword> <Keyword>Index</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqmain.htm</Keyword> <Keyword>GISDATA.COQMAIN_POLY</Keyword> <Keyword>Coastal</Keyword> <Keyword>10k</Keyword> <Keyword>Orthos</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/coqmind.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Color</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.429" miny="41.188" maxx="-69.692" maxy="42.925"/> <BoundingBox SRS="EPSG:26986" minx="220999.995" miny="773999.995" maxx="332999.995" maxy="961999.995"/> <Style> <Name>GISDATA.COQMAIN_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQMAIN_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.COQMAIN_POLY::Green</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQMAIN_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQMOSAICS2005_POLY</Name> <Title>2005 MrSID Mosaics Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MrSID</Keyword> <Keyword>Index</Keyword> <Keyword>2005</Keyword> <Keyword>Mosaics</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>GISDATA.COQMOSAICS2005_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54454725935949" miny="41.198528354311854" maxx="-69.87159381508812" maxy="42.9084406386197"/> <BoundingBox SRS="EPSG:26986" minx="33000.000116786076" miny="774000.0001249018" maxx="332999.9998841888" maxy="961999.9997879972"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQMOSAICS2005_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQMOSAICSCDS2005_POLY</Name> <Title>2005 MrSID Mosaics CD-ROM Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MrSID</Keyword> <Keyword>Index</Keyword> <Keyword>2005</Keyword> <Keyword>Mosaics</Keyword> <Keyword>CD-ROM</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>GISDATA.COQMOSAICSCDS2005_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54454720951361" miny="41.198528361753404" maxx="-69.87159376182157" maxy="42.90844064832557"/> <BoundingBox SRS="EPSG:26986" minx="33000.00421539493" miny="774000.0008559828" maxx="333000.0042153981" maxy="962000.0008559898"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQMOSAICSCDS2005_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COQMOSAICSDVDS2005_POLY</Name> <Title>2005 MrSID Mosaics DVD Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MrSID</Keyword> <Keyword>GISDATA.COQMOSAICSDVDS2005_POLY</Keyword> <Keyword>Index</Keyword> <Keyword>2005</Keyword> <Keyword>Mosaics</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coqhmos.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DVD</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54454720951361" miny="41.198528361753404" maxx="-69.87159376182157" maxy="42.90844064832557"/> <BoundingBox SRS="EPSG:26986" minx="33000.00421539493" miny="774000.0008559828" maxx="333000.0042153981" maxy="962000.0008559898"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COQMOSAICSDVDS2005_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COUNTIES_ARC</Name> <Title>County Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>County</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/tmbmbcnt.avl</Keyword> <Keyword>GISDATA.COUNTIES_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/counties.htm</Keyword> <Keyword>Counties</Keyword> <Keyword>Boundaries</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COUNTIES_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/County_Arc_Outlines.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.COUNTIES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.COUNTIES_ARC::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.COUNTIES_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COUNTIES_POLY</Name> <Title>Counties</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cntnum1p.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/counties.htm</Keyword> <Keyword>GISDATA.COUNTIES_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COUNTIES_POLY.xml</Keyword> <Keyword>Counties</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/County_Poly_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.COUNTIES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.COUNTIES_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.COUNTIES_POLY::Shaded</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.COUNTIES_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COUNTIES_POLYM</Name> <Title>Massachusetts County Boundaries</Title> <Abstract>Generated from massgis_sde Massachusetts County Boundaries one polygon per county</Abstract> <KeywordList> <Keyword>County</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/counties.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COUNTIES_POLYM.xml</Keyword> <Keyword>Boundaries</Keyword> <Keyword>GISDATA.COUNTIES_POLYM</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334974308021" miny="41.230340697274194" maxx="-69.89847706978112" maxy="42.888150267366264"/> <BoundingBox SRS="EPSG:26986" minx="33861.25999391763" miny="777514.3099786302" maxx="330846.08999993873" maxy="959747.4400297498"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTIES_POLYM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.COUNTYNC_POLY</Name> <Title>Counties No Coast</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.COUNTYNC_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/counties.htm</Keyword> <Keyword>Counties</Keyword> <Keyword>Coast</Keyword> <Keyword>No</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.COUNTYNC_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.145" maxx="-69.794" maxy="43.922"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="771781.31" maxx="336337.88" maxy="959747.44"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.COUNTYNC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CSTZONE_ARC</Name> <Title>Coastal Zone Arcs</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cstzone_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CSTZONE_ARC.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.343" miny="41.187" maxx="-69.83" maxy="42.879"/> <BoundingBox SRS="EPSG:26986" minx="213189.344" miny="772062.504" maxx="336460.464" maxy="958708.483"/> <Style> <Name>GISDATA.CSTZONE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CSTZONE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CSTZONE_POLY</Name> <Title>Coastal Zone</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Coastal_Zone.lyr</Keyword> <Keyword>GISDATA.CSTZONE_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cstzone_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cstzone_poly.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_CSTZONE_POLY.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.343" miny="41.187" maxx="-69.83" maxy="42.879"/> <BoundingBox SRS="EPSG:26986" minx="213189.344" miny="772062.501" maxx="336460.464" maxy="958708.481"/> <Style> <Name>GISDATA.CSTZONE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CSTZONE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CTTOWNS_ARC</Name> <Title>Connecticut Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CTTOWNS_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>GISDATA.CTTOWNS_ARC</Keyword> <Keyword>Towns</Keyword> <Keyword>Connecticut</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.761" miny="40.949" maxx="-71.784" maxy="42.067"/> <BoundingBox SRS="EPSG:26986" minx="12844.18" miny="746752.5" maxx="176074.78" maxy="868502.63"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CTTOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CTTOWNS_POLY</Name> <Title>Connecticut Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/CT_Towns.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cttdef1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CTTOWNS_POLY.xml</Keyword> <Keyword>GISDATA.CTTOWNS_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>Towns</Keyword> <Keyword>Connecticut</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.781" miny="40.5" maxx="-71.764" maxy="42.516"/> <BoundingBox SRS="EPSG:26986" minx="12844.18" miny="746752.5" maxx="176074.78" maxy="868502.63"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CTTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CTTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.CTTOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CTTOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CVP_PT</Name> <Title>NHESP Certified Vernal Pools</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>NHESP</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cvp.htm</Keyword> <Keyword>Certified</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Certified_Vernal_Pools.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cvp1p.avl</Keyword> <Keyword>GISDATA.CVP_PT</Keyword> <Keyword>Pools</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CVP_PT.xml</Keyword> <Keyword>Vernal</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.441" miny="41.267" maxx="-69.92" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="34456.75" miny="781370.837" maxx="329087.283" maxy="958316.367"/> <Style> <Name>GISDATA.CVP_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CVP_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.CVP_PT::Depgis_Pink_Salamander_Max25k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CVP_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZMSHEET_POLY</Name> <Title>CZM Sheet Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/csheet.htm</Keyword> <Keyword>GISDATA.CZMSHEET_POLY</Keyword> <Keyword>CZM</Keyword> <Keyword>Sheet</Keyword> <Keyword>Index</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/czmleg1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.CZMSHEET_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/CZM_Sheets_Polygons.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.214" miny="41.223" maxx="-69.884" maxy="42.89"/> <BoundingBox SRS="EPSG:26986" minx="224000.0" miny="776000.0" maxx="332000.0" maxy="960000.0"/> <Style> <Name>GISDATA.CZMSHEET_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZMSHEET_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_CONTEMP_HIGHWATER</Name> <Title>Tidelands Jurisdiction (Chapter 91) Contemporary High Water</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_CONTEMP_HIGHWATER.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.23" miny="41.238" maxx="-69.916" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="222590.301" miny="777605.673" maxx="329414.157" maxy="958242.846"/> <Style> <Name>GISDATA.CZM_CONTEMP_HIGHWATER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_CONTEMP_HIGHWATER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_CONTEMP_MARSH</Name> <Title>Tidelands Jurisdiction (Chapter 91) Marsh Boundary – Seaward</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_CONTEMP_MARSH.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.246" miny="41.269" maxx="-69.91" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="221301.01" miny="781057.349" maxx="329938.984" maxy="958054.479"/> <Style> <Name>GISDATA.CZM_CONTEMP_MARSH::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_CONTEMP_MARSH"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_HISTORIC_HIGHWATER</Name> <Title>Tidelands Jurisdiction (Chapter 91) Historic Highwater</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_HISTORIC_HIGHWATER.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.233" miny="41.24" maxx="-69.911" maxy="42.865"/> <BoundingBox SRS="EPSG:26986" minx="222401.107" miny="777803.691" maxx="329870.743" maxy="957227.91"/> <Style> <Name>GISDATA.CZM_HISTORIC_HIGHWATER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_HISTORIC_HIGHWATER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_INFERRED_CONTEMP</Name> <Title>Tidelands Jurisdiction (Chapter 91) Inferred Contemporary High Water</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_INFERRED_CONTEMP.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.239" miny="41.269" maxx="-69.911" maxy="42.851"/> <BoundingBox SRS="EPSG:26986" minx="221880.994" miny="781076.792" maxx="329859.933" maxy="955675.273"/> <Style> <Name>GISDATA.CZM_INFERRED_CONTEMP::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_INFERRED_CONTEMP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_INFERRED_HISTORIC</Name> <Title>Tidelands Jurisdiction (Chapter 91) Inferred Historic High Water</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_INFERRED_HISTORIC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.229" miny="41.275" maxx="-69.922" maxy="42.852"/> <BoundingBox SRS="EPSG:26986" minx="222671.4" miny="781760.253" maxx="328997.975" maxy="955717.028"/> <Style> <Name>GISDATA.CZM_INFERRED_HISTORIC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_INFERRED_HISTORIC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_JURISDICTION</Name> <Title>Tidelands Jurisdiction (Chapter 91) Jurisdiction</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_JURISDICTION.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.233" miny="41.24" maxx="-69.911" maxy="42.866"/> <BoundingBox SRS="EPSG:26986" minx="222401.107" miny="777803.691" maxx="329870.743" maxy="957347.936"/> <Style> <Name>GISDATA.CZM_JURISDICTION::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_JURISDICTION"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_LANDLOCK</Name> <Title>Tidelands Jurisdiction (Chapter 91) Landlocked Tidelands</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_LANDLOCK.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.211" miny="41.282" maxx="-70.016" maxy="42.825"/> <BoundingBox SRS="EPSG:26986" minx="224169.745" miny="782354.587" maxx="321376.645" maxy="952774.179"/> <Style> <Name>GISDATA.CZM_LANDLOCK::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_LANDLOCK"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_MARSHPERIMETER</Name> <Title>Tidelands Jurisdiction (Chapter 91) Marsh Boundary – Landward</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_MARSHPERIMETER.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.214" miny="41.269" maxx="-69.911" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="223955.953" miny="781044.969" maxx="329872.156" maxy="958146.0"/> <Style> <Name>GISDATA.CZM_MARSHPERIMETER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_MARSHPERIMETER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.CZM_PUBLICWAY</Name> <Title>Tidelands Jurisdiction (Chapter 91) Public Way</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/tidelands.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.CZM_PUBLICWAY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.212" miny="41.281" maxx="-69.94" maxy="42.826"/> <BoundingBox SRS="EPSG:26986" minx="224087.764" miny="782326.453" maxx="327574.053" maxy="952862.7"/> <Style> <Name>GISDATA.CZM_PUBLICWAY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.CZM_PUBLICWAY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DAMS_PT</Name> <Title>Dams</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dams.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DAMS_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.495" miny="41.339" maxx="-69.973" maxy="42.867"/> <BoundingBox SRS="EPSG:26986" minx="36932.352" miny="789461.962" maxx="324781.306" maxy="957356.794"/> <Style> <Name>GISDATA.DAMS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DAMS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DCAM_FAC_20101216</Name> <Title>DCAM State Facilities</Title> <Abstract/> <KeywordList> <Keyword>DCAM</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.498" miny="41.257" maxx="-69.981" maxy="42.863"/> <BoundingBox SRS="EPSG:26986" minx="36714.312" miny="780409.516" maxx="324130.756" maxy="957002.204"/> <Style> <Name>GISDATA.DCAM_FAC_20101216::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCAM_FAC_20101216"/> </LegendURL> </Style> <Style> <Name>GISDATA.DCAM_FAC_20101216::Max_20000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCAM_FAC_20101216"/> </LegendURL> </Style> <Style> <Name>GISDATA.DCAM_FAC_20101216::Min_20000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCAM_FAC_20101216"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DCRPOOLS_PT</Name> <Title>DCR Pools Open</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Open</Keyword> <Keyword>DCR</Keyword> <Keyword>GISDATA.DCRPOOLS_PT</Keyword> <Keyword>Pools</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DCR_Pools.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DCRPOOLS_PT.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pools.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.65944731012763" miny="41.687133705128076" maxx="-70.88819623642213" maxy="42.70866505889935"/> <BoundingBox SRS="EPSG:26986" minx="105005.89092124204" miny="826955.0535213358" maxx="250123.1664052766" maxy="939786.1304987369"/> <Style> <Name>GISDATA.DCRPOOLS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCRPOOLS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DCR_POOLS_PLUS</Name> <Title>DCR Pools Plus</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.659" miny="41.687" maxx="-70.888" maxy="42.709"/> <BoundingBox SRS="EPSG:26986" minx="105005.891" miny="826955.054" maxx="250123.166" maxy="939786.13"/> <Style> <Name>GISDATA.DCR_POOLS_PLUS::13x13_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCR_POOLS_PLUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DCR_RINKS_PLUS</Name> <Title>DCR Rinks Plus</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.103" miny="41.638" maxx="-70.645" maxy="42.81"/> <BoundingBox SRS="EPSG:26986" minx="68886.184" miny="822091.621" maxx="269921.294" maxy="951020.841"/> <Style> <Name>GISDATA.DCR_RINKS_PLUS::13x13_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCR_RINKS_PLUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DCSITE98_PT</Name> <Title>USGS Data Collection Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Collection</Keyword> <Keyword>Data</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dcsite98.htm</Keyword> <Keyword>Stations</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/dcsite.avl</Keyword> <Keyword>USGS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DCSITE98_PT.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_dc_stat.lyr</Keyword> <Keyword>GISDATA.DCSITE98_PT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.491" miny="41.535" maxx="-70.081" maxy="42.872"/> <BoundingBox SRS="EPSG:26986" minx="37319.77" miny="811330.56" maxx="315949.66" maxy="957973.19"/> <Style> <Name>GISDATA.DCSITE98_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DCSITE98_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DEVZN_POLY_O</Name> <Title>Potentially Developable Land by Zoning</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Zoning</Keyword> <Keyword>Developable</Keyword> <Keyword>GISDATA.DEVZN_POLY_O</Keyword> <Keyword>Potentially</Keyword> <Keyword>Land</Keyword> <Keyword>by</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334942199794" miny="41.23380434092614" maxx="-69.89847696178074" maxy="42.888150814174786"/> <BoundingBox SRS="EPSG:26986" minx="33861.287685854506" miny="777899.1207326249" maxx="330846.09768586035" maxy="959747.5007326313"/> <Style> <Name>GISDATA.DEVZN_POLY_X::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DEVZN_POLY_O"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DEVZN_POLY_X</Name> <Title>Developed or Absolutely Constratined Land used in Buildout Maps</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.DEVZN_POLY_X</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334942199858" miny="41.23380434092647" maxx="-69.89847696178138" maxy="42.88815081417511"/> <BoundingBox SRS="EPSG:26986" minx="33861.28768580404" miny="777899.1207326603" maxx="330846.09768580657" maxy="959747.5007326696"/> <Style> <Name>GISDATA.DEVZN_POLY_X::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DEVZN_POLY_X"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DFWDISTRICTS_ARC</Name> <Title>DFW Districts Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DFWDISTRICTS_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DFW_Districts.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/dfwdistricts_arc.avl</Keyword> <Keyword>Wildlife</Keyword> <Keyword>Arcs</Keyword> <Keyword>GISDATA.DFWDISTRICTS_ARC</Keyword> <Keyword>and</Keyword> <Keyword>of</Keyword> <Keyword>DFW</Keyword> <Keyword>Fisheries</Keyword> <Keyword>Division</Keyword> <Keyword>Districts</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dfwdistricts.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="777514.313" maxx="330846.063" maxy="959747.437"/> <Style> <Name>GISDATA.DFWDISTRICTS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DFWDISTRICTS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DFWDISTRICTS_POLY</Name> <Title>DFW Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DFW_Districts.lyr</Keyword> <Keyword>Wildlife</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DFWDISTRICTS_POLY.xml</Keyword> <Keyword>and</Keyword> <Keyword>of</Keyword> <Keyword>DFW</Keyword> <Keyword>Division</Keyword> <Keyword>Districts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/dfwdistricts_poly.avl</Keyword> <Keyword>GISDATA.DFWDISTRICTS_POLY</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dfwdistricts.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="777514.313" maxx="330846.063" maxy="959747.437"/> <Style> <Name>GISDATA.DFWDISTRICTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DFWDISTRICTS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.DFWDISTRICTS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DFWDISTRICTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_101_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Single Family</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.496" miny="41.235" maxx="-69.912" maxy="42.884"/> <BoundingBox SRS="EPSG:26986" minx="36939.631" miny="777933.494" maxx="329758.95" maxy="959310.507"/> <Style> <Name>GISDATA.DOR_LA3_101_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_101_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_102_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Condominium</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.396" miny="41.248" maxx="-69.912" maxy="42.876"/> <BoundingBox SRS="EPSG:26986" minx="45052.447" miny="779169.87" maxx="329737.067" maxy="958419.052"/> <Style> <Name>GISDATA.DOR_LA3_102_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_102_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_103_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Mobile Home</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.389" miny="41.593" maxx="-70.811" maxy="42.884"/> <BoundingBox SRS="EPSG:26986" minx="45642.098" miny="817540.017" maxx="256293.172" maxy="959309.055"/> <Style> <Name>GISDATA.DOR_LA3_103_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_103_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_104_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Two Family</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.419" miny="41.237" maxx="-69.923" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="43209.493" miny="778070.001" maxx="328881.96" maxy="958102.609"/> <Style> <Name>GISDATA.DOR_LA3_104_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_104_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_105_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Three Family</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.391" miny="41.26" maxx="-69.923" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="45419.548" miny="780537.317" maxx="328845.61" maxy="958105.194"/> <Style> <Name>GISDATA.DOR_LA3_105_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_105_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_NOT_101_TO_105_PT</Name> <Title>Massachusetts Real Property Verified Market Sales Other</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.481" miny="41.234" maxx="-69.913" maxy="42.884"/> <BoundingBox SRS="EPSG:26986" minx="38157.821" miny="777860.676" maxx="329635.017" maxy="959260.422"/> <Style> <Name>GISDATA.DOR_LA3_NOT_101_TO_105_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_NOT_101_TO_105_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DOR_LA3_PT</Name> <Title>Massachusetts Real Property Verified Market Sales</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.496" miny="41.234" maxx="-69.912" maxy="42.884"/> <BoundingBox SRS="EPSG:26986" minx="36939.631" miny="777860.676" maxx="329758.95" maxy="959310.507"/> <Style> <Name>GISDATA.DOR_LA3_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DOR_LA3_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DSGA_POLY</Name> <Title>Designated Shellfish Growing Areas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Shellfish_Growing_Areas.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dsga.htm</Keyword> <Keyword>GISDATA.DSGA_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DSGA_POLY.xml</Keyword> <Keyword>Designated</Keyword> <Keyword>Shellfish</Keyword> <Keyword>Growing</Keyword> <Keyword>Areas</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.288" miny="41.187" maxx="-69.83" maxy="42.879"/> <BoundingBox SRS="EPSG:26986" minx="217768.328" miny="772062.503" maxx="336460.465" maxy="958709.756"/> <Style> <Name>GISDATA.DSGA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DSGA_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.DSGA_POLY::Hatched</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DSGA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.DWMSTATIONS_PT</Name> <Title>DEP Water Quality Stations</Title> <Abstract>Generated from massgis_sde </Abstract> <KeywordList> <Keyword>GISDATA.DWMSTATIONS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/dwm_stat.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.DWMSTATIONS_PT.xml</Keyword> <Keyword>Stations</Keyword> <Keyword>Quality</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/dwmstat1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Water_Quality_Stations.lyr</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.18337865901222" miny="41.62186856433067" maxx="-70.60170849900514" maxy="42.74847267326472"/> <BoundingBox SRS="EPSG:26986" minx="62157.809999998455" miny="820407.3799999825" maxx="273549.0900000015" maxy="944208.7499999881"/> <Style> <Name>GISDATA.DWMSTATIONS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.DWMSTATIONS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ECOREGIONS_2010</Name> <Title>NHESP Ecoregions</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/metadata/GISDATA.ECOREGIONS_2010.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.ECOREGIONS_2010::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ECOREGIONS_2010"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ECOREGIONS_ARC</Name> <Title>Ecoregions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Ecoregions_group.lyr</Keyword> <Keyword>GISDATA.ECOREGIONS_ARC</Keyword> <Keyword>Ecoregions</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ecorega1.avl</Keyword> <Keyword>Arcs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ECOREGIONS_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eco-reg.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.ECOREGIONS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ECOREGIONS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ECOREGIONS_POLY</Name> <Title>Ecoregions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Eelgrass</Keyword> <Keyword>GISDATA.ECOREGIONS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Ecoregions_group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ecoregp2.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ecoregp1.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eco-reg.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ECOREGIONS_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.ECOREGIONS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ECOREGIONS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ECOREGIONS_POLY::Transitional_Areas</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ECOREGIONS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EELGRASS2006_7_POLY</Name> <Title>DEP Eelgrass for Selected Embayments</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eelgrass0607.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EELGRASS2006_7_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Seagrass_0607.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.104" miny="41.272" maxx="-69.907" maxy="42.679"/> <BoundingBox SRS="EPSG:26986" minx="233201.035" miny="781351.852" maxx="330584.558" maxy="936543.761"/> <Style> <Name>GISDATA.EELGRASS2006_7_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EELGRASS2006_7_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EELGRASS_POLY</Name> <Title>DEP Eelgrass</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Eelgrass</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Seagrass.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/egrasp1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EELGRASS_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eelgrass.htm</Keyword> <Keyword>Seagrass</Keyword> <Keyword>GISDATA.EELGRASS_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.117" miny="41.269" maxx="-69.907" maxy="42.677"/> <BoundingBox SRS="EPSG:26986" minx="232125.875" miny="781102.625" maxx="330605.875" maxy="936366.125"/> <Style> <Name>GISDATA.EELGRASS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EELGRASS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.EELGRASS_POLY::Eelgrass_Only</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EELGRASS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.EELGRASS_POLY::Year_Mapped</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EELGRASS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.EELGRASS_POLY::1995_Mapping</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EELGRASS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EJ_POLY</Name> <Title>Environmental Justice Populations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Environmental</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Environmental_Justice.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cen2000_ej.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EJ_POLY.xml</Keyword> <Keyword>Justice</Keyword> <Keyword>GISDATA.EJ_POLY</Keyword> <Keyword>Populations</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ejpoly.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.289" miny="41.236" maxx="-69.961" maxy="42.859"/> <BoundingBox SRS="EPSG:26986" minx="53771.067" miny="777703.247" maxx="325800.817" maxy="956451.717"/> <Style> <Name>GISDATA.EJ_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EJ_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EOTMAJROADS_ARC</Name> <Title>EOT Major Roads</Title> <Abstract>Generated from sun420</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajrdz.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajrdat.avl</Keyword> <Keyword>GISDATA.EOTMAJROADS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotrdshp3.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajrdshp2.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_Roads_AdminType_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajrdshp1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_MajorRoads_AdminType_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotrdshp4.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EOTMAJROADS_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eotroads.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_MajorRoads_Class_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajrdcd.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_Roads_Class_Group.lyr</Keyword> <Keyword>sun420</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.255" maxx="-69.91" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="34847.156" miny="780218.437" maxx="329932.687" maxy="959485.53"/> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_Ramps</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Shields_Max_300000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Alternate_Route_Nums</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap3_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Class_Min_15000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_Tunnels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Admin_Max_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Admin_Max_400000_Grey</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Admin_50000_to_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_Tunnels_c</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_Tunnels_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Admin</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap2_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_ARC::Basemap_Shields</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EOTMAJROADS_RTE_MAJOR</Name> <Title>Major EOT-OTP Routes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>EOT-OTP</Keyword> <Keyword>Major</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotmajroads_rte_major.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eotroads.htm</Keyword> <Keyword>GISDATA.EOTMAJROADS_RTE_MAJOR</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EOTMAJROADS_RTE_MAJOR.xml</Keyword> <Keyword>Routes</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Major_EOT_OTP_Routes_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.428" miny="41.54" maxx="-69.926" maxy="42.883"/> <BoundingBox SRS="EPSG:26986" minx="42454.869" miny="811706.187" maxx="328615.531" maxy="959157.967"/> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap2_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Shields</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap3_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Shields_2_cat</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Min_400000_Max_800000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Depgis_Min200k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Basemap_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTMAJROADS_RTE_MAJOR::Min_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTMAJROADS_RTE_MAJOR"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EOTROADS_ARC</Name> <Title>EOT Roads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotrdclass.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EOTROADS_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/eotrdadmin.avl</Keyword> <Keyword>GISDATA.EOTROADS_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eotroads.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OPT_Roads_AdminType_Group.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_Roads_Class_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.529" miny="41.232" maxx="-69.91" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34175.913" miny="777674.625" maxx="329932.687" maxy="959742.96"/> <Style> <Name>GISDATA.EOTROADS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Class_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap4_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Depgis_Max200k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Tunnels_c</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap2_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap4</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Shields</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Class</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Tunnels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Admin</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Shields</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Tunnels_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Ramps</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Admin_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap3_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_b</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.EOTROADS_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EOTROADS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ESTHAB_POLY</Name> <Title>NHESP Estimated Habitats of Rare Wildlife</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Rare</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ESTHAB_POLY.xml</Keyword> <Keyword>Estimated</Keyword> <Keyword>Wildlife</Keyword> <Keyword>GISDATA.ESTHAB_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Rare_Wildlife_Habitat.lyr</Keyword> <Keyword>NHESP</Keyword> <Keyword>of</Keyword> <Keyword>Habitats</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/esthab.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/whab1p.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.215" maxx="-69.83" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="775788.395" maxx="336458.605" maxy="958303.771"/> <Style> <Name>GISDATA.ESTHAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ESTHAB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ESTHAB_POLY::Depgis_Birds_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ESTHAB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ESTHAB_POLY::Green_Dash_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ESTHAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.EXITS_PT</Name> <Title>Highway Exits</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.EXITS_PT</Keyword> <Keyword>Highway</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.EXITS_PT.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/exits_rtes.htm</Keyword> <Keyword>Exits</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/exits.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EOT_OTP_Roads_Class_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.382" miny="41.623" maxx="-69.958" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="46187.58" miny="820829.56" maxx="325986.88" maxy="958285.56"/> <Style> <Name>GISDATA.EXITS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EXITS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.EXITS_PT_Depgis::Exits_Max75k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EXITS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.EXITS_PT::15000_to_250000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.EXITS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.FEMA_NFHL_POLY</Name> <Title>FEMA National Flood Hazard Layer</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nfhl.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.FEMA_NFHL_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/FEMA_National_Flood_Hazard_Layer.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.144" miny="41.296" maxx="-70.419" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="147360.417" miny="783473.654" maxx="288357.692" maxy="958472.938"/> <Style> <Name>GISDATA.FEMA_NFHL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FEMA_NFHL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.FERRYROUTES_ARC</Name> <Title>Ferry Routes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.FERRYROUTES_ARC.xml</Keyword> <Keyword>GISDATA.FERRYROUTES_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Ferry_Routes.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/FERRYROUTES_ARC.avl</Keyword> <Keyword>Ferry</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>Routes</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.286" maxx="-70.046" maxy="42.372"/> <BoundingBox SRS="EPSG:26986" minx="236820.479" miny="782736.017" maxx="319956.155" maxy="919537.046"/> <Style> <Name>GISDATA.FERRYROUTES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FERRYROUTES_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.FERRYROUTES_ARC::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FERRYROUTES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.FIRESTATIONS_PT_MEMA</Name> <Title>Fire Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Fire_Stations.lyr</Keyword> <Keyword>Stations</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/firestations.htm</Keyword> <Keyword>Fire</Keyword> <Keyword>GISDATA.FIRESTATIONS_PT_MEMA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/firestations_pt_mema.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.FIRESTATIONS_PT_MEMA.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.449" miny="41.264" maxx="-69.934" maxy="42.857"/> <BoundingBox SRS="EPSG:26986" minx="40674.454" miny="781136.011" maxx="328001.404" maxy="956296.031"/> <Style> <Name>GISDATA.FIRESTATIONS_PT_MEMA::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FIRESTATIONS_PT_MEMA"/> </LegendURL> </Style> <Style> <Name>GISDATA.FIRESTATIONS_PT_MEMA::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FIRESTATIONS_PT_MEMA"/> </LegendURL> </Style> <Style> <Name>GISDATA.FIRESTATIONS_PT_MEMA::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FIRESTATIONS_PT_MEMA"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.FIRMAOV_POLY</Name> <Title>FEMA FIRM Zones V and AO</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/FIRM_Zones_V_and_AO.lyr</Keyword> <Keyword>V</Keyword> <Keyword>FIRM</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/firmaov.htm</Keyword> <Keyword>GISDATA.FIRMAOV_POLY</Keyword> <Keyword>AO</Keyword> <Keyword>FEMA</Keyword> <Keyword>Zones</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.29227177935833" miny="41.23676003565812" maxx="-69.89809680051575" maxy="42.87394694361187"/> <BoundingBox SRS="EPSG:26986" minx="217413.50421539662" miny="777495.6308559813" maxx="330906.8142154006" maxy="958168.9408559916"/> <Style> <Name>GISDATA.FIRMAOV_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FIRMAOV_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.FISHTRAPS_PT</Name> <Title>Fish Traps 1998</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/weirs.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/fish-trp.htm</Keyword> <Keyword>1998</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Fish_Traps_1998.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.FISHTRAPS_PT.xml</Keyword> <Keyword>Traps</Keyword> <Keyword>GISDATA.FISHTRAPS_PT</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.894" miny="41.513" maxx="-69.967" maxy="42.693"/> <BoundingBox SRS="EPSG:26986" minx="250552.012" miny="808108.435" maxx="325671.062" maxy="938204.185"/> <Style> <Name>GISDATA.FISHTRAPS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.FISHTRAPS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GAGES94_PT</Name> <Title>Stream Gaging Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GAGES94_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/gages_1l.avl</Keyword> <Keyword>Stations</Keyword> <Keyword>Stream</Keyword> <Keyword>GISDATA.GAGES94_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Stream_Gaging_Stations_By_Funding.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Stream_Gaging_Stations.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/gages_2l.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gages94.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Gaging</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.37" miny="41.582" maxx="-70.49" maxy="42.754"/> <BoundingBox SRS="EPSG:26986" minx="46902.71" miny="816271.38" maxx="282726.44" maxy="944844.0"/> <Style> <Name>GISDATA.GAGES94_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GAGES94_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.GAGES94_PT::By_Funding</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GAGES94_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GATEWAY_CITIES_POLY</Name> <Title>Gateway Cities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.351" miny="41.578" maxx="-70.237" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="48672.307" miny="815795.761" maxx="303255.197" maxy="953703.661"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GATEWAY_CITIES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GDI_DISTRICTS_EEA_POLY</Name> <Title>Growth Districts Initiative EEA Poly</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.274" miny="41.62" maxx="-70.673" maxy="42.778"/> <BoundingBox SRS="EPSG:26986" minx="54804.554" miny="820342.197" maxx="267659.958" maxy="947544.265"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GDI_DISTRICTS_EEA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GDI_DISTRICTS_EEA_PT</Name> <Title>Growth Districts Initiative EEA Pt</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.244" miny="41.642" maxx="-70.678" maxy="42.775"/> <BoundingBox SRS="EPSG:26986" minx="57264.689" miny="822741.797" maxx="267287.34" maxy="947207.526"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GDI_DISTRICTS_EEA_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GEONAMES_LINE_HYDRO</Name> <Title>Geonames Line Hydro</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.GEONAMES_LINE_HYDRO</Keyword> <Keyword>Hydro</Keyword> <Keyword>Geonames</Keyword> <Keyword>Line</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GEONAMES_LINE_HYDRO.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gnm.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.516" miny="41.235" maxx="-69.909" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="33893.79" miny="778022.25" maxx="329984.625" maxy="959828.269"/> <Style> <Name>GISDATA.GEONAMES_LINE_HYDRO::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYDRO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_LINE_HYDRO::MDCWSPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYDRO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_LINE_HYDRO::Depgis_Max50k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYDRO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_LINE_HYDRO::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYDRO"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GEONAMES_LINE_HYPSO</Name> <Title>GeoNames Line Hypso</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.GEONAMES_LINE_HYPSO</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gnm.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.528" miny="41.232" maxx="-69.901" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="34260.425" miny="777654.978" maxx="330633.339" maxy="959556.336"/> <Style> <Name>GISDATA.GEONAMES_LINE_HYPSO::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYPSO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_LINE_HYPSO::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_LINE_HYPSO"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GEONAMES_PT_HYPSO</Name> <Title>Geographic Names Hypsography</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GEONAMES_PT_HYPSO.xml</Keyword> <Keyword>Geographic</Keyword> <Keyword>GISDATA.GEONAMES_PT_HYPSO</Keyword> <Keyword>Hypsography</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gnm.htm</Keyword> <Keyword>Names</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.947" miny="34.244" maxx="-69.908" maxy="42.883"/> <BoundingBox SRS="EPSG:26986" minx="34260.425" miny="777717.299" maxx="330617.833" maxy="959556.336"/> <Style> <Name>GISDATA.GEONAMES_PT_HYPSO::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_HYPSO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_PT_HYPSO::Depgis_Max50k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_HYPSO"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_PT_HYPSO::15000_to_30000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_HYPSO"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GEONAMES_PT_PLACES</Name> <Title>Geographic Names Places</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Geographic_Names.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/gnmpl.avl</Keyword> <Keyword>Places</Keyword> <Keyword>Geographic</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GEONAMES_PT_PLACES.xml</Keyword> <Keyword>GISDATA.GEONAMES_PT_PLACES</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gnm.htm</Keyword> <Keyword>Names</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.947" miny="34.244" maxx="-69.918" maxy="42.867"/> <BoundingBox SRS="EPSG:26986" minx="36665.332" miny="777863.562" maxx="329169.475" maxy="957410.187"/> <Style> <Name>GISDATA.GEONAMES_PT_PLACES::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_PLACES"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_PT_PLACES::Depgis_Max125k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_PLACES"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_PT_PLACES::15000_to_30000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_PLACES"/> </LegendURL> </Style> <Style> <Name>GISDATA.GEONAMES_PT_PLACES::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GEONAMES_PT_PLACES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GOVCOUNCIL_ARC</Name> <Title>Governors Council 2012</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/govcouncil2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GOVCOUNCIL_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.GOVCOUNCIL_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GOVCOUNCIL_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GOVCOUNCIL_POLY</Name> <Title>Governors Council 2012</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/govcouncil2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GOVCOUNCIL_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.GOVCOUNCIL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GOVCOUNCIL_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.GOVCOUNCIL_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GOVCOUNCIL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GRID10K_PT</Name> <Title>MA State Plane Grid Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/spc-pts.htm</Keyword> <Keyword>Plane</Keyword> <Keyword>State</Keyword> <Keyword>Grid</Keyword> <Keyword>GISDATA.GRID10K_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GRID10K_PT.xml</Keyword> <Keyword>Points</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.628" miny="41.173" maxx="-69.782" maxy="42.948"/> <BoundingBox SRS="EPSG:26986" minx="26304.32" miny="771349.25" maxx="340250.06" maxy="966421.94"/> <Style> <Name>GISDATA.GRID10K_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GRID10K_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.GWP_PT</Name> <Title>Ground Water Discharges</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/gwp.htm</Keyword> <Keyword>Discharges</Keyword> <Keyword>Ground</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/gwptype.avl</Keyword> <Keyword>GISDATA.GWP_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.GWP_PT.xml</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Groundwater_Discharge_Pts_by_Type.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.394" miny="41.236" maxx="-69.931" maxy="42.828"/> <BoundingBox SRS="EPSG:26986" minx="39075.842" miny="777873.187" maxx="328758.586" maxy="952780.804"/> <Style> <Name>GISDATA.GWP_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.GWP_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HLSPREGIONS_ARC</Name> <Title>Homeland Security Planning Regions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Security</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hlspregions_arc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HLSPREGIONS_ARC.xml</Keyword> <Keyword>GISDATA.HLSPREGIONS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Homeland_Security_Planning_Regions.lyr</Keyword> <Keyword>Planning</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hlspregions.htm</Keyword> <Keyword>Arcs</Keyword> <Keyword>Regions</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Homeland</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.HLSPREGIONS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HLSPREGIONS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HLSPREGIONS_POLY</Name> <Title>Homeland Security Planning Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Security</Keyword> <Keyword>GISDATA.HLSPREGIONS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HLSPREGIONS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Homeland_Security_Planning_Regions.lyr</Keyword> <Keyword>Planning</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hlspregions_poly.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hlspregions.htm</Keyword> <Keyword>Regions</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Homeland</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.HLSPREGIONS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HLSPREGIONS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HLSPREGIONS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HLSPREGIONS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HOSPITALS_PT</Name> <Title>Hospitals</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HOSPITALS_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hosp_er.avl</Keyword> <Keyword>GISDATA.HOSPITALS_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Hospitals.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hospitals.htm</Keyword> <Keyword>Hospitals</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.39" miny="41.269" maxx="-70.067" maxy="42.816"/> <BoundingBox SRS="EPSG:26986" minx="45396.157" miny="781526.817" maxx="317238.627" maxy="951699.687"/> <Style> <Name>GISDATA.HOSPITALS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOSPITALS_PT::Trauma</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOSPITALS_PT::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOSPITALS_PT::Teaching</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOSPITALS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOSPITALS_PT::Buildings_Max_30000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOSPITALS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HOUSE02_ARC</Name> <Title>State Representative House Districts 2002 Arc</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/house02a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HOUSE02_ARC.xml</Keyword> <Keyword>Arc</Keyword> <Keyword>2002</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/State_Rep_Districts_2002.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/house02.htm</Keyword> <Keyword>State</Keyword> <Keyword>GISDATA.HOUSE02_ARC</Keyword> <Keyword>Districts</Keyword> <Keyword>House</Keyword> <Keyword>Representative</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="777514.311" maxx="330846.092" maxy="959747.441"/> <Style> <Name>GISDATA.HOUSE02_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE02_ARC::Arcs</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HOUSE02_POLY</Name> <Title>State Representative House Districts 2002 Poly</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Poly</Keyword> <Keyword>2002</Keyword> <Keyword>GISDATA.HOUSE02_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HOUSE02_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/State_Rep_Districts_2002.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/house02p.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/house02.htm</Keyword> <Keyword>State</Keyword> <Keyword>Districts</Keyword> <Keyword>House</Keyword> <Keyword>Representative</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.HOUSE02_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE02_POLY::Labels_Max_1200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE02_POLY::Max_1200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE02_POLY::Thick_Green_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE02_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE02_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HOUSE2012_ARC</Name> <Title>State Representative 2012 Districts Arcs</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/house2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/HOUSE2012_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.57" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.HOUSE2012_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE2012_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HOUSE2012_POLY</Name> <Title>State Representative 2012 Districts Polys</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/house2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/HOUSE2012_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.57" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.HOUSE2012_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE2012_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE2012_POLY::Labels_District</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE2012_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HOUSE2012_POLY::Labels_Rep</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HOUSE2012_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HURRICANE_SURGE_INUNDATION</Name> <Title>Worst Case Flooding by Hurricane Category</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/metadata/HurricaneSurgeInundation_MA.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.343" miny="41.238" maxx="-69.896" maxy="42.972"/> <BoundingBox SRS="EPSG:26986" minx="213148.477" miny="777606.692" maxx="330838.198" maxy="969033.5"/> <Style> <Name>GISDATA.HURRICANE_SURGE_INUNDATION::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HURRICANE_SURGE_INUNDATION"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRO100K_ARC</Name> <Title>USGS 100K Streams</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Hydro_100k.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hd100_.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRO100K_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hd1a.avl</Keyword> <Keyword>100K</Keyword> <Keyword>Streams</Keyword> <Keyword>USGS</Keyword> <Keyword>GISDATA.HYDRO100K_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.522" miny="41.234" maxx="-69.924" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34819.77" miny="777948.94" maxx="328725.91" maxy="959692.19"/> <Style> <Name>GISDATA.HYDRO100K_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_ARC::Light_Blue_Max_500000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_ARC::Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_ARC::Medium_Blue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_ARC::Med_Blue_25001_500000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_ARC::Min_75000_Max_300000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRO100K_POLY</Name> <Title>USGS 100K Ponds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Hydro_100k.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRO100K_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hd100_.htm</Keyword> <Keyword>GISDATA.HYDRO100K_POLY</Keyword> <Keyword>100K</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hd1p.avl</Keyword> <Keyword>USGS</Keyword> <Keyword>Ponds</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49" miny="41.235" maxx="-69.925" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="37342.055" miny="777948.938" maxx="328725.906" maxy="958256.375"/> <Style> <Name>GISDATA.HYDRO100K_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Min_75000_Max_800000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Light_Blue_Max_500000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Min_50000_Max_150000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Med_Blue_W_Outlines_25001_500000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO100K_POLY::Medium_Blue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO100K_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRO25K_ARC</Name> <Title>USGS 25K Rivers and Streams</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Rivers</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hyd25ka1.avl</Keyword> <Keyword>25K</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Hydro_25k.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hd.htm</Keyword> <Keyword>Streams</Keyword> <Keyword>USGS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRO25K_ARC.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> <Keyword>GISDATA.HYDRO25K_ARC</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.577" miny="39.838" maxx="-69.366" maxy="44.049"/> <BoundingBox SRS="EPSG:26986" minx="33978.145" miny="777542.875" maxx="331111.844" maxy="972429.625"/> <Style> <Name>GISDATA.HYDRO25K_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::DORLA3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::Max_75000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::24000_to_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::Depgis_Base_Max125k_Min10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::5_Categories_12000_to_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_ARC::MDCWSPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRO25K_POLY</Name> <Title>USGS 25K Lakes and Ponds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Lakes</Keyword> <Keyword>25K</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Hydro_25k.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hd25shp1.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRO25K_POLY.xml</Keyword> <Keyword>Ponds</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> <Keyword>GISDATA.HYDRO25K_POLYUSGS</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.526" miny="40.884" maxx="-69.407" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="34778.723" miny="739141.312" maxx="370684.844" maxy="972430.25"/> <Style> <Name>GISDATA.HYDRO25K_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::MDCWSPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::15000_to_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::Depgis_Base_Max125k_Min10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::Max_75000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::24000_to_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::DORLA3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRO25K_POLY::4_Categories_12000_to_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRO25K_SOURCE</Name> <Title>Hydrography 25k Source</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Source</Keyword> <Keyword>Hydrography</Keyword> <Keyword>GISDATA.HYDRO25K_SOURCE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/hd.htm</Keyword> <Keyword>25k</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.5310096677401" miny="41.1096154579664" maxx="-69.82603240121922" maxy="43.002376042800435"/> <BoundingBox SRS="EPSG:26986" minx="34354.58999999554" miny="764090.1899999796" maxx="336517.4399999975" maxy="972430.4999999871"/> <Style> <Name>GISDATA.HYDRO25K_SOURCE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRO25K_SOURCE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRONET_ARC</Name> <Title>Hydro Centerline</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRONET_ARC.xml</Keyword> <Keyword>Hydro</Keyword> <Keyword>Centerline</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/watrshed.htm</Keyword> <Keyword>GISDATA.HYDRONET_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.58" miny="41.583" maxx="-70.498" maxy="42.956"/> <BoundingBox SRS="EPSG:26986" minx="30195.92" miny="816824.69" maxx="281781.41" maxy="967253.0"/> <Style> <Name>GISDATA.HYDRONET_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRONET_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.HYDRONET_RTE_SARISRT</Name> <Title>SARIS Routes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>SARIS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.HYDRONET_RTE_SARISRT.xml</Keyword> <Keyword>GISDATA.HYDRONET_RTE_SARISRT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/watrshed.htm</Keyword> <Keyword>Routes</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.522" miny="41.612" maxx="-70.519" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34818.36" miny="819873.31" maxx="280153.0" maxy="959669.56"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRONET_RTE_SARISRT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRONET_RTE_SARISRT::Min_50000_Max_300000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRONET_RTE_SARISRT"/> </LegendURL> </Style> <Style> <Name>GISDATA.HYDRONET_RTE_SARISRT::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.HYDRONET_RTE_SARISRT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ICERINKS_PT</Name> <Title>Ice Rinks</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Ice_Rinks.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/icerinks.htm</Keyword> <Keyword>Ice</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ICERINKS_PT.xml</Keyword> <Keyword>GISDATA.ICERINKS_PT</Keyword> <Keyword>Rinks</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/icerinks_pt.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.469" miny="40.272" maxx="-69.941" maxy="43.8"/> <BoundingBox SRS="EPSG:26986" minx="41733.034" miny="780948.871" maxx="324668.694" maxy="951020.841"/> <Style> <Name>GISDATA.ICERINKS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ICERINKS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.ICERINKS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ICERINKS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IL_2010_ARC</Name> <Title>Water Body Segments - Rivers - arcs</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_2010_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_ADB_2010.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_SEGDEF_2010.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.502" miny="41.325" maxx="-69.959" maxy="42.887"/> <BoundingBox SRS="EPSG:26986" minx="36453.582" miny="787946.312" maxx="325905.312" maxy="959664.687"/> <Style> <Name>GISDATA.IL_2010_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IL_2010_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IL_2010_ARC_V</Name> <Title>Water Body Segments - Rivers - arcs</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2010.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.502" miny="41.325" maxx="-69.959" maxy="42.887"/> <BoundingBox SRS="EPSG:26986" minx="36453.582" miny="787946.312" maxx="325905.312" maxy="959664.687"/> <Style> <Name>GISDATA.IL_2010_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IL_2010_ARC_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IL_2010_POLY</Name> <Title>Water Body Segments - Lakes, Estuaries - polygons</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_2010_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_ADB_2010.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_SEGDEF_2010.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2010.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.475" miny="41.235" maxx="-69.901" maxy="42.862"/> <BoundingBox SRS="EPSG:26986" minx="38527.617" miny="777968.187" maxx="330659.374" maxy="956817.601"/> <Style> <Name>GISDATA.IL_2010_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IL_2010_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IL_2010_POLY_V</Name> <Title>Water Body Segments - Lakes, Estuaries - polygons</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2010.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.475" miny="41.235" maxx="-69.901" maxy="42.862"/> <BoundingBox SRS="EPSG:26986" minx="38527.617" miny="777968.187" maxx="330659.374" maxy="956817.601"/> <Style> <Name>GISDATA.IL_2010_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IL_2010_POLY_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IL_DWM_WATERSHEDS_POLY</Name> <Title>DWM Integrated List Watershed Delineations</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2010.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_DWM_WATERSHEDS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_ADB_2010.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IL_SEGDEF_2010.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.261" miny="777514.311" maxx="330846.09" maxy="959747.441"/> <Style> <Name>GISDATA.IL_DWM_WATERSHEDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IL_DWM_WATERSHEDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMGCAT_COLOROQ1</Name> <Title>Coastal Color Orthos Islands</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coloroq.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>IMGCAT_COLOROQ1</Keyword> <Keyword>GISDATA.IMGCAT_COLOROQ1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.5</Keyword> <Keyword>BytesPerPixel=3</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.867" miny="41.284" maxx="-70.578" maxy="41.502"/> <BoundingBox SRS="EPSG:26986" minx="253001.117" miny="781999.635" maxx="277000.33" maxy="805998.836"/> <Style> <Name>GISDATA.IMGCAT_COLOROQ1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMGCAT_COLOROQ1"/> </LegendURL> </Style> <Style> <Name>GISDATA.IMGCAT_COLOROQ1::Max_10000</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMGCAT_COLOROQ1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_BWORTHOS</Name> <Title>Black and White Orthos (1990s)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/usgsdoq.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_BWORTHOS</Keyword> <Keyword>GISDATA.IMG_BWORTHOS</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.5</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>Black</Keyword> <Keyword>and</Keyword> <Keyword>White</Keyword> <Keyword>Orthos</Keyword> <Keyword>(1990s) </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_BWORTHOS.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33000.25" miny="773999.75" maxx="333000.25" maxy="961999.75"/> <Style> <Name>GISDATA.IMG_BWORTHOS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_BWORTHOS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_COLOROQ1</Name> <Title>Coastal Color Orthos (2001) Mainland</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/coloroq.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>IMG_COLOROQ1</Keyword> <Keyword>GISDATA.IMG_COLOROQ1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Coastal</Keyword> <Keyword>Color</Keyword> <Keyword>Orthos</Keyword> <Keyword>mainland</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.5</Keyword> <Keyword>BytesPerPixel=3 </Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.249" miny="41.385" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="221000.5" miny="794000.5" maxx="332999.5" maxy="961999.5"/> <Style> <Name>GISDATA.IMG_COLOROQ1::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COLOROQ1"/> </LegendURL> </Style> <Style> <Name>GISDATA.IMG_COLOROQ1::Max_10000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COLOROQ1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_COQ2001</Name> <Title>2001 Color Orthos</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colororthos2001.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_COQ2001</Keyword> <Keyword>GISDATA.IMG_COQ2001</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.5</Keyword> <Keyword>BytesPerPixel=3</Keyword> <Keyword>2001</Keyword> <Keyword>Color</Keyword> <Keyword>Orthos</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_COQ2001.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33000.25" miny="774000.25" maxx="332999.75" maxy="961999.75"/> <Style> <Name>GISDATA.IMG_COQ2001::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COQ2001"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_COQ2005</Name> <Title>2005 Color Orthos</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colororthos2005.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_COQ2005</Keyword> <Keyword>GISDATA.IMG_COQ2005</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.5</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>2005</Keyword> <Keyword>Color</Keyword> <Keyword>Orthos </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_COQ2005.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33000.25" miny="774000.25" maxx="332999.75" maxy="961999.75"/> <Style> <Name>GISDATA.IMG_COQ2005::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COQ2005"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_COQ2008_30CM</Name> <Title>2008 Color Orthos 30cm</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colororthos2008.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_COQ2008_30CM</Keyword> <Keyword>GISDATA.IMG_COQ2008_30CM</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colororthos2008.htm</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.3</Keyword> <Keyword>BytesPerPixel=3</Keyword> <Keyword>2008</Keyword> <Keyword>Color</Keyword> <Keyword>Orthos</Keyword> <Keyword>30cm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA_IMG_COQ2008_30CM.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.769" miny="41.858" maxx="-70.503" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="177986.586" miny="845771.175" maxx="281486.286" maxy="959770.875"/> <Style> <Name>GISDATA.IMG_COQ2008_30CM::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COQ2008_30CM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_COQ2009_30CM</Name> <Title>2009 Color Orthos 30cm</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>GISDATA.IMG_COQ2009_30CM</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/colororthos2008.htm</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>BytesPerPixel=3</Keyword> <Keyword>UnitsPerPixel=0.3</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.546" miny="41.223" maxx="-69.882" maxy="42.767"/> <BoundingBox SRS="EPSG:26986" minx="32486.586" miny="776770.875" maxx="332486.286" maxy="946270.875"/> <Style> <Name>GISDATA.IMG_COQ2009_30CM::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_COQ2009_30CM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_ELEV5K_I</Name> <Title>Elevation</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/img_elev5k.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_ELEV5K_I</Keyword> <Keyword>GISDATA.IMG_ELEV5K_I</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=5</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>Elevation </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_ELEV5K_I.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33002.5" miny="774002.5" maxx="332997.5" maxy="962002.5"/> <Style> <Name>GISDATA.IMG_ELEV5K_I::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_ELEV5K_I"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_IMPERVIOUSSURFACE</Name> <Title>Impervious Surface Grid</Title> <Abstract/> <KeywordList> <Keyword>http://www.mass.gov/mgis/impervious_surface.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_IMPERVIOUSSURFACE</Keyword> <Keyword>GISDATA.IMG_IMPERVIOUSSURFACE</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1</Keyword> <Keyword>BytesPerPixel=0.125</Keyword> <Keyword>Impervious</Keyword> <Keyword>Surface</Keyword> <Keyword>Grid</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/impervious_surface.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_IMPERVIOUSSURFACE.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33000.5" miny="774000.5" maxx="332999.5" maxy="961999.5"/> <Style> <Name>GISDATA.IMG_IMPERVIOUSSURFACE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_IMPERVIOUSSURFACE"/> </LegendURL> </Style> <Style> <Name>GISDATA.IMG_IMPERVIOUSSURFACE::Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_IMPERVIOUSSURFACE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_SHADEDRELIEF2005</Name> <Title>Shaded Relief 2005</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>GISDATA.IMG_SHADEDRELIEF2005</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.908"/> <BoundingBox SRS="EPSG:26986" minx="33002.5" miny="774002.5" maxx="332997.5" maxy="961997.5"/> <Style> <Name>GISDATA.IMG_SHADEDRELIEF2005::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_SHADEDRELIEF2005"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_SHDREL5K</Name> <Title>Shaded Relief</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/img_shdrel5k.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_SHDREL5K</Keyword> <Keyword>GISDATA.IMG_SHDREL5K</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Shaded</Keyword> <Keyword>Relief</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=10</Keyword> <Keyword>BytesPerPixel=1</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54578522120025" miny="41.19760447836744" maxx="-69.870208238426" maxy="42.90933817641486"/> <BoundingBox SRS="EPSG:26986" minx="32899.99999999936" miny="773899.9999999825" maxx="333110.00000000035" maxy="962099.9999999907"/> <Style> <Name>GISDATA.IMG_SHDREL5K::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_SHDREL5K"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_SHDREL_NE</Name> <Title>Shaded Relief New England</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>GISDATA.IMG_SHDREL_NE</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.374" miny="40.19" maxx="-68.75" maxy="43.888"/> <BoundingBox SRS="EPSG:26986" minx="-111661.03" miny="666666.653" maxx="421138.97" maxy="1070966.653"/> <Style> <Name>GISDATA.IMG_SHDREL_NE::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_SHDREL_NE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_USGSQUADM</Name> <Title>USGS Topos</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/im_quad.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_USGSQUADM</Keyword> <Keyword>GISDATA.IMG_USGSQUADM</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=2</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>USGS</Keyword> <Keyword>Topos </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_USGSQUADM.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.546" miny="41.198" maxx="-69.87" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="32900.0" miny="773900.0" maxx="333110.0" maxy="962100.0"/> <Style> <Name>GISDATA.IMG_USGSQUADM::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_USGSQUADM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_USGSQUAD_SGBASE</Name> <Title>GISDATA.IMG_USGSQUAD_SGBASE</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>GISDATA.IMG_USGSQUAD_SGBASE</Keyword> <Keyword>GISDATA.IMG_USGSQUAD_SGBASE</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/im_quad_sgbase.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.881" miny="41.87" maxx="-70.51" maxy="43.005"/> <BoundingBox SRS="EPSG:26986" minx="168931.221" miny="847129.017" maxx="280767.116" maxy="972698.668"/> <Style> <Name>GISDATA.IMG_USGSQUAD_SGBASE::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_USGSQUAD_SGBASE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_USGS_HIST_COASTAL</Name> <Title>USGS Historical Coastal Topographic Map Image c 1900</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/usgs_hist_coastal.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_USGS_HIST_COASTAL</Keyword> <Keyword>GISDATA.IMG_USGS_HIST_COASTAL</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=5.407842</Keyword> <Keyword>BytesPerPixel=3</Keyword> <Keyword>USGS</Keyword> <Keyword>Historical</Keyword> <Keyword>Coastal</Keyword> <Keyword>Topographic</Keyword> <Keyword>Map</Keyword> <Keyword>Image</Keyword> <Keyword>c</Keyword> <Keyword>1900 </Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.50020917330274" miny="41.210296507963335" maxx="-69.70758196178006" maxy="43.00321335532114"/> <BoundingBox SRS="EPSG:26986" minx="199981.6779209997" miny="774851.9529789848" maxx="346177.27854900045" maxy="972508.5780789892"/> <Style> <Name>GISDATA.IMG_USGS_HIST_COASTAL::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_USGS_HIST_COASTAL"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_WIND_SPD100M</Name> <Title>Wind Speed at 100M</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windspeed.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_WIND_SPD100M</Keyword> <Keyword>GISDATA.IMG_WIND_SPD100M</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=200</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>Wind</Keyword> <Keyword>Speed</Keyword> <Keyword>at</Keyword> <Keyword>50M </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_WIND_SPD100M.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.068" miny="40.166" maxx="-66.028" maxy="47.685"/> <BoundingBox SRS="EPSG:26986" minx="-69305.216" miny="669146.18" maxx="613294.784" maxy="1494146.18"/> <Style> <Name>GISDATA.IMG_WIND_SPD100M::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_WIND_SPD100M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_WIND_SPD30M</Name> <Title>Wind Speed at 30M</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windspeed.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_WIND_SPD30M</Keyword> <Keyword>GISDATA.IMG_WIND_SPD30M</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=200</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>Wind</Keyword> <Keyword>Speed</Keyword> <Keyword>at</Keyword> <Keyword>30M </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_WIND_SPD30M.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.068" miny="40.166" maxx="-66.028" maxy="47.685"/> <BoundingBox SRS="EPSG:26986" minx="-69305.216" miny="669146.18" maxx="613294.784" maxy="1494146.18"/> <Style> <Name>GISDATA.IMG_WIND_SPD30M::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_WIND_SPD30M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_WIND_SPD50M</Name> <Title>Wind Speed at 50M</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windspeed.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_WIND_SPD50M</Keyword> <Keyword>GISDATA.IMG_WIND_SPD50M</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=200</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>Wind</Keyword> <Keyword>Speed</Keyword> <Keyword>at</Keyword> <Keyword>50M</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_WIND_SPD50M.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.068" miny="40.166" maxx="-66.028" maxy="47.685"/> <BoundingBox SRS="EPSG:26986" minx="-69305.216" miny="669146.18" maxx="613294.784" maxy="1494146.18"/> <Style> <Name>GISDATA.IMG_WIND_SPD50M::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_WIND_SPD50M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IMG_WIND_SPD70M</Name> <Title>Wind Speed at 70M</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windspeed.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_IMG_WIND_SPD70M</Keyword> <Keyword>GISDATA.IMG_WIND_SPD70M</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=200</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>Wind</Keyword> <Keyword>Speed</Keyword> <Keyword>at</Keyword> <Keyword>50M </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IMG_WIND_SPD70M.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.405" miny="40.812" maxx="-66.172" maxy="47.679"/> <BoundingBox SRS="EPSG:26986" minx="-19216.361" miny="740385.312" maxx="602383.639" maxy="1493785.312"/> <Style> <Name>GISDATA.IMG_WIND_SPD70M::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IMG_WIND_SPD70M"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.INTERIORFOREST_POLY</Name> <Title>Interior Forest</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.INTERIORFOREST_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.INTERIORFOREST_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Interior_Forest.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/intforest.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53172286648446" miny="41.34638752207632" maxx="-69.93420945780991" maxy="42.87235409025137"/> <BoundingBox SRS="EPSG:26986" minx="33952.516723252804" miny="790404.9373886731" maxx="327958.203712776" maxy="957996.250073832"/> <Style> <Name>GISDATA.INTERIORFOREST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.INTERIORFOREST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IWPA_POLY</Name> <Title>Interim Water Protection Areas IWPA</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.IWPA_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/iwpdef1p.avl</Keyword> <Keyword>GISDATA.IWPA_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ziis.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/IWPA.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.498" miny="41.235" maxx="-69.922" maxy="42.819"/> <BoundingBox SRS="EPSG:26986" minx="36589.466" miny="777915.136" maxx="329046.06" maxy="952083.6"/> <Style> <Name>GISDATA.IWPA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IWPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.IWPA_POLY_DISSOLVE</Name> <Title>Interim Water Protection Areas IWPA Dissolved</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.IWPA_POLY_DISSOLVE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ziis.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49777544739877" miny="41.23480215709787" maxx="-69.92223884773551" maxy="42.819355945712516"/> <BoundingBox SRS="EPSG:26986" minx="36589.466005635244" miny="777947.1038519529" maxx="329046.05965631583" maxy="952083.5999329734"/> <Style> <Name>GISDATA.IWPA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.IWPA_POLY_DISSOLVE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_MISC_POLY</Name> <Title>Level 3 Parcel Data Miscellaneous Features</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.L3_MISC_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.472" miny="41.304" maxx="-69.922" maxy="42.753"/> <BoundingBox SRS="EPSG:26986" minx="38555.274" miny="785541.305" maxx="329164.593" maxy="944737.873"/> <Style> <Name>GISDATA.L3_MISC_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_MISC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_OTHLEG_POLY</Name> <Title>Level 3 Parcel Data Other Legal Interests</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.L3_OTHLEG_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49" miny="41.299" maxx="-69.918" maxy="42.832"/> <BoundingBox SRS="EPSG:26986" minx="37232.702" miny="785117.125" maxx="329400.603" maxy="953499.417"/> <Style> <Name>GISDATA.L3_OTHLEG_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_OTHLEG_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_PARCEL_FTP_LINKS</Name> <Title>Level 3 Parcel Data FTP Links</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_PARCEL_FTP_LINKS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_STATUS</Name> <Title>Level 3 Parcel Data Status</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.L3_STATUS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_STATUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_TAXPAR_POLY_ASSESS</Name> <Title>Level 3 Parcels</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.L3_TAXPAR_POLY_ASSESS.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.504" miny="41.299" maxx="-69.913" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="36118.824" miny="785117.125" maxx="329784.623" maxy="953724.315"/> <Style> <Name>GISDATA.L3_TAXPAR_POLY_ASSESS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_TAXPAR_POLY_ASSESS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_TAXPAR_POLY_ASSESS_128</Name> <Title>Level 3 Parcels SDE Haverhill</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.183" miny="42.732" maxx="-71.0" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="225983.72" miny="942523.005" maxx="240865.262" maxy="953724.315"/> <Style> <Name>GISDATA.L3_TAXPAR_POLY_ASSESS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_TAXPAR_POLY_ASSESS_128"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_TAXPAR_POLY_ASSESS_128_EDIT</Name> <Title>Level 3 Parcels SDE Haverhill Edit</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.183" miny="42.732" maxx="-71.0" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="225983.72" miny="942523.005" maxx="240865.262" maxy="953724.315"/> <Style> <Name>GISDATA.L3_TAXPAR_POLY_ASSESS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_TAXPAR_POLY_ASSESS_128_EDIT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.L3_TAXPAR_POLY_ASSESS_165</Name> <Title>Level 3 Parcels SDE Malden</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.09" miny="42.412" maxx="-71.02" maxy="42.445"/> <BoundingBox SRS="EPSG:26986" minx="233785.492" miny="906971.394" maxx="239461.973" maxy="910573.295"/> <Style> <Name>GISDATA.L3_TAXPAR_POLY_ASSESS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.L3_TAXPAR_POLY_ASSESS_165"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LA3_PT</Name> <Title>LA3 Real Property Values Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Values</Keyword> <Keyword>Real</Keyword> <Keyword>LA3</Keyword> <Keyword>Property</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.LA3_PT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.50243698596668" miny="41.233625570477976" maxx="-69.91212309254503" maxy="42.88423305056355"/> <BoundingBox SRS="EPSG:26986" minx="36377.72209999559" miny="777821.2285999785" maxx="329739.0719000047" maxy="959310.5082999878"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LA3_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LANDUSE2005_POLY</Name> <Title>Land Use 2005</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LANDUSE2005_POLY.xml</Keyword> <Keyword>GISDATA.LANDUSE2005_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus2005.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53331299260967" miny="41.23117020069481" maxx="-69.89859461877505" maxy="42.88811062723955"/> <BoundingBox SRS="EPSG:26986" minx="33864.15910000185" miny="777606.4005999825" maxx="330836.5663999998" maxy="959743.0445999873"/> <Style> <Name>GISDATA.LANDUSE2005_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE2005_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LANDUSE_POLY</Name> <Title>Land Use</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_37_1985p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/21Landuse_1985_Solid_Color.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LANDUSE_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/luchage_85_99.avl</Keyword> <Keyword>Land</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_21_1971p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/luchage_71_85.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/37Landuse_1985_Solid_Color.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/37Landuse_Solid_Color.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/21Landuse_Solid_Color.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Landuse_Change_1985_1999.lyr</Keyword> <Keyword>GISDATA.LANDUSE_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Landuse_Change_1971_1985.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_37_1999p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Landuse_Transparent.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_21_1999p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Landuse_Change_1971_1999.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_l212p.avl</Keyword> <Keyword>Use</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lu_21_1985p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/21Landuse_1971_Solid_Color.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.569" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777542.88" maxx="330848.31" maxy="959747.44"/> <Style> <Name>GISDATA.LANDUSE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::37_Classes_1985_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::37_Classes_1999_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::21_Classes_1999_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::Landuse_Change_1971_1999</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::21_Classes_1985_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::21_Classes_1971_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::Landuse_Change_1971_1985</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::Landuse_Change_1985_1999</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY::21_Classes_1999_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LANDUSE_POLY_1951</Name> <Title>Landuse 1951 Cape Cod</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.LANDUSE_POLY_1951</Keyword> <Keyword>Cape</Keyword> <Keyword>Landuse</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LANDUSE_POLY_1951.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/21Landuse_1951_Solid_Color.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus.htm</Keyword> <Keyword>1951</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.688" miny="41.507" maxx="-69.919" maxy="42.087"/> <BoundingBox SRS="EPSG:26986" minx="267802.75" miny="807548.5" maxx="330848.31" maxy="871055.5"/> <Style> <Name>GISDATA.LANDUSE_POLY_1951::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY_1951"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LANDUSE_POLY_DEV</Name> <Title>Landuse 1999 Developed Areas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Landuse</Keyword> <Keyword>Areas</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus.htm</Keyword> <Keyword>Developed</Keyword> <Keyword>1999</Keyword> <Keyword>GISDATA.LANDUSE_POLY_DEV</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LANDUSE_POLY_DEV.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.508" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="35939.4" miny="777562.94" maxx="330835.13" maxy="959747.44"/> <Style> <Name>GISDATA.LANDUSE_POLY_DEV::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY_DEV"/> </LegendURL> </Style> <Style> <Name>GISDATA.LANDUSE_POLY_DEV::Developed_Areas</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LANDUSE_POLY_DEV"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LIBRARIES_PT</Name> <Title>Libraries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/LIBRARIES_PT.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/libraries.htm</Keyword> <Keyword>GISDATA.LIBRARIES_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LIBRARIES_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Libraries.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.502" miny="41.255" maxx="-69.93" maxy="42.867"/> <BoundingBox SRS="EPSG:26986" minx="36396.679" miny="780182.188" maxx="328317.785" maxy="957414.938"/> <Style> <Name>GISDATA.LIBRARIES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LIBRARIES_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.LIBRARIES_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LIBRARIES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LIGHTHOUSES_PT</Name> <Title>Lighthouses</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/LIGHTHOUSES_PT.avl</Keyword> <Keyword>GISDATA.LIGHTHOUSES_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Lighthouses.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_lighthouses_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LIGHTHOUSES_PT.xml</Keyword> <Keyword>Lighthouses</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.176" miny="41.284" maxx="-69.922" maxy="42.817"/> <BoundingBox SRS="EPSG:26986" minx="225818.783" miny="782659.239" maxx="329079.81" maxy="951833.671"/> <Style> <Name>GISDATA.LIGHTHOUSES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LIGHTHOUSES_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.LIGHTHOUSES_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LIGHTHOUSES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LOBHARV_ARC</Name> <Title>Lobster Harvest Zones 1997 Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Harvest</Keyword> <Keyword>GISDATA.LOBHARV_ARC</Keyword> <Keyword>1997</Keyword> <Keyword>Arcs</Keyword> <Keyword>Zones</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LOBHARV_ARC.xml</Keyword> <Keyword>Lobster</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lob-harv.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.708" miny="39.683" maxx="-65.339" maxy="44.115"/> <BoundingBox SRS="EPSG:26986" minx="183358.33" miny="620403.94" maxx="694348.5" maxy="1096052.13"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LOBHARV_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LOBHARV_POLY</Name> <Title>Lobster Harvest Zones 1997</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Harvest</Keyword> <Keyword>1997</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Lobster_Harvest_Zones_1997.lyr</Keyword> <Keyword>GISDATA.LOBHARV_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LOBHARV_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lobster2.avl</Keyword> <Keyword>Zones</Keyword> <Keyword>Lobster</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lob-harv.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.708" miny="39.683" maxx="-65.339" maxy="44.115"/> <BoundingBox SRS="EPSG:26986" minx="183358.33" miny="620403.94" maxx="694348.5" maxy="1096052.13"/> <Style> <Name>GISDATA.LOBHARV_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LOBHARV_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LONGDISTTRAILS_ARC</Name> <Title>Long Distance Trails</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LONGDISTTRAILS_ARC.xml</Keyword> <Keyword>Long</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/long_dist.avl</Keyword> <Keyword>Trails</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ldtrails.htm</Keyword> <Keyword>Distance</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Long_Distance_Trails.lyr</Keyword> <Keyword>GISDATA.LONGDISTTRAILS_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.654" miny="41.973" maxx="-70.704" maxy="42.976"/> <BoundingBox SRS="EPSG:26986" minx="24275.42" miny="860233.56" maxx="264907.81" maxy="969528.75"/> <Style> <Name>GISDATA.LONGDISTTRAILS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LONGDISTTRAILS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LONGTERMCARE_PT</Name> <Title>Long Term Care Residences</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.LONGTERMCARE_PT</Keyword> <Keyword>Long</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/longtermcare_pt.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/longtermcare.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Long_Term_Care_Residences.lyr</Keyword> <Keyword>Residences</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LONGTERMCARE_PT.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Care</Keyword> <Keyword>Term</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.397" miny="41.268" maxx="-69.937" maxy="42.858"/> <BoundingBox SRS="EPSG:26986" minx="44954.064" miny="781457.064" maxx="327728.88" maxy="956388.724"/> <Style> <Name>GISDATA.LONGTERMCARE_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LONGTERMCARE_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.LONGTERMCARE_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LONGTERMCARE_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LUSTAT_ARC</Name> <Title>Year of Land Use Arcs </Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Year</Keyword> <Keyword>GISDATA.LUSTAT_ARC</Keyword> <Keyword>Land</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus.htm</Keyword> <Keyword>Use</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.56969846972926" miny="40.20546041894593" maxx="-69.86212834305503" maxy="43.91303054562016"/> <BoundingBox SRS="EPSG:26986" minx="33861.25999999631" miny="777514.3099999799" maxx="330846.09000000596" maxy="959747.439999989"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LUSTAT_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LUSTAT_POLY</Name> <Title>Year of Land Use Pre-1999 Update</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.LUSTAT_POLY</Keyword> <Keyword>Pre-1999</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LUSTAT_POLY.xml</Keyword> <Keyword>Land</Keyword> <Keyword>Update</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Year_Of_Landuse.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lus.htm</Keyword> <Keyword>of</Keyword> <Keyword>Year</Keyword> <Keyword>Use</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/luyear.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.LUSTAT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LUSTAT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LWCORE_POLY</Name> <Title>Living Waters Core Habitats</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lwcore.htm</Keyword> <Keyword>GISDATA.LWCORE_POLY</Keyword> <Keyword>Habitats</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lwcore.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Living_Waters_Group.lyr</Keyword> <Keyword>Core</Keyword> <Keyword>Waters</Keyword> <Keyword>Living</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LWCORE_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.452" miny="41.27" maxx="-69.936" maxy="42.867"/> <BoundingBox SRS="EPSG:26986" minx="40451.518" miny="781715.187" maxx="327829.848" maxy="957348.357"/> <Style> <Name>GISDATA.LWCORE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LWCORE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.LWCSW_POLY</Name> <Title>Living Waters Critical Supporting Watersheds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/lwcsw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Living_Waters_Group.lyr</Keyword> <Keyword>GISDATA.LWCSW_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.LWCSW_POLY.xml</Keyword> <Keyword>Supporting</Keyword> <Keyword>Critical</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/lwcsw.avl</Keyword> <Keyword>Waters</Keyword> <Keyword>Watersheds</Keyword> <Keyword>Living</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.499" miny="41.262" maxx="-69.928" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="36644.996" miny="780951.872" maxx="328424.996" maxy="958269.632"/> <Style> <Name>GISDATA.LWCSW_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.LWCSW_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA2000URBBND_POLY</Name> <Title>MA 2000 Urban Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/MA2000URBBND_POLY.avl</Keyword> <Keyword>Boundaries</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MA2000URBBND_POLY.xml</Keyword> <Keyword>GISDATA.MA2000URBBND_POLY</Keyword> <Keyword>Urban</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_2000_Urban_Boundaries.lyr</Keyword> <Keyword>2000</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.417" miny="41.236" maxx="-69.911" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="43346.071" miny="777875.188" maxx="329789.969" maxy="959743.061"/> <Style> <Name>GISDATA.MA2000URBBND_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA2000URBBND_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MA2000URBBND_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA2000URBBND_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MAJBAS_ARC</Name> <Title>Major Basins Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.MAJBAS_ARC</Keyword> <Keyword>Major</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/maj_bas.htm</Keyword> <Keyword>Arcs</Keyword> <Keyword>Basins</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MAJBAS_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/tmbmbasa.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.261" miny="777514.311" maxx="330846.091" maxy="959747.441"/> <Style> <Name>GISDATA.MAJBAS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJBAS_ARC::Max_600000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MAJBAS_POLY</Name> <Title>Major Basins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Major</Keyword> <Keyword>GISDATA.MAJBAS_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/maj_bas.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Aquifers_Regulated.lyr</Keyword> <Keyword>Basins</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/aqutyp4p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MAJBAS_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.261" miny="777514.311" maxx="330846.091" maxy="959747.441"/> <Style> <Name>GISDATA.MAJBAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJBAS_POLY::Shaded</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJBAS_POLY::Cape_Cod_And_Islands_Basins</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJBAS_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJBAS_POLY::Min_100000_Max_600000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJBAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MAJPOND_POLY</Name> <Title>Major Ponds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/pndnum1p.avl</Keyword> <Keyword>GISDATA.MAJPOND_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Major_Hydrography.lyr</Keyword> <Keyword>Major</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/majhd.htm</Keyword> <Keyword>Ponds</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MAJPOND_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.462" miny="41.235" maxx="-69.936" maxy="42.865"/> <BoundingBox SRS="EPSG:26986" minx="39641.0" miny="777948.94" maxx="327808.03" maxy="957165.38"/> <Style> <Name>GISDATA.MAJPOND_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJPOND_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJPOND_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJPOND_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MAJSTRM_ARC</Name> <Title>Major Streams</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MAJSTRM_ARC.xml</Keyword> <Keyword>Major</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Major_Hydrography.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/strnum1a.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/majhd.htm</Keyword> <Keyword>GISDATA.MAJSTRM_ARC</Keyword> <Keyword>Streams</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.522" miny="41.242" maxx="-69.944" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34819.776" miny="778830.561" maxx="327097.906" maxy="959692.191"/> <Style> <Name>GISDATA.MAJSTRM_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJSTRM_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.MAJSTRM_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MAJSTRM_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MARINEBEACHES_ARC</Name> <Title>Marine Beaches Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MARINEBEACHES_ARC.xml</Keyword> <Keyword>Marine</Keyword> <Keyword>Beaches</Keyword> <Keyword>GISDATA.MARINEBEACHES_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Marine_Beaches.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/marinebeaches.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/marinebeaches_arc.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.225" miny="41.238" maxx="-69.9" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="223087.024" miny="777676.781" maxx="330780.104" maxy="958171.751"/> <Style> <Name>GISDATA.MARINEBEACHES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MARINEBEACHES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MARINEBEACHES_PT</Name> <Title>Marine Beaches Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Marine</Keyword> <Keyword>Beaches</Keyword> <Keyword>GISDATA.MARINEBEACHES_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MARINEBEACHES_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Marine_Beaches.lyr</Keyword> <Keyword>Points</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/marinebeaches.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/marinebeaches_pt.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.225" miny="41.239" maxx="-69.9" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="223033.684" miny="777712.551" maxx="330780.834" maxy="958160.891"/> <Style> <Name>GISDATA.MARINEBEACHES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MARINEBEACHES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ</Name> <Title>Massachusetts General Gazetteer</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.MA_GAZ</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.91207045390755" miny="40.6931929091173" maxx="-69.38542913805651" maxy="43.36014729289362"/> <BoundingBox SRS="EPSG:26986" minx="4385.000977440039" miny="718573.9924270982" maxx="371477.68099932524" maxy="1012177.3216333102"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ_HST</Name> <Title>Union of House, Senate, Town</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Senate</Keyword> <Keyword>Town</Keyword> <Keyword>Union</Keyword> <Keyword>House</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.MA_GAZ_HST</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53323018685161" miny="41.23034207516681" maxx="-69.89846232835896" maxy="42.88810882538435"/> <BoundingBox SRS="EPSG:26986" minx="33869.6864492789" miny="777514.5704356771" maxx="330846.09274186" maxy="959743.120749391"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ_HST"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ_HSZ</Name> <Title>Union of House, Senate, Zip</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Senate</Keyword> <Keyword>GISDATA.MA_GAZ_HSZ</Keyword> <Keyword>Union</Keyword> <Keyword>House</Keyword> <Keyword>Zip</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334971482923" miny="41.23034070874976" maxx="-69.89847703187591" maxy="42.88815026625985"/> <BoundingBox SRS="EPSG:26986" minx="33861.262299997674" miny="777514.3111999821" maxx="330846.0930999973" maxy="959747.4398999889"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ_HSZ"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ_LEG</Name> <Title>Union of Legislative Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Districts</Keyword> <Keyword>Union</Keyword> <Keyword>Legislative</Keyword> <Keyword>GISDATA.MA_GAZ_LEG</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334972240317" miny="41.18716147131031" maxx="-69.89847702679725" maxy="42.888150273458585"/> <BoundingBox SRS="EPSG:26986" minx="33861.261699996016" miny="772717.0778999814" maxx="330846.09350000444" maxy="959747.4406999853"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ_LEG"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ_TOWNS</Name> <Title>Massachusetts Towns Gazetteer</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.MA_GAZ_TOWNS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54071021287884" miny="41.15412242987618" maxx="-69.82213038984808" maxy="42.89474033251019"/> <BoundingBox SRS="EPSG:26986" minx="33276.99171199824" miny="769059.9917119821" maxx="337070.9917120007" maxy="960472.9917119889"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ_TOWNS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MA_GAZ_ZIP</Name> <Title>Massachusetts Zipcodes Gazetteer</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.MA_GAZ_ZIP</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54115146952068" miny="41.20985550017527" maxx="-69.89081835452926" maxy="42.913652188254375"/> <BoundingBox SRS="EPSG:26986" minx="33290.1371150969" miny="775251.990525937" maxx="331417.218352749" maxy="962580.884140401"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MA_GAZ_ZIP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MBTABUSROUTES_ARC</Name> <Title>MBTA Bus Routes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.MBTABUSROUTES_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mbtabus.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mbtabusroutes_arc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MBTABUSROUTES_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MBTA_Bus_Routes_and_Stops.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.2940687915562" miny="42.10661348957363" maxx="-70.84121683886558" maxy="42.58599300503736"/> <BoundingBox SRS="EPSG:26986" minx="217031.99999406002" miny="873118.1874923247" maxx="254077.28125361836" maxy="926179.5624876088"/> <Style> <Name>GISDATA.MBTABUSROUTES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTABUSROUTES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MBTABUSSTOPS_PT</Name> <Title>MBTA Bus Stops</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mbtabusstops_pt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MBTABUSSTOPS_PT.xml</Keyword> <Keyword>GISDATA.MBTABUSSTOPS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mbtabus.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MBTA_Bus_Routes_and_Stops.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.31212665195781" miny="42.10181969768631" maxx="-70.82315954948449" maxy="42.59078680015965"/> <BoundingBox SRS="EPSG:26986" minx="217031.999994058" miny="873118.1874923261" maxx="254077.23437861435" maxy="926179.5624876088"/> <Style> <Name>GISDATA.MBTABUSSTOPS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTABUSSTOPS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MBTAPARKINGLOTS_PT</Name> <Title>MBTA Parking Lots</Title> <Abstract>Generated from massgis_sde </Abstract> <KeywordList> <Keyword>Lots</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/MBTAPARKINGLOTS_PT.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MBTA_Parking_Lots.lyr</Keyword> <Keyword>Parking</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MBTAPARKINGLOTS_PT.xml</Keyword> <Keyword>MBTA</Keyword> <Keyword>MassgisMeatdataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>GISDATA.MBTAPARKINGLOTS_PT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.79499110711002" miny="41.87624676339158" maxx="-70.6248063125237" maxy="42.79912481934571"/> <BoundingBox SRS="EPSG:26986" minx="175867.38908735948" miny="847686.1294675806" maxx="271600.00844051875" maxy="949839.3481227237"/> <Style> <Name>GISDATA.MBTAPARKINGLOTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTAPARKINGLOTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MBTA_ARC</Name> <Title>MBTA Rapid Transit Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mbtaln1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MBTA_ARC.xml</Keyword> <Keyword>Lines</Keyword> <Keyword>Transit</Keyword> <Keyword>MBTA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mbta.htm</Keyword> <Keyword>Rapid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MBTA_Rapid_Transit.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.MBTA_ARC</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.254" miny="42.207" maxx="-70.991" maxy="42.438"/> <BoundingBox SRS="EPSG:26986" minx="220353.781" miny="884236.562" maxx="241892.953" maxy="909751.5"/> <Style> <Name>GISDATA.MBTA_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.MBTA_ARC::Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MBTA_NODE</Name> <Title>MBTA Rapid Transit Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mbtadf1x.avl</Keyword> <Keyword>Stations</Keyword> <Keyword>Transit</Keyword> <Keyword>MBTA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MBTA_NODE.xml</Keyword> <Keyword>GISDATA.MBTA_NODE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mbta.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MBTA_Rapid_Transit.lyr</Keyword> <Keyword>Rapid</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.253" miny="42.207" maxx="-70.991" maxy="42.438"/> <BoundingBox SRS="EPSG:26986" minx="220381.734" miny="884236.562" maxx="241892.953" maxy="909751.5"/> <Style> <Name>GISDATA.MBTA_NODE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.MBTA_NODE::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.MBTA_NODE::Labels_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.MBTA_NODE::Stations_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.MBTA_NODE::Stations</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MBTA_NODE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MEGABASINS_ARC</Name> <Title>Megabasins Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MEGABASINS_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>GISDATA.MEGABASINS_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/megabasins.htm</Keyword> <Keyword>Megabasins</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.195" maxx="-69.85" maxy="43.915"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="776514.38" maxx="331844.22" maxy="959747.44"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MEGABASINS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MEGABASINS_POLY</Name> <Title>Mega Basins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Mega</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MEGABASINS_POLY.xml</Keyword> <Keyword>Basins</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Megabasins_group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/megabasins.htm</Keyword> <Keyword>GISDATA.MEGABASINS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/megabas.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.221" maxx="-69.886" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="776514.38" maxx="331844.22" maxy="959747.44"/> <Style> <Name>GISDATA.MEGABASINS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MEGABASINS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.METOWNS_ARC</Name> <Title>Maine Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.METOWNS_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.METOWNS_ARC.xml</Keyword> <Keyword>Maine</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.095" miny="42.984" maxx="-66.75" maxy="47.48"/> <BoundingBox SRS="EPSG:26986" minx="232973.66" miny="979706.38" maxx="559975.38" maxy="1470926.5"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.METOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.METOWNS_POLY</Name> <Title>Maine Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.METOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ME_Towns.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/metdef1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.METOWNS_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>Maine</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.095" miny="42.984" maxx="-66.75" maxy="47.48"/> <BoundingBox SRS="EPSG:26986" minx="232973.66" miny="979706.38" maxx="559975.38" maxy="1470926.5"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.METOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.METOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.METOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.METOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MHDDISTRICTS_ARC</Name> <Title>MassHighway Districts Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MassHighway_Districts_Group.lyr</Keyword> <Keyword>MassHighway</Keyword> <Keyword>GISDATA.MHDDISTRICTS_ARC</Keyword> <Keyword>Districts</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mhddist.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mhddisa1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MHDDISTRICTS_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334975210684" miny="41.23034075522422" maxx="-69.89847708075766" maxy="42.888150234999216"/> <BoundingBox SRS="EPSG:26986" minx="33861.25917041386" miny="777514.31643602" maxx="330846.0891704163" maxy="959747.4364360285"/> <Style> <Name>GISDATA.MHDDISTRICTS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MHDDISTRICTS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MHDDISTRICTS_POLY</Name> <Title>MassHighway Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MassHighway_Districts_Group.lyr</Keyword> <Keyword>MassHighway</Keyword> <Keyword>Districts</Keyword> <Keyword>GISDATA.MHDDISTRICTS_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mhddist.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MHDDISTRICTS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mhddisp1.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.MHDDISTRICTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MHDDISTRICTS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.MHDDISTRICTS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MHDDISTRICTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MINLL10_ARC</Name> <Title>10 Minute Lat Long Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/latlong.avl</Keyword> <Keyword>Long</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/minll.htm</Keyword> <Keyword>Lat</Keyword> <Keyword>10</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/10_Minute_Lat_Long_Grid.lyr</Keyword> <Keyword>Grid</Keyword> <Keyword>Minute</Keyword> <Keyword>longitude</Keyword> <Keyword>latitude</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MINLL10_ARC.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.MINLL10_ARC</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.209" miny="38.807" maxx="-64.475" maxy="44.179"/> <BoundingBox SRS="EPSG:26986" minx="-16858.781" miny="527766.267" maxx="763367.929" maxy="1103143.89"/> <Style> <Name>GISDATA.MINLL10_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MINLL10_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MINLL1_ARC</Name> <Title>1 Minute Lat Long Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/latlong.avl</Keyword> <Keyword>Long</Keyword> <Keyword>GISDATA.MINLL1_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/minll.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/1_Minute_Lat_Long_Grid.lyr</Keyword> <Keyword>Lat</Keyword> <Keyword>1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MINLL1_ARC.xml</Keyword> <Keyword>Grid</Keyword> <Keyword>Minute</Keyword> <Keyword>longitude</Keyword> <Keyword>latitude</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.121" miny="40.46" maxx="-68.355" maxy="43.538"/> <BoundingBox SRS="EPSG:26986" minx="-11973.75" miny="694459.658" maxx="454352.473" maxy="1031974.98"/> <Style> <Name>GISDATA.MINLL1_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MINLL1_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.MINLL1_ARC::Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MINLL1_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.MWRASERVICE_POLY</Name> <Title>Towns with MWRA Water and Sewer</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>with</Keyword> <Keyword>MWRA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.MWRASERVICE_POLY.xml</Keyword> <Keyword>Sewer</Keyword> <Keyword>GISDATA.MWRASERVICE_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/mwraservice.htm</Keyword> <Keyword>Water</Keyword> <Keyword>Towns</Keyword> <Keyword>and</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/mwratown.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MWRA_Towns_with_Water_Sewer.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777542.851" maxx="330838.714" maxy="959747.471"/> <Style> <Name>GISDATA.MWRASERVICE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.MWRASERVICE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NATCOMM_POLY</Name> <Title>NHESP Natural Communities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>NHESP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NATCOMM_POLY.xml</Keyword> <Keyword>Communities</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natcomm.htm</Keyword> <Keyword>Natural</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Natural_Communities.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.NATCOMM_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/natcomm_poly.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.249" maxx="-69.917" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="34011.249" miny="779538.438" maxx="329344.698" maxy="958146.0"/> <Style> <Name>GISDATA.NATCOMM_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NATCOMM_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAUTICAL_ARC</Name> <Title>Nautical Features</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Nautical</Keyword> <Keyword>GISDATA.NAUTICAL_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Nautical_Features.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/naudes1a.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Features</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAUTICAL_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nautical.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.585" miny="41.027" maxx="-69.632" maxy="43.141"/> <BoundingBox SRS="EPSG:26986" minx="193055.89" miny="754628.56" maxx="351983.56" maxy="987775.15"/> <Style> <Name>GISDATA.NAUTICAL_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAUTICAL_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC</Name> <Title>NavTeq Roads MA</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC.xml</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.232" maxx="-69.91" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34857.493" miny="777769.185" maxx="329906.737" maxy="959741.094"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Curved_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Depgis_Labels_Max35k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Straight_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::Arcs</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC::ForOrthos</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_INT</Name> <Title>NavTeq MA Interstate Highways</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_INT.xml</Keyword> <Keyword>Interstate</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>Highways</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_INT</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.428" miny="41.638" maxx="-70.718" maxy="42.883"/> <BoundingBox SRS="EPSG:26986" minx="42454.699" miny="822561.53" maxx="263921.109" maxy="959166.447"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_INT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_INT"/> </LegendURL> </Style> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_INT"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC_INT::Max_150000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_INT"/> </LegendURL> </Style> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_INT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_OOS</Name> <Title>NavTeq Roads Out of State</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Out</Keyword> <Keyword>of</Keyword> <Keyword>Roads</Keyword> <Keyword>State</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_OOS.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_OOS</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.068" miny="41.422" maxx="-70.708" maxy="43.327"/> <BoundingBox SRS="EPSG:26986" minx="-8404.757" miny="799903.587" maxx="264250.508" maxy="1008453.878"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_OOS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_OOS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_OOS_INT</Name> <Title>NavTeq Roads Out of State Interstate</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Out</Keyword> <Keyword>of</Keyword> <Keyword>Roads</Keyword> <Keyword>State</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_OOS_INT.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>Interstate</Keyword> <Keyword>NavTeq</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_OOS_INT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.065" miny="41.506" maxx="-70.764" maxy="43.238"/> <BoundingBox SRS="EPSG:26986" minx="-8404.757" miny="809300.192" maxx="259811.403" maxy="998557.587"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_OOS_INT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_OOS_INT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_OOS_STATE</Name> <Title>NavTeq Roads Out of State State Highways</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Out</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_OOS_STATE</Keyword> <Keyword>of</Keyword> <Keyword>Roads</Keyword> <Keyword>State</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>Highways</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_OOS_STATE.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.068" miny="41.436" maxx="-70.712" maxy="43.327"/> <BoundingBox SRS="EPSG:26986" minx="-7407.269" miny="801495.715" maxx="261393.226" maxy="1008453.878"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_OOS_STATE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_OOS_STATE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_OOS_US</Name> <Title>NavTeq Roads Out of State US</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Out</Keyword> <Keyword>of</Keyword> <Keyword>US</Keyword> <Keyword>Roads</Keyword> <Keyword>State</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_OOS_US</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_OOS_US.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.008" miny="41.491" maxx="-70.75" maxy="43.315"/> <BoundingBox SRS="EPSG:26986" minx="-2907.67" miny="807420.954" maxx="260819.512" maxy="1007114.464"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_OOS_US::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_OOS_US"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_STATE</Name> <Title>NavTeq MA State Highways</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>State</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_STATE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>Highways</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_STATE.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.499" miny="41.496" maxx="-69.926" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="36677.609" miny="806982.276" maxx="328618.37" maxy="959490.556"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_STATE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_STATE"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC_STATE::Max_150000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_STATE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NAVTEQRDS_ARC_US</Name> <Title>NavTeq MA US Highways</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>US</Keyword> <Keyword>GISDATA.NAVTEQRDS_ARC_US</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NAVTEQRDS_ARC_US.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/geocode_data.htm</Keyword> <Keyword>NavTeq</Keyword> <Keyword>Highways</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.389" miny="41.622" maxx="-69.943" maxy="42.876"/> <BoundingBox SRS="EPSG:26986" minx="45613.869" miny="820725.497" maxx="327265.925" maxy="958323.281"/> <Style> <Name>GISDATA.NAVTEQRDS_ARC_US::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_US"/> </LegendURL> </Style> <Style> <Name>GISDATA.NAVTEQRDS_ARC_US::Max_150000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NAVTEQRDS_ARC_US"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NEMASK_ARC</Name> <Title>New England States Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/newnglnd.htm</Keyword> <Keyword>GISDATA.NEMASK_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NEMASK_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>England</Keyword> <Keyword>New</Keyword> <Keyword>States</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-76.74" miny="40.432" maxx="-66.75" maxy="47.48"/> <BoundingBox SRS="EPSG:26986" minx="-197177.114" miny="697766.748" maxx="559975.376" maxy="1470926.498"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NEMASK_POLY</Name> <Title>New England Mask</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/newnglnd.htm</Keyword> <Keyword>GISDATA.NEMASK_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nemask.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NE_States_Bordering_Mass.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NEMASK_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-76.74" miny="40.432" maxx="-66.75" maxy="47.48"/> <BoundingBox SRS="EPSG:26986" minx="-197177.114" miny="697766.748" maxx="559975.376" maxy="1470926.498"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Bright_Green</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Dark_Grey_W_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Med_Brown</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEMASK_POLY::Light_Yellow</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NEMASK_POLY_MASURVEY</Name> <Title>New England Mask Survey</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-76.74" miny="38.815" maxx="-66.75" maxy="47.48"/> <BoundingBox SRS="EPSG:26986" minx="-197177.114" miny="517829.109" maxx="559975.376" maxy="1470926.498"/> <Style> <Name>GISDATA.NEMASK_POLY_MASURVEY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEMASK_POLY_MASURVEY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NEWENGLAND_POLY</Name> <Title>New England States</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.NEWENGLAND_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/newnglnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/New_England_Outline.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nengdf1n.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NEWENGLAND_POLY.xml</Keyword> <Keyword>England</Keyword> <Keyword>New</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nengdf1p.avl</Keyword> <Keyword>States</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/New_England_Shaded.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.969" miny="40.938" maxx="-66.757" maxy="47.473"/> <BoundingBox SRS="EPSG:26986" minx="13057.11" miny="752105.38" maxx="559487.06" maxy="1470112.13"/> <Style> <Name>GISDATA.NEWENGLAND_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEWENGLAND_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEWENGLAND_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEWENGLAND_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEWENGLAND_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEWENGLAND_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NEWENGLAND_POLY::Shaded</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NEWENGLAND_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NHTOWNS_ARC</Name> <Title>New Hampshire Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.NHTOWNS_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>New</Keyword> <Keyword>Hampshire</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NHTOWNS_ARC.xml</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.606" miny="42.692" maxx="-70.669" maxy="45.307"/> <BoundingBox SRS="EPSG:26986" minx="113125.08" miny="938527.13" maxx="265272.47" maxy="1228675.5"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NHTOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NHTOWNS_POLY</Name> <Title>New Hampshire Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.NHTOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NH_Towns.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nhtdef1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NHTOWNS_POLY.xml</Keyword> <Keyword>New</Keyword> <Keyword>Hampshire</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.971" miny="42.666" maxx="-70.304" maxy="45.333"/> <BoundingBox SRS="EPSG:26986" minx="113125.08" miny="938527.13" maxx="265272.47" maxy="1228675.5"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NHTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NHTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NHTOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NHTOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NPDWSA_POLY</Name> <Title>Non Potential Drinking Water Areas NPDWSA</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NPDWSA_AQ.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/npdwsa.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/npdwsa_y.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NPDWSA_POLY.xml</Keyword> <Keyword>GISDATA.NPDWSA_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.224" miny="41.242" maxx="-69.918" maxy="42.883"/> <BoundingBox SRS="EPSG:26986" minx="59162.539" miny="778230.81" maxx="329234.16" maxy="959172.367"/> <Style> <Name>GISDATA.NPDWSA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NPDWSA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NRCSHUC10_POLY</Name> <Title>NRCS HUC 10</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>10</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NRCSHUC10_POLY.xml</Keyword> <Keyword>HUC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nrcshuc.htm</Keyword> <Keyword>GISDATA.NRCSHUC10_POLY</Keyword> <Keyword>NRCS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.948" miny="40.068" maxx="-69.855" maxy="44.16"/> <BoundingBox SRS="EPSG:26986" minx="3589.676" miny="777514.116" maxx="330846.416" maxy="972660.286"/> <Style> <Name>GISDATA.NRCSHUC10_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NRCSHUC10_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NRCSHUC12_POLY</Name> <Title>NRCS HUC 12</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NRCSHUC12_POLY.xml</Keyword> <Keyword>HUC</Keyword> <Keyword>GISDATA.NRCSHUC12_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nrcshuc.htm</Keyword> <Keyword>NRCS</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>12</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.948" miny="40.068" maxx="-69.855" maxy="44.16"/> <BoundingBox SRS="EPSG:26986" minx="3589.676" miny="777514.116" maxx="330846.416" maxy="972660.286"/> <Style> <Name>GISDATA.NRCSHUC12_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NRCSHUC12_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NRCSHUC8_POLY</Name> <Title>NRCS HUC 8</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>HUC</Keyword> <Keyword>8</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nrcshuc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NRCSHUC8_POLY.xml</Keyword> <Keyword>NRCS</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.NRCSHUC8_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.908" miny="41.223" maxx="-69.896" maxy="43.004"/> <BoundingBox SRS="EPSG:26986" minx="3589.676" miny="777514.116" maxx="330846.416" maxy="972660.286"/> <Style> <Name>GISDATA.NRCSHUC8_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NRCSHUC8_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NRCSHUC_ARC</Name> <Title>NRCS HUC Basins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.NRCSHUC_ARC</Keyword> <Keyword>Basins</Keyword> <Keyword>HUC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nrcshuc.htm</Keyword> <Keyword>NRCS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.90811889256118" miny="41.22343152420665" maxx="-69.89550036150332" maxy="43.0042751605217"/> <BoundingBox SRS="EPSG:26986" minx="3589.6758560006856" miny="777514.1158559811" maxx="330846.4158559972" maxy="972660.2858559886"/> <Style> <Name>GISDATA.NRCSHUC_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NRCSHUC_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NRCSHUC_POLY</Name> <Title>NRCS HUC Basins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Basins</Keyword> <Keyword>HUC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nrcshuc.htm</Keyword> <Keyword>NRCS</Keyword> <Keyword>GISDATA.NRCSHUC_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.90811889256118" miny="41.22343152420665" maxx="-69.89550036150332" maxy="43.0042751605217"/> <BoundingBox SRS="EPSG:26986" minx="3589.6758560006856" miny="777514.1158559811" maxx="330846.4158559972" maxy="972660.2858559886"/> <Style> <Name>GISDATA.NRCSHUC_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NRCSHUC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NWI_ARC</Name> <Title>National Wetlands Inventory Streams</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NWI_ARC.xml</Keyword> <Keyword>GISDATA.NWI_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/National_Wetlands_Inventory_Rivers_Light_Blue.lyr</Keyword> <Keyword>NWI</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nwioqa1.avl</Keyword> <Keyword>Wetlands</Keyword> <Keyword>Inventory</Keyword> <Keyword>National</Keyword> <Keyword>Streams</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nwi.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.58" miny="41.249" maxx="-69.922" maxy="42.956"/> <BoundingBox SRS="EPSG:26986" minx="30195.956" miny="779690.656" maxx="328754.059" maxy="967328.17"/> <Style> <Name>GISDATA.NWI_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NWI_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NWI_POLY</Name> <Title>National Wetlands Inventory Wetlands</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/National_Wetlands_Inventory_Solid_Polygons.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/National_Wetlands_Inventory_Transparent_Poly.lyr</Keyword> <Keyword>GISDATA.NWI_POLY</Keyword> <Keyword>Wetlands</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nwip1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nwioqp1.avl</Keyword> <Keyword>Inventory</Keyword> <Keyword>National</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NWI_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/nwi.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.583" miny="41.221" maxx="-69.884" maxy="42.962"/> <BoundingBox SRS="EPSG:26986" minx="30007.382" miny="776514.38" maxx="331844.22" maxy="968000.144"/> <Style> <Name>GISDATA.NWI_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NWI_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NYTOWNS_ARC</Name> <Title>New York Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NYTOWNS_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>York</Keyword> <Keyword>New</Keyword> <Keyword>GISDATA.NYTOWNS_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-80.137" miny="40.24" maxx="-71.853" maxy="45.061"/> <BoundingBox SRS="EPSG:26986" minx="-483413.097" miny="697766.752" maxx="170082.513" maxy="1201368.752"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NYTOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.NYTOWNS_POLY</Name> <Title>New York Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/nytdef1p.avl</Keyword> <Keyword>GISDATA.NYTOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.NYTOWNS_POLY.xml</Keyword> <Keyword>York</Keyword> <Keyword>New</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NY_Towns.lyr</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-80.137" miny="40.24" maxx="-71.853" maxy="45.061"/> <BoundingBox SRS="EPSG:26986" minx="-483413.097" miny="697766.752" maxx="170082.513" maxy="1201368.752"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NYTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NYTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.NYTOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.NYTOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OCEANMASK_POLY</Name> <Title>Ocean Mask</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/tmbmocea.avl</Keyword> <Keyword>Ocean</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OCE ANMASK_POLY.xml</Keyword> <Keyword>GISDATA.OCEANMASK_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>http://maps.massgis.state.ma.us/lyrs/Ocean.lyr</Keyword> <Keyword>Mask</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.92" miny="38.274" maxx="-65.946" maxy="44.868"/> <BoundingBox SRS="EPSG:26986" minx="-150000.0" miny="460000.001" maxx="640000.0" maxy="1179999.999"/> <Style> <Name>GISDATA.OCEANMASK_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OCEANMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OCEANMASK_POLY::Bright_Blue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OCEANMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OCEANMASK_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OCEANMASK_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OCEANMASK_POLY::Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OCEANMASK_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OCEANMASK_POLY_MASURVEYCOAST</Name> <Title>Ocean Mask Survey Coast</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.92" miny="38.274" maxx="-65.946" maxy="44.868"/> <BoundingBox SRS="EPSG:26986" minx="-150000.0" miny="460000.001" maxx="640000.0" maxy="1179999.999"/> <Style> <Name>GISDATA.OCEANMASK_POLY_MASURVEYCOAST::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OCEANMASK_POLY_MASURVEYCOAST"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OFBA_PT</Name> <Title>Office of Fishing and Boating Access Sites</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.OFBA_PT</Keyword> <Keyword>Sites</Keyword> <Keyword>Boating</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ofba.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OFBA_Sites_Ramptype.lyr</Keyword> <Keyword>and</Keyword> <Keyword>Fishing</Keyword> <Keyword>of</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OFBA_PT.xml</Keyword> <Keyword>Access</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ofba_pt.avl</Keyword> <Keyword>Office</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.411" miny="40.321" maxx="-69.942" maxy="43.79"/> <BoundingBox SRS="EPSG:26986" minx="46495.448" miny="781324.678" maxx="324637.641" maxy="954814.922"/> <Style> <Name>GISDATA.OFBA_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OFBA_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.OFBA_PT::Red_Asterisk</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OFBA_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OFFSH80K_ARC</Name> <Title>Offshore Town Boundaries Arcs 80K</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Boundaries</Keyword> <Keyword>Town</Keyword> <Keyword>Offshore</Keyword> <Keyword>80K</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/offshore.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.OFFSH80K_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OFFSH80K_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.127" miny="41.184" maxx="-69.832" maxy="42.876"/> <BoundingBox SRS="EPSG:26986" minx="231326.05" miny="771781.31" maxx="336337.88" maxy="958472.94"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OFFSH80K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OFFSH80K_POLY</Name> <Title>OffShore Town Boundaries Polys 80K</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.OFFSH80K_POLY</Keyword> <Keyword>Polys</Keyword> <Keyword>Boundaries</Keyword> <Keyword>Town</Keyword> <Keyword>OffShore</Keyword> <Keyword>80K</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/offshore.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OFFSH80K_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.127" miny="41.184" maxx="-69.832" maxy="42.876"/> <BoundingBox SRS="EPSG:26986" minx="231326.05" miny="771781.31" maxx="336337.88" maxy="958472.94"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OFFSH80K_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_ARC</Name> <Title>Openspace Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.OPENSPACE_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/osp.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777614.941" maxx="330835.134" maxy="959662.631"/> <Style> <Name>GISDATA.OPENSPACE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_ARC::Grey</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_ARC::DCR_All_External_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_ARC::Bounds_Type</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_ARC_SV_EX_DCR</Name> <Title>DCR External Openspace Arcs</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.532" miny="41.249" maxx="-69.957" maxy="42.844"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="779556.331" maxx="326178.014" maxy="954896.345"/> <Style> <Name>GISDATA.OPENSPACE_ARC_SV_EX_DCR::Max_200000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_ARC_SV_EX_DCR"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_POLY</Name> <Title>Openspace</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceOutline_PermProt.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_purp.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceLands.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_land_tr.avl</Keyword> <Keyword>GISDATA.OPENSPACE_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceInterestOverlay.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_notprot.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_prot.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/osp.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_int.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MassGIS_OpenSpace.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_permprot.avl</Keyword> <Keyword>Openspace</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OPENSPACE_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceLandsTr.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceOutline_NotProt.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpacePrim_Purp.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/OpenSpaceLevel_Prot.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/os_land.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.887"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777614.941" maxx="330835.134" maxy="959662.631"/> <Style> <Name>GISDATA.OPENSPACE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::MDAR_APR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Max_50000_Protected_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::MDAR_APR_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Outlines_Non_Protected</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Outlines_Protected</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Primary_Purpose</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::DFG_Lands</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Protected_Max_200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Ownership_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Max_800000_Protected</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Ownership_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Site_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Restrictions</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::DCR_Fee_Max_100000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Level_Protection</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Protected_Max_100000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Protected_Orange_Hatch_12000_250000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Protected_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::Basemap_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::DCR_OLI_Max_100000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OPENSPACE_POLY::DCR_Fee_Max_100000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_POLY_SV_DCR</Name> <Title>DCR Openspace</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.249" maxx="-69.956" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="779556.331" maxx="326178.014" maxy="958162.441"/> <Style> <Name>GISDATA.OPENSPACE_POLY_SV_DCR::Max_200000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY_SV_DCR"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_POLY_SV_DCR_FEE</Name> <Title>DCR Fee-owned Property</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.249" maxx="-69.956" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="779556.331" maxx="326178.014" maxy="958162.441"/> <Style> <Name>GISDATA.OPENSPACE_POLY_SV_DCR_FEE::Max_200000_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY_SV_DCR_FEE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OPENSPACE_POLY_SV_DFG_ALL</Name> <Title>DFG Openspace</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.495" miny="41.239" maxx="-69.932" maxy="42.872"/> <BoundingBox SRS="EPSG:26986" minx="36980.742" miny="778414.881" maxx="328097.244" maxy="957974.081"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OPENSPACE_POLY_SV_DFG_ALL"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OQISLE_POLY</Name> <Title>Orthophoto OQ Index 400m Grid Islands</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Orthophoto</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/oqindx.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/oqinum1p.avl</Keyword> <Keyword>400m</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Island_Orthos.lyr</Keyword> <Keyword>OQ</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OQISLE_POLY.xml</Keyword> <Keyword>Islands</Keyword> <Keyword>Index</Keyword> <Keyword>Grid</Keyword> <Keyword>GISDATA.OQISLE_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.992" miny="41.213" maxx="-69.932" maxy="41.542"/> <BoundingBox SRS="EPSG:26986" minx="242586.31" miny="774812.25" maxx="330869.0" maxy="810342.63"/> <Style> <Name>GISDATA.OQISLE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQISLE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OQMAIN_POLY</Name> <Title>Orthophoto OQ Index 4000m Grid Mainland</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.OQMAIN_POLY</Keyword> <Keyword>Mainland</Keyword> <Keyword>Orthophoto</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/oqindx.htm</Keyword> <Keyword>4000m</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OQMAIN_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Mainland_Orthos.lyr</Keyword> <Keyword>OQ</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/oqmnum1p.avl</Keyword> <Keyword>Index</Keyword> <Keyword>Grid</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.545" miny="41.199" maxx="-69.872" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="33000.004" miny="774000.001" maxx="333000.004" maxy="962000.001"/> <Style> <Name>GISDATA.OQMAIN_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQMAIN_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OQMAIN_POLY::Orange</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQMAIN_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OQMAIN_POLY::USGS_Ortho_Availability</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQMAIN_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OQMAIN_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQMAIN_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OQMAIN_POLY::Year_BW_Ortho</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OQMAIN_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ORW_POLY</Name> <Title>Outstanding Resource Waters</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.ORW_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Outstanding_Resource_Waters.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/orworw1p.avl</Keyword> <Keyword>Resource</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ORW_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/orw.htm</Keyword> <Keyword>Waters</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Outstanding</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.509" miny="41.391" maxx="-69.894" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="35408.153" miny="795354.634" maxx="331150.861" maxy="967053.688"/> <Style> <Name>GISDATA.ORW_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ORW_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ORW_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ORW_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ORW_POLY::Depgis_Green_Letters_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ORW_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OUTLINE25K_ARC</Name> <Title>Massachusetts Arcs 25k Coast</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.OUTLINE25K_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OUTLINE25K_ARC.xml</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Coast</Keyword> <Keyword>25k</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/outline.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777542.88" maxx="330838.69" maxy="959747.44"/> <Style> <Name>GISDATA.OUTLINE25K_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE25K_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.OUTLINE25K_ARC::Coastline_100K_Min_35001_Max_200000_Solid_DodgerBlue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE25K_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OUTLINE25K_POLY</Name> <Title>Massachusetts Outline Arcs 25K Coast Poly</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Poly</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OUTLINE25K_POLY.xml</Keyword> <Keyword>25K</Keyword> <Keyword>GISDATA.OUTLINE25K_POLY</Keyword> <Keyword>Coast</Keyword> <Keyword>Arcs</Keyword> <Keyword>Outline</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/outnum2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Massachusetts_25K_coast_shaded.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334974299713" miny="41.23059785274543" maxx="-69.89856762262488" maxy="42.888150182745186"/> <BoundingBox SRS="EPSG:26986" minx="33861.25999999826" miny="777542.879999982" maxx="330838.69000000076" maxy="959747.439999989"/> <Style> <Name>GISDATA.OUTLINE25K_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE25K_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OUTLINE_ARC</Name> <Title>Massachusetts Outline 100K</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/outnum1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Massachusetts_100K_coast.lyr</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>GISDATA.OUTLINE_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OUTLINE_ARC.xml</Keyword> <Keyword>100K</Keyword> <Keyword>Outline</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/outline.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.OUTLINE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.OUTLINE_ARC::Coastline_100K_Min_200001_Solid_DodgerBlue</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.OUTLINE_POLY</Name> <Title>Massachusetts 100K Coast</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Massachusetts</Keyword> <Keyword>Coast</Keyword> <Keyword>100K</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/outline.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.OUTLINE_POLY.xml</Keyword> <Keyword>GISDATA.OUTLINE_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Massachusetts_100K_coast_shaded.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/outnum2p.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.OUTLINE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.OUTLINE_POLY::Outline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.OUTLINE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PARCELTOWNS_100ACREWIND</Name> <Title>Town Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.PARCELTOWNS_100ACREWIND</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.PARCELTOWNS_100ACREWIND::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PARCELTOWNS_100ACREWIND"/> </LegendURL> </Style> <Style> <Name>GISDATA.PARCELTOWNS_100ACREWIND::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PARCELTOWNS_100ACREWIND"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PARCEL_STATUS</Name> <Title>Parcel Status</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PARCEL_STATUS.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.PARCEL_STATUS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PARCEL_STATUS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PARKRIDELOTS_PT</Name> <Title>Park and Ride Lots</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Park_and_Ride_Lots.lyr</Keyword> <Keyword>Lots</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PARKRIDELOTS_PT.xml</Keyword> <Keyword>Park</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>Ride</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> <Keyword>GISDATA.PARKRIDELOTS_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/PARKRIDELOTS_PT.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.753" miny="41.389" maxx="-70.052" maxy="42.82"/> <BoundingBox SRS="EPSG:26986" minx="97515.622" miny="794204.552" maxx="318443.158" maxy="952191.803"/> <Style> <Name>GISDATA.PARKRIDELOTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PARKRIDELOTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.POLICESTATIONS_PT_MEMA</Name> <Title>Police Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Stations</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.POLICESTATIONS_PT_MEMA.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/policestations.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Police_Stations.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/policestations_pt_mema.avl</Keyword> <Keyword>Police</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.POLICESTATIONS_PT_MEMA</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.476" miny="41.277" maxx="-69.934" maxy="42.858"/> <BoundingBox SRS="EPSG:26986" minx="38444.324" miny="782584.371" maxx="328011.974" maxy="956321.221"/> <Style> <Name>GISDATA.POLICESTATIONS_PT_MEMA::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.POLICESTATIONS_PT_MEMA"/> </LegendURL> </Style> <Style> <Name>GISDATA.POLICESTATIONS_PT_MEMA::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.POLICESTATIONS_PT_MEMA"/> </LegendURL> </Style> <Style> <Name>GISDATA.POLICESTATIONS_PT_MEMA::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.POLICESTATIONS_PT_MEMA"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PRIHAB_POLY</Name> <Title>NHESP Priority Habitats of Rare Species</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Rare</Keyword> <Keyword>GISDATA.PRIHAB_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PRIHAB_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/NHESP_Priority_Sites.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/prihab.htm</Keyword> <Keyword>Priority</Keyword> <Keyword>NHESP</Keyword> <Keyword>of</Keyword> <Keyword>Habitats</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/phab1p.avl</Keyword> <Keyword>Species</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.215" maxx="-69.83" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="775788.395" maxx="336458.605" maxy="958303.771"/> <Style> <Name>GISDATA.PRIHAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRIHAB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.PRIHAB_POLY::Coastal</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRIHAB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.PRIHAB_POLY::Green_Dash_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRIHAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PRIMEFOREST_POLY</Name> <Title>Prime Forest Land</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Forest</Keyword> <Keyword>Prime</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Prime_forest_Land.lyr</Keyword> <Keyword>Land</Keyword> <Keyword>GISDATA.PRIMEFOREST_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PRIMEFOREST_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/primeforest_poly.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/primeforest.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334927189331" miny="41.23150633545241" maxx="-69.89972668648528" maxy="42.88832610155396"/> <BoundingBox SRS="EPSG:26986" minx="33861.26171892014" miny="777643.812554182" maxx="330743.999995091" maxy="959745.8970852736"/> <Style> <Name>GISDATA.PRIMEFOREST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRIMEFOREST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PRISONS_PT</Name> <Title>Prisons</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/prisons.htm</Keyword> <Keyword>prisons</Keyword> <Keyword>GISDATA.PRISONS_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/prison1x.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Prisons.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PRISONS_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/datalayer_htm/prisons.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.216" miny="41.383" maxx="-70.499" maxy="42.719"/> <BoundingBox SRS="EPSG:26986" minx="59442.844" miny="793969.971" maxx="282009.684" maxy="940967.811"/> <Style> <Name>GISDATA.PRISONS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRISONS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.PRISONS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PRISONS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PVP_PT</Name> <Title>Potential Vernal Pools</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pvp.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/pvp1x.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Potential_Vernal_Pools.lyr</Keyword> <Keyword>Pools</Keyword> <Keyword>Potential</Keyword> <Keyword>GISDATA.PVP_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PVP_PT.xml</Keyword> <Keyword>Vernal</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.542" miny="41.249" maxx="-69.901" maxy="42.904"/> <BoundingBox SRS="EPSG:26986" minx="33173.45" miny="779607.0" maxx="330622.13" maxy="961440.94"/> <Style> <Name>GISDATA.PVP_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PVP_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.PVP_PT::Halo</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PVP_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PWSDEP_PT</Name> <Title>Public Water Supplies</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pws.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PWSDEP_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.498" miny="41.236" maxx="-69.922" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="36738.766" miny="778067.529" maxx="328895.142" maxy="959502.875"/> <Style> <Name>GISDATA.PWSDEP_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PWSDEP_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.PWSTERR_POLY</Name> <Title>Public Water Supply Service Territories</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.PWSTERR_POLY.xml</Keyword> <Keyword>Supply</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/pwsterr_poly.avl</Keyword> <Keyword>Service</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pwsterr.htm</Keyword> <Keyword>GISDATA.PWSTERR_POLY</Keyword> <Keyword>Territories</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Public</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Public_Water_Supply_Service_Territories.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.02563457316512" miny="41.51132303922573" maxx="-70.50986040352556" maxy="42.88834488910621"/> <BoundingBox SRS="EPSG:26986" minx="157059.60829619208" miny="807252.224782837" maxx="280889.568347515" maxy="959746.9154848634"/> <Style> <Name>GISDATA.PWSTERR_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.PWSTERR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.Q3FLOOD_POLY</Name> <Title>FEMA Flood Zones</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/qflzon1p.avl</Keyword> <Keyword>GISDATA.Q3FLOOD_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.Q3FLOOD_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/FEMA_Q3_Flood_Zones.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/q3.htm</Keyword> <Keyword>FEMA</Keyword> <Keyword>Zones</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Flood</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.526" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34497.244" miny="777486.441" maxx="330899.234" maxy="959696.071"/> <Style> <Name>GISDATA.Q3FLOOD_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.Q3FLOOD_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.Q3FLOOD_POLY::Depgis_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.Q3FLOOD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QRBATH_ARC</Name> <Title>Quabbin Reservoir Bathymetry Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/qrbath_arc.avl</Keyword> <Keyword>Reservoir</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.QRBATH_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>GISDATA.QRBATH_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Quabbin_Reservoir_Bathymetry.lyr</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>Quabbin</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/qrbath.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.383" miny="42.28" maxx="-72.207" maxy="42.53"/> <BoundingBox SRS="EPSG:26986" minx="127481.961" miny="892510.188" maxx="141667.047" maxy="920179.312"/> <Style> <Name>GISDATA.QRBATH_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QRBATH_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QRBATH_POLY</Name> <Title>Quabbin Reservoir Bathymetry Polys</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Polys</Keyword> <Keyword>Reservoir</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.QRBATH_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/qrbath_poly.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Quabbin_Reservoir_Bathymetry.lyr</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>Quabbin</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.QRBATH_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/qrbath.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.423" miny="42.277" maxx="-72.167" maxy="42.532"/> <BoundingBox SRS="EPSG:26986" minx="127481.961" miny="892510.188" maxx="141667.047" maxy="920179.312"/> <Style> <Name>GISDATA.QRBATH_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QRBATH_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QUADSTICS_PT</Name> <Title>Quadrangle Templace Tics</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QUADSTICS_PT</Keyword> <Keyword>Templace</Keyword> <Keyword>Quadrangle</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/quads.htm</Keyword> <Keyword>Tics</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53101227748792" miny="41.198584509466315" maxx="-69.83901152698216" maxy="43.00236480183984"/> <BoundingBox SRS="EPSG:26986" minx="34354.3742153928" miny="773974.7499999823" maxx="335458.68421539874" maxy="972430.3799999874"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QUADSTICS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QUADS_POLY</Name> <Title>USGS Topo Quads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Topo</Keyword> <Keyword>GISDATA.QUADS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/quanum1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Topographic_Quads_Index.lyr</Keyword> <Keyword>Quads</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.QUADS_POLY.xml</Keyword> <Keyword>USGS</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/quads.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.568" miny="40.218" maxx="-69.802" maxy="43.984"/> <BoundingBox SRS="EPSG:26986" minx="34354.59" miny="773982.0" maxx="335458.78" maxy="972430.5"/> <Style> <Name>GISDATA.QUADS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QUADS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QUADS_POLY_REVDATE</Name> <Title>USGS Quads Last Revised</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Revised</Keyword> <Keyword>Last</Keyword> <Keyword>GISDATA.QUADS_POLY_REVDATE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.QUADS_POLY_REVDATE.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/quaddate.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_Quads_Last_Revised.lyr</Keyword> <Keyword>Quads</Keyword> <Keyword>USGS</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/quads.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.199" maxx="-69.839" maxy="43.003"/> <BoundingBox SRS="EPSG:26986" minx="34354.59" miny="773982.0" maxx="335458.78" maxy="972430.5"/> <Style> <Name>GISDATA.QUADS_POLY_REVDATE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QUADS_POLY_REVDATE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QWWAIRPORT_POLY</Name> <Title>DEM Quabbin QWW Airports</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QWWAIRPORT_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.79663779062858" miny="42.42262050486256" maxx="-71.78907475813268" maxy="42.42923010181596"/> <BoundingBox SRS="EPSG:26986" minx="175589.90192549975" miny="908053.7494254846" maxx="176209.78192550098" maxy="908785.8094254886"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWAIRPORT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QWWBAS_POLY</Name> <Title>DEM Quabbin QWW Basins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QWWBAS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.429" miny="42.271" maxx="-71.682" maxy="42.58"/> <BoundingBox SRS="EPSG:26986" minx="123722.97" miny="891544.38" maxx="185020.77" maxy="925460.69"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWBAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWBAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWBAS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWBAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QWWDEMCARE_POLY</Name> <Title>DEM Care and Control Openspace</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QWWDEMCARE_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.90948613380787" miny="42.46570880002213" maxx="-71.82105325417768" maxy="42.52763686144504"/> <BoundingBox SRS="EPSG:26986" minx="166356.0975056357" miny="912878.1912556207" maxx="173596.15750563768" maxy="919726.2512556249"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWDEMCARE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QWWTOWNBUFFERD_POLY</Name> <Title>DEM Quabbin QWW Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QWWTOWNBUFFERD_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.428" miny="42.278" maxx="-71.683" maxy="42.576"/> <BoundingBox SRS="EPSG:26986" minx="123815.956" miny="892370.626" maxx="184901.936" maxy="925054.186"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNBUFFERD_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNBUFFERD_POLY::Secondary_Outline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNBUFFERD_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNBUFFERD_POLY::Secondary</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNBUFFERD_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNBUFFERD_POLY::Primary_Outline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNBUFFERD_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNBUFFERD_POLY::Primary</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNBUFFERD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.QWWTOWNPARCELS_POLY</Name> <Title>DCR QWW Town Parcels</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.QWWTOWNPARCELS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.437" miny="42.259" maxx="-71.664" maxy="42.595"/> <BoundingBox SRS="EPSG:26986" minx="123116.21" miny="890264.56" maxx="186429.66" maxy="927194.13"/> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::MDC_CR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::Oth_OS</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::MDC_CR</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::Assessor_Lots</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::MDC_Owned</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.QWWTOWNPARCELS_POLY::MDCWSPA_Roads</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.QWWTOWNPARCELS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RECORDED_LAND_PLANS_POLY</Name> <Title>Recorded Land Plans</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-141.627" miny="-90.0" maxx="103.174" maxy="90.0"/> <BoundingBox SRS="EPSG:26986" minx="0.0" miny="0.0" maxx="9.223372036854776E18" maxy="9.223372036854776E18"/> <Style> <Name>Red_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RECORDED_LAND_PLANS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGCZM_POLY</Name> <Title>CZM Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.REGCZM_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_czm.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.349" miny="41.237" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="212674.454" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.REGCZM_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGCZM_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGDEEDS_POLY</Name> <Title>Registries of Deeds Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Registries</Keyword> <Keyword>of</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/REG_DEEDS.avl</Keyword> <Keyword>GISDATA.REGDEEDS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Registries_of_Deeds_Districts.lyr</Keyword> <Keyword>Districts</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/regdeeds.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGDEEDS_POLY.xml</Keyword> <Keyword>Deeds</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.REGDEEDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEEDS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGDEEDS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEEDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGDEP_ARC</Name> <Title>DEP Regions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.REGDEP_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_dep.htm</Keyword> <Keyword>Regions</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGDEP_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.266" miny="777514.316" maxx="330846.096" maxy="959747.436"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEP_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGDEP_POLY</Name> <Title>DEP Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Regions.lyr</Keyword> <Keyword>GISDATA.REGDEP_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/depreg1p.avl</Keyword> <Keyword>Regions</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_dep.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGDEP_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DEP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.266" miny="777514.316" maxx="330846.096" maxy="959747.436"/> <Style> <Name>GISDATA.REGDEP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGDEP_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGDEP_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDEP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGDPHEPC_POLY</Name> <Title>Massachusetts Emergency Prepardness Regional Coalitions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Emergency</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGDPHEPC_POLY.xml</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/regdphep.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Mass_Emergency_Preparedness_Regional_Coalitions.lyr</Keyword> <Keyword>Coalitions</Keyword> <Keyword>Regional</Keyword> <Keyword>Prepardness</Keyword> <Keyword>GISDATA.REGDPHEPC_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regdphepc_poly.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777606.376" maxx="330836.968" maxy="959743.061"/> <Style> <Name>GISDATA.REGDPHEPC_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDPHEPC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGDPHEP_POLY</Name> <Title>Massachusetts Emergency Prepardness Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Emergency</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Mass_Emergency_Preparedness_Regions.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/regdphep.htm</Keyword> <Keyword>Regions</Keyword> <Keyword>GISDATA.REGDPHEP_POLY</Keyword> <Keyword>Prepardness</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGDPHEP_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regdphep_poly.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.745" miny="777606.376" maxx="330836.968" maxy="959743.061"/> <Style> <Name>GISDATA.REGDPHEP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDPHEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGDPHEP_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGDPHEP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGEMS_ARC</Name> <Title>EMS Regions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regemsa1.avl</Keyword> <Keyword>Arcs</Keyword> <Keyword>EMS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGEMS_ARC.xml</Keyword> <Keyword>Regions</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EMS_Regions_Group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_ems.htm</Keyword> <Keyword>GISDATA.REGEMS_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.259" miny="777514.316" maxx="330846.089" maxy="959747.436"/> <Style> <Name>GISDATA.REGEMS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEMS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGEMS_POLY</Name> <Title>EMS Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Emergency</Keyword> <Keyword>Services</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGEMS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regemsp1.avl</Keyword> <Keyword>GISDATA.REGEMS_POLY</Keyword> <Keyword>Medical</Keyword> <Keyword>EMS</Keyword> <Keyword>Regions</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/EMS_Regions_Group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_ems.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.REGEMS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEMS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGEMS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEMS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGEOHHS_ARC</Name> <Title>Executive Office of Health and Human Services Regions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Executive</Keyword> <Keyword>EOHHS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regeohhsa.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGEOHHS_ARC.xml</Keyword> <Keyword>Human</Keyword> <Keyword>Arcs</Keyword> <Keyword>Regions</Keyword> <Keyword>Health</Keyword> <Keyword>GISDATA.REGEOHHS_ARC</Keyword> <Keyword>and</Keyword> <Keyword>of</Keyword> <Keyword>Services</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/REG_EOHHS_Group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_eohhs.htm</Keyword> <Keyword>Office</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.267" miny="777514.312" maxx="330846.097" maxy="959747.442"/> <Style> <Name>GISDATA.REGEOHHS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEOHHS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGEOHHS_POLY</Name> <Title>Executive Office of Health and Human Services Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Executive</Keyword> <Keyword>Human</Keyword> <Keyword>Regions</Keyword> <Keyword>Health</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGEOHHS_POLY.xml</Keyword> <Keyword>and</Keyword> <Keyword>of</Keyword> <Keyword>GISDATA.REGEOHHS_POLY</Keyword> <Keyword>Services</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/REG_EOHHS_Group.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_eohhs.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/regeohhsp.avl</Keyword> <Keyword>Office</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.265" miny="777514.313" maxx="330846.095" maxy="959747.443"/> <Style> <Name>GISDATA.REGEOHHS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEOHHS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGEOHHS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGEOHHS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGMEMA_ARC</Name> <Title>MEMA Regions Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGMEMA_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/memaa1.avl</Keyword> <Keyword>MEMA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_mema.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MEMA_Regions_Group.lyr</Keyword> <Keyword>Arcs</Keyword> <Keyword>Regions</Keyword> <Keyword>GISDATA.REGMEMA_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.267" miny="777514.312" maxx="330846.097" maxy="959747.442"/> <Style> <Name>GISDATA.REGMEMA_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGMEMA_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.REGMEMA_POLY</Name> <Title>MEMA Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/memap1.avl</Keyword> <Keyword>MEMA</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/reg_mema.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MEMA_Regions_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.REGMEMA_POLY.xml</Keyword> <Keyword>Regions</Keyword> <Keyword>GISDATA.REGMEMA_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.312" maxx="330846.094" maxy="959747.442"/> <Style> <Name>GISDATA.REGMEMA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGMEMA_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.REGMEMA_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.REGMEMA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RITOWNS_ARC</Name> <Title>Rhode Island Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.RITOWNS_ARC</Keyword> <Keyword>Rhode</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RITOWNS_ARC.xml</Keyword> <Keyword>Island</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.9" miny="41.146" maxx="-71.117" maxy="42.019"/> <BoundingBox SRS="EPSG:26986" minx="166909.66" miny="766238.56" maxx="231701.28" maxy="863172.56"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RITOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RITOWNS_POLY</Name> <Title>Rhode Island Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.RITOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RITOWNS_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/RI_Towns.lyr</Keyword> <Keyword>Rhode</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ritdef1p.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>Island</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.9" miny="41.146" maxx="-71.117" maxy="42.019"/> <BoundingBox SRS="EPSG:26986" minx="166909.66" miny="766238.56" maxx="231701.28" maxy="863172.56"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RITOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RITOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RITOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RITOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RPAS_POLY</Name> <Title>Regional Planning Agencies</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Planning_Agencies_Outline.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Planning_Agencies.lyr</Keyword> <Keyword>Agencies</Keyword> <Keyword>GISDATA.RPAS_POLY</Keyword> <Keyword>Planning</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/rparpa1p.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/rpas.htm</Keyword> <Keyword>Regional</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/rparoutln.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RPAS_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.RPAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RPAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RPAS_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RPAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RPAS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RPAS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RPAS_POLY::Shaded_Polygons</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RPAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTASMBTAHIGH_POLY</Name> <Title>MBTA Highest Assessment Area</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Assessment</Keyword> <Keyword>GISDATA.RTASMBTAHIGH_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTASMBTAHIGH_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Transit_Authorities.lyr</Keyword> <Keyword>Area</Keyword> <Keyword>Highest</Keyword> <Keyword>MBTA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/RTASMBTAHIGH_POLY.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.271" miny="42.2" maxx="-70.868" maxy="42.454"/> <BoundingBox SRS="EPSG:26986" minx="218931.802" miny="883438.248" maxx="251989.484" maxy="911505.127"/> <Style> <Name>GISDATA.RTASMBTAHIGH_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASMBTAHIGH_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RTASMBTAHIGH_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASMBTAHIGH_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTASMBTAOTHER_POLY</Name> <Title>Other Areas Served By MBTA</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>By</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTASMBTAOTHER_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Transit_Authorities.lyr</Keyword> <Keyword>Areas</Keyword> <Keyword>Other</Keyword> <Keyword>MBTA</Keyword> <Keyword>GISDATA.RTASMBTAOTHER_POLY</Keyword> <Keyword>Served</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/RTASMBTAOTHER_POLY.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.998" miny="41.691" maxx="-70.51" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="159296.171" miny="827213.188" maxx="280916.063" maxy="959743.061"/> <Style> <Name>GISDATA.RTASMBTAOTHER_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASMBTAOTHER_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTASMBTASEC_POLY</Name> <Title>MBTA Secondary Assessment Area</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Assessment</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Transit_Authorities.lyr</Keyword> <Keyword>Area</Keyword> <Keyword>MBTA</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/RTASMBTASEC_POLY.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTASMBTASEC_POLY.xml</Keyword> <Keyword>GISDATA.RTASMBTASEC_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Secondary</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.497" miny="42.055" maxx="-70.714" maxy="42.674"/> <BoundingBox SRS="EPSG:26986" minx="200243.655" miny="867490.661" maxx="264432.58" maxy="935977.812"/> <Style> <Name>GISDATA.RTASMBTASEC_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASMBTASEC_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RTASMBTASEC_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASMBTASEC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTASNONMBTA_POLY</Name> <Title>Non MBTA RTAs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Authorities</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Regional_Transit_Authorities.lyr</Keyword> <Keyword>Transit</Keyword> <Keyword>RTAs</Keyword> <Keyword>MBTA</Keyword> <Keyword>Regional</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/RTASNONMBTA_POLY.avl</Keyword> <Keyword>Non</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTASNONMBTA_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.RTASNONMBTA_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.732" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>GISDATA.RTASNONMBTA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASNONMBTA_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.RTASNONMBTA_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTASNONMBTA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTEMARKERS_PT</Name> <Title>Route Markers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.RTEMARKERS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/exits_rtes.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/rtemarkers_pt.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Highway_Routemarkers.lyr</Keyword> <Keyword>Route</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Markers</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTEMARKERS_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.475" miny="41.533" maxx="-69.93" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="38573.996" miny="811036.996" maxx="328262.996" maxy="958057.996"/> <Style> <Name>GISDATA.RTEMARKERS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTEMARKERS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.RTEMARKERS_PT::Depgis_Max200k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTEMARKERS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.RTMARKERS_PT_EOTMAJOR</Name> <Title>Route Markers EOT Major</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Major</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/exits_rtes.htm</Keyword> <Keyword>GISDATA.RTMARKERS_PT_EOTMAJOR</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.RTMARKERS_PT_EOTMAJOR.xml</Keyword> <Keyword>EOT</Keyword> <Keyword>Route</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Markers</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.383" miny="41.625" maxx="-70.009" maxy="42.805"/> <BoundingBox SRS="EPSG:26986" minx="45906.996" miny="821057.996" maxx="322001.996" maxy="950518.996"/> <Style> <Name>GISDATA.RTMARKERS_PT_EOTMAJOR::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTMARKERS_PT_EOTMAJOR"/> </LegendURL> </Style> <Style> <Name>GISDATA.RTMARKERS_PT_EOTMAJOR::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.RTMARKERS_PT_EOTMAJOR"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SALTMARSHRSTR_PT</Name> <Title>Northeast Salt Marsh Projects</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Projects</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Northeast_Salt_Marsh_Projects.lyr</Keyword> <Keyword>Marsh</Keyword> <Keyword>Northeast</Keyword> <Keyword>GISDATA.SALTMARSHRSTR_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/smrestor.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/smrestor.avl</Keyword> <Keyword>Salt</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SALTMARSHRSTR_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.888" miny="42.642" maxx="-70.695" maxy="42.865"/> <BoundingBox SRS="EPSG:26986" minx="250204.2" miny="932738.38" maxx="265815.38" maxy="957371.13"/> <Style> <Name>GISDATA.SALTMARSHRSTR_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SALTMARSHRSTR_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SCENINV_POLY</Name> <Title>Scenic Landscapes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Scenic</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/scen-inv.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/scenic.avl</Keyword> <Keyword>GISDATA.SCENINV_POLY</Keyword> <Keyword>Landscapes</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SCENINV_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Scenic_Landscapes.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.484" miny="41.26" maxx="-69.89" maxy="42.847"/> <BoundingBox SRS="EPSG:26986" minx="37790.88" miny="780713.0" maxx="331594.13" maxy="955105.25"/> <Style> <Name>GISDATA.SCENINV_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCENINV_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SCHOOLDISTELEM_POLY</Name> <Title>Elementary School Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/schooldistricts.htm</Keyword> <Keyword>Districts</Keyword> <Keyword>Elementary</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SCHOOLDISTELEM_POLY.xml</Keyword> <Keyword>School</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Elementary_School_Districts.lyr</Keyword> <Keyword>GISDATA.SCHOOLDISTELEM_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/schooldistelem_poly.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.SCHOOLDISTELEM_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTELEM_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLDISTELEM_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTELEM_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SCHOOLDISTHIGH_POLY</Name> <Title>High School Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/schooldistricts.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/schooldisthigh_poly.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/High_School_Districts.lyr</Keyword> <Keyword>Districts</Keyword> <Keyword>High</Keyword> <Keyword>School</Keyword> <Keyword>GISDATA.SCHOOLDISTHIGH_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SCHOOLDISTHIGH_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.SCHOOLDISTHIGH_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTHIGH_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLDISTHIGH_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTHIGH_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SCHOOLDISTMID_POLY</Name> <Title>Middle School Districts</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/schooldistricts.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SCHOOLDISTMID_POLY.xml</Keyword> <Keyword>Middle</Keyword> <Keyword>Districts</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Middle_School_Districts.lyr</Keyword> <Keyword>GISDATA.SCHOOLDISTMID_POLY</Keyword> <Keyword>School</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/schooldistmid_poly.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.SCHOOLDISTMID_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTMID_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLDISTMID_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLDISTMID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SCHOOLS_PT</Name> <Title>Pre-kindergarten to High School Buildings</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>to</Keyword> <Keyword>GISDATA.SCHOOLS_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Schools_PK_to_High_School.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/SCHOOLS_PT.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SCHOOLS_PT.xml</Keyword> <Keyword>High</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/schools.htm</Keyword> <Keyword>Buildings</Keyword> <Keyword>School</Keyword> <Keyword>Pre-kindergarten</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.474" miny="40.271" maxx="-69.892" maxy="43.853"/> <BoundingBox SRS="EPSG:26986" minx="41548.014" miny="780493.031" maxx="328074.784" maxy="957414.941"/> <Style> <Name>GISDATA.SCHOOLS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLS_PT::Buildings_Max_30000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.SCHOOLS_PT::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SCHOOLS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SEAPORTS_PT</Name> <Title>Seaports</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Seaports.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SEAPORTS_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/SEAPORTS_PT.avl</Keyword> <Keyword>Seaports</Keyword> <Keyword>GISDATA.SEAPORTS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.169" miny="41.286" maxx="-70.044" maxy="42.617"/> <BoundingBox SRS="EPSG:26986" minx="227744.798" miny="782732.75" maxx="319483.395" maxy="929644.867"/> <Style> <Name>GISDATA.SEAPORTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SEAPORTS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.SEAPORTS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SEAPORTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SENATE02_ARC</Name> <Title>State Senate Districts 2002 Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SENATE02_ARC.xml</Keyword> <Keyword>GISDATA.SENATE02_ARC</Keyword> <Keyword>Senate</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/senat02a.avl</Keyword> <Keyword>State</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/State_Senate_Districts_2002.lyr</Keyword> <Keyword>2002</Keyword> <Keyword>Districts</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/senate02.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.266" miny="777514.314" maxx="330846.096" maxy="959747.434"/> <Style> <Name>GISDATA.SENATE02_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_ARC::Arcs</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SENATE02_POLY</Name> <Title>State Senate District 2002 Poly</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Senate</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/senat02p.avl</Keyword> <Keyword>State</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/State_Senate_Districts_2002.lyr</Keyword> <Keyword>Poly</Keyword> <Keyword>District</Keyword> <Keyword>GISDATA.SENATE02_POLY</Keyword> <Keyword>2002</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SENATE02_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/senate02.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.57" miny="40.206" maxx="-69.862" maxy="43.913"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.SENATE02_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_POLY::Thick_Purple_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_POLY::Labels_Max_1200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_POLY::Max_1200000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE02_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE02_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SENATE2012_ARC</Name> <Title>State Senate 2012 Districts Arcs</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/senate2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/SENATE2012_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.SENATE2012_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE2012_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SENATE2012_POLY</Name> <Title>State Senate 2012 Districts Polys</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/senate2012.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/SENATE2012_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>GISDATA.SENATE2012_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE2012_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE2012_POLY::Labels_District</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE2012_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SENATE2012_POLY::Labels_Senator</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SENATE2012_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SHELLFISHSUIT_POLY</Name> <Title>Shellfish Suitability Areas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Shellfish_Suitability_Areas.lyr</Keyword> <Keyword>Suitability</Keyword> <Keyword>Areas</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/SHELLFISHSUIT_POLY.avl</Keyword> <Keyword>Shellfish</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/shlfshsuit.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.SHELLFISHSUIT_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SHELLFISHSUIT_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.288" miny="41.19" maxx="-69.885" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="217776.551" miny="772368.997" maxx="331955.341" maxy="958475.067"/> <Style> <Name>GISDATA.SHELLFISHSUIT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SHELLFISHSUIT_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SHELLFISHSUIT_POLY::Brown_Hatch</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SHELLFISHSUIT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SHLFSHST_PT</Name> <Title>Shellfish Sampling Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Shell_Samp_Stat.lyr</Keyword> <Keyword>Stations</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/neshfh1a.avl</Keyword> <Keyword>GISDATA.SHLFSHST_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SHLFSHST_PT.xml</Keyword> <Keyword>Shellfish</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/shlfshst.htm</Keyword> <Keyword>Sampling</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.285" miny="41.214" maxx="-69.856" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="218058.05" miny="775043.81" maxx="334360.72" maxy="958118.88"/> <Style> <Name>GISDATA.SHLFSHST_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SHLFSHST_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SHORELINES_ARC</Name> <Title>Shoreline Change</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_shorelines_arc.htm</Keyword> <Keyword>Change</Keyword> <Keyword>GISDATA.SHORELINES_ARC</Keyword> <Keyword>Shoreline</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.12453776314456" miny="41.2362712765796" maxx="-69.8968224409519" maxy="42.876590440959234"/> <BoundingBox SRS="EPSG:26986" minx="231474.73433409492" miny="777443.124893673" maxx="331004.5312907933" maxy="958511.9376063161"/> <Style> <Name>GISDATA.SHORELINES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SHORELINES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILINDEX_POLY</Name> <Title>Soils Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILINDEX_POLY.xml</Keyword> <Keyword>Index</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>Soils</Keyword> <Keyword>GISDATA.SOILINDEX_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53100967327525" miny="41.19864977330628" maxx="-69.83901033185788" maxy="43.00236584768031"/> <BoundingBox SRS="EPSG:26986" minx="34354.589449694584" miny="773981.9958559814" maxx="335458.77944970253" maxy="972430.4958559878"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILINDEX_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILSPOT_ARC</Name> <Title>Soil Spot Features Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Soil</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILSPOT_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/soilspoa.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soil_Spot_Features.lyr</Keyword> <Keyword>Lines</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>Spot</Keyword> <Keyword>GISDATA.SOILSPOT_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Features</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.421" miny="41.234" maxx="-69.9" maxy="42.885"/> <BoundingBox SRS="EPSG:26986" minx="43043.247" miny="777659.877" maxx="330701.317" maxy="959322.187"/> <Style> <Name>GISDATA.SOILSPOT_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILSPOT_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILSPOT_PT</Name> <Title>Soil Spot Features Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Soil</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/soilspot.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soil_Spot_Features.lyr</Keyword> <Keyword>GISDATA.SOILSPOT_PT</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>Points</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILSPOT_PT.xml</Keyword> <Keyword>Spot</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Features</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.469" miny="41.242" maxx="-69.902" maxy="42.885"/> <BoundingBox SRS="EPSG:26986" minx="39098.892" miny="778689.247" maxx="330594.722" maxy="959355.317"/> <Style> <Name>GISDATA.SOILSPOT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILSPOT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILSTAT_ARC</Name> <Title>Soils Status Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soils_Status.lyr</Keyword> <Keyword>GISDATA.SOILSTAT_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILSTAT_ARC.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/soilstat.avl</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334974299716" miny="41.230340697467646" maxx="-69.89847706978713" maxy="42.888150267098446"/> <BoundingBox SRS="EPSG:26986" minx="33861.25999999631" miny="777514.3099999799" maxx="330846.09000000596" maxy="959747.439999989"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILSTAT_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILSTAT_POLY</Name> <Title>Soils Status</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soils_Status.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/soilstat.avl</Keyword> <Keyword>Status</Keyword> <Keyword>GISDATA.SOILSTAT_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILSTAT_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>Soils</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.SOILSTAT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILSTAT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILS_POLY</Name> <Title>Soils Polygons</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.stae.ma.us/avls/soilsmu.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soils_by_Slope.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/primfml.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Soils_Polygons_Mapunit.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILS_POLY.xml</Keyword> <Keyword>Soils</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Prime_Farmland_Soils_Partial_Coverage.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/soilslop.avl</Keyword> <Keyword>GISDATA.SOILS_POLY</Keyword> <Keyword>Polygons</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.179" maxx="-69.852" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.274" miny="771781.501" maxx="334603.874" maxy="959747.061"/> <Style> <Name>GISDATA.SOILS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SOILS_POLY::By_Slope</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILS_POLY_PRIMEFARMLAND</Name> <Title>Prime Farmland Soils</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Prime</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILS_POLY.xml</Keyword> <Keyword>Farmland</Keyword> <Keyword>GISDATA.SOILS_POLY_PRIMEFARMLAND</Keyword> <Keyword>Soils</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.179" maxx="-69.852" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.274" miny="771781.501" maxx="334603.874" maxy="959747.061"/> <Style> <Name>GISDATA.SOILS_POLY_PRIMEFARMLAND::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILS_POLY_PRIMEFARMLAND"/> </LegendURL> </Style> <Style> <Name>GISDATA.SOILS_POLY_PRIMEFARMLAND::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILS_POLY_PRIMEFARMLAND"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SOILS_POLY_SV_MUNAME</Name> <Title>Soils</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SOILS_POLY.xml</Keyword> <Keyword>GISDATA.SOILS_POLY_SV_MUNAME</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/soi.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334946585555" miny="41.17874049707648" maxx="-69.85249411482955" maxy="42.88818740733097"/> <BoundingBox SRS="EPSG:26986" minx="33861.27361891972" miny="771781.500604088" maxx="334603.8741034287" maxy="959747.0611069798"/> <Style> <Name>GISDATA.SOILS_POLY_SV_MUNAME::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SOILS_POLY_SV_MUNAME"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STATE_LEASE_PTS</Name> <Title>State Lease Facilities</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.373" miny="41.384" maxx="-70.266" maxy="42.846"/> <BoundingBox SRS="EPSG:26986" minx="46862.204" miny="794339.92" maxx="300852.529" maxy="955022.241"/> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a red square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STATE_LEASE_PTS"/> </LegendURL> </Style> <Style> <Name>GISDATA.STATE_LEASE_PTS::Min_20000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STATE_LEASE_PTS"/> </LegendURL> </Style> <Style> <Name>GISDATA.STATE_LEASE_PTS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STATE_LEASE_PTS"/> </LegendURL> </Style> <Style> <Name>GISDATA.STATE_LEASE_PTS::Max_20000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STATE_LEASE_PTS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STELLBNK_ARC</Name> <Title>Stellwagen Bank Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.STELLBNK_ARC</Keyword> <Keyword>Bank</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/stellbnk.htm</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.STELLBNK_ARC.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.604" miny="42.093" maxx="-70.019" maxy="42.77"/> <BoundingBox SRS="EPSG:26986" minx="274132.31" miny="872472.81" maxx="321183.59" maxy="947025.75"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STELLBNK_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STELLBNK_POLY</Name> <Title>Stellwagen Bank Poly</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Poly</Keyword> <Keyword>Bank</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/stellbnk.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.STELLBNK_POLY.xml</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>GISDATA.STELLBNK_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.604" miny="42.093" maxx="-70.019" maxy="42.77"/> <BoundingBox SRS="EPSG:26986" minx="274132.31" miny="872472.81" maxx="321183.59" maxy="947025.75"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STELLBNK_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STENVREGIONS_POLY</Name> <Title>State of Our Environment Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Environment</Keyword> <Keyword>of</Keyword> <Keyword>Our</Keyword> <Keyword>State</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/stenvreg.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/State_of_the_Environment_Regions.lyr</Keyword> <Keyword>Regions</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/stenvreg.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.STENVREGIONS_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.STENVREGIONS_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.261" miny="777514.311" maxx="330846.091" maxy="959747.441"/> <Style> <Name>GISDATA.STENVREGIONS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STENVREGIONS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.STENVREGIONS_POLY::Min_800000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STENVREGIONS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STENVREGIONS_POLY_NAME</Name> <Title>EEA State of the Environment Regions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/stenvreg.htm</Keyword> <Keyword>GISDATA.STENVREGIONS_POLY_NAME</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.STENVREGIONS_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334973277438" miny="41.23034070535143" maxx="-69.89847705911572" maxy="42.88815027482307"/> <BoundingBox SRS="EPSG:26986" minx="33861.26085599378" miny="777514.3108559825" maxx="330846.0908560026" maxy="959747.4408559902"/> <Style> <Name>GISDATA.STENVREGIONS_POLY_NAME::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STENVREGIONS_POLY_NAME"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.STEWARDSHIP_POLY</Name> <Title>Forest Stewardship Program Properties</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Forest</Keyword> <Keyword>GISDATA.STEWARDSHIP_POLY</Keyword> <Keyword>Stewardship</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/stewardship.htm</Keyword> <Keyword>Program</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Properties</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.49889721131483" miny="41.352907216597096" maxx="-69.93750398922272" maxy="42.75193111644989"/> <BoundingBox SRS="EPSG:26986" minx="36322.1217999965" miny="791074.5282781429" maxx="327934.45109999995" maxy="944593.7896218264"/> <Style> <Name>GISDATA.STEWARDSHIP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.STEWARDSHIP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SUBBASINS_ARC</Name> <Title>Subbasins Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/subbas.htm</Keyword> <Keyword>Subbasins</Keyword> <Keyword>Arcs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SUBBASINS_ARC.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.SUBBASINS_ARC</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SUBBASINS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SUBBASINS_POLY</Name> <Title>Subbasins</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/subbas.htm</Keyword> <Keyword>Subbasins</Keyword> <Keyword>GISDATA.SUBBASINS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53334974299716" miny="41.230340697467646" maxx="-69.89847706978713" maxy="42.888150267098446"/> <BoundingBox SRS="EPSG:26986" minx="33861.259999996284" miny="777514.3099999799" maxx="330846.0900000059" maxy="959747.439999989"/> <Style> <Name>GISDATA.SUBBASINS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SUBBASINS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SUBDIV_POLY</Name> <Title>Subdivisions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Subdivisions</Keyword> <Keyword>GISDATA.SUBDIV_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.36306717969127" miny="41.28882683686177" maxx="-69.92556921924022" maxy="42.88326408216979"/> <BoundingBox SRS="EPSG:26986" minx="47767.023311955534" miny="783702.2502382646" maxx="328642.3751255444" maxy="959192.249761707"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SUBDIV_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO24KSTATUS_POLY</Name> <Title>Surficial Geology (1:24,000) Status </Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://www.mass.gov/mgis/sg24k.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_24k_Status.lyr</Keyword> <Keyword>Status</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/surfgeo24kstatus_poly.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg24kstat.htm</Keyword> <Keyword>(1:24</Keyword> <Keyword>Geology</Keyword> <Keyword>000)</Keyword> <Keyword>GISDATA.SURFGEO24KSTATUS_POLY</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53100966783867" miny="41.19864981073073" maxx="-69.83901032419162" maxy="43.00236588514137"/> <BoundingBox SRS="EPSG:26986" minx="34354.58999235014" miny="773982.0000012879" maxx="335458.77999403456" maxy="972430.5000167283"/> <Style> <Name>GISDATA.SURFGEO24KSTATUS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24KSTATUS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO24K_EPG_POLY</Name> <Title>Surficial Geology 24k Early Postglacial Deposits</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Deposits</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SURFGEO24K_EPG_POLY.xml</Keyword> <Keyword>Early</Keyword> <Keyword>24k</Keyword> <Keyword>GISDATA.SURFGEO24K_EPG_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg24k.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sg24k_epg.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_24k_Theme.lyr</Keyword> <Keyword>Geology</Keyword> <Keyword>Postglacial</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.75845148338163" miny="42.506627880944755" maxx="-70.831399896256" maxy="42.88818922111332"/> <BoundingBox SRS="EPSG:26986" minx="178886.61080000052" miny="917555.5958999848" maxx="254620.1552000032" maxy="959730.647599989"/> <Style> <Name>GISDATA.SURFGEO24K_EPG_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_EPG_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO24K_PG_POLY</Name> <Title>Surficial Geology 24k Postglacial Deposits</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Deposits</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SURFGEO24K_PG_POLY.xml</Keyword> <Keyword>24k</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_24k_Theme.lyr</Keyword> <Keyword>GISDATA.SURFGEO24K_PG_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg24k.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sg24k_pg.avl</Keyword> <Keyword>Geology</Keyword> <Keyword>Postglacial</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Surficial</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.877" miny="42.122" maxx="-70.594" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="169159.487" miny="874964.125" maxx="274001.787" maxy="958163.47"/> <Style> <Name>GISDATA.SURFGEO24K_PG_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_PG_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SURFGEO24K_PG_POLY::Artificial_Fill</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_PG_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO24K_SD_POLY</Name> <Title>Surficial Geology 24k Glacial Stratified Deposits</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SURFGEO24K_SD_POLY.xml</Keyword> <Keyword>Deposits</Keyword> <Keyword>GISDATA.SURFGEO24K_SD_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sg24k_sd.avl</Keyword> <Keyword>24k</Keyword> <Keyword>Glacial</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg24k.htm</Keyword> <Keyword>Stratified</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_24k_Theme.lyr</Keyword> <Keyword>Geology</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.878" miny="42.122" maxx="-70.591" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="169154.861" miny="874964.402" maxx="274235.75" maxy="959747.44"/> <Style> <Name>GISDATA.SURFGEO24K_SD_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_SD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO24K_TB_POLY</Name> <Title>Surficial Geology 24k Till Bedrock</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sg24k_tb_bott.avl</Keyword> <Keyword>24k</Keyword> <Keyword>Till</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg24k.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SURFGEO24K_TB_POLY.xml</Keyword> <Keyword>Geology</Keyword> <Keyword>Bedrock</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Surficial</Keyword> <Keyword>GISDATA.SURFGEO24K_TB_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.878" miny="42.121" maxx="-70.564" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="169154.859" miny="874963.875" maxx="276504.281" maxy="959747.44"/> <Style> <Name>GISDATA.SURFGEO24K_TB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_TB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SURFGEO24K_TB_POLY::Abundant_Outcrop_and_Shallow_Bedrock</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_TB_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SURFGEO24K_TB_POLY::Bedrock_Outcrop</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO24K_TB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SURFGEO250K_POLY</Name> <Title>Surficial Geology 250K</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/surfgeo1.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/geocod1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_Depth.lyr</Keyword> <Keyword>250K</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SURFGEO250K_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_shaded.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surficial_Geology_Hatch.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sg.htm</Keyword> <Keyword>Geology</Keyword> <Keyword>GISDATA.SURFGEO250K_POLY</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.586" miny="41.229" maxx="-69.897" maxy="42.963"/> <BoundingBox SRS="EPSG:26986" minx="29741.881" miny="777514.312" maxx="330846.091" maxy="968086.002"/> <Style> <Name>GISDATA.SURFGEO250K_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO250K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SURFGEO250K_POLY::Depth</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO250K_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SURFGEO250K_POLY::Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SURFGEO250K_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SWP_WATERSHEDS_POLY</Name> <Title>Surface Water Supply Watersheds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/swp_watersheds.htm</Keyword> <Keyword>Supply</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SWP_WATERSHEDS_POLY.xml</Keyword> <Keyword>Surface</Keyword> <Keyword>GISDATA.SWP_WATERSHEDS_POLY</Keyword> <Keyword>Watersheds</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Water</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.51599852607168" miny="41.556505724846076" maxx="-70.58458990077378" maxy="42.95410007622009"/> <BoundingBox SRS="EPSG:26986" minx="35452.22249995731" miny="813713.8748479087" maxx="274705.62509712693" maxy="967053.687552033"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_WATERSHEDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SWP_ZONES_POLY</Name> <Title>Surface Water Supply Protection Zones</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/swp_zonea.avl</Keyword> <Keyword>Supply</Keyword> <Keyword>Protection</Keyword> <Keyword>GISDATA.SWP_ZONES_POLY</Keyword> <Keyword>Water</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/swp_zonec.avl</Keyword> <Keyword>Surface</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/swp.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SWP_ZONES_POLY.xml</Keyword> <Keyword>Zones</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/swp_zoneb.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Surface_Water_Protection_Areas.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.513" miny="41.556" maxx="-70.586" maxy="42.868"/> <BoundingBox SRS="EPSG:26986" minx="35452.222" miny="813683.892" maxx="274705.625" maxy="957447.0"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_ZONES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SWP_ZONES_POLY::Depgis_ZoneA_Max100k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_ZONES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SWP_ZONES_POLY::Zone_C</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_ZONES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SWP_ZONES_POLY::Zone_A</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_ZONES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SWP_ZONES_POLY::Zone_B</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SWP_ZONES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY</Name> <Title>Solid Waste</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Solid_Waste_Facilities_All_Outline.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sw_sl_2p.avl</Keyword> <Keyword>GISDATA.SW_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Solid_Waste_Facilities_All_Shaded.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sw_sl_1p.avl</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.484" miny="41.268" maxx="-69.956" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="37759.119" miny="781615.372" maxx="327646.749" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.SW_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_ACTIVE</Name> <Title>Solid Waste Landfills Active</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Active</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/swlf_a.avl</Keyword> <Keyword>GISDATA.SW_POLY_ACTIVE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Solid_Waste_Facilities_Active_Landfills.lyr</Keyword> <Keyword>ExtractDoc=MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_ACTIVE.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.127" miny="41.273" maxx="-70.0" maxy="42.773"/> <BoundingBox SRS="EPSG:26986" minx="66798.599" miny="781709.442" maxx="313897.439" maxy="934848.512"/> <Style> <Name>GISDATA.SW_POLY_ACTIVE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_ACTIVE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_ASH</Name> <Title>Solid Waste Ash Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_ASH.xml</Keyword> <Keyword>Facilities</Keyword> <Keyword>Ash</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_ASH</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.212" miny="41.704" maxx="-70.703" maxy="42.773"/> <BoundingBox SRS="EPSG:26986" minx="59889.159" miny="829629.722" maxx="265210.059" maxy="946936.692"/> <Style> <Name>GISDATA.SW_POLY_ASH::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_ASH"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_CAPPED</Name> <Title>Solid Waste Capped Landfills</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Landfills</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_CAPPED.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>Capped</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.SW_POLY_CAPPED</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.466" miny="41.352" maxx="-69.956" maxy="42.846"/> <BoundingBox SRS="EPSG:26986" minx="39220.119" miny="790914.782" maxx="325079.439" maxy="955065.942"/> <Style> <Name>GISDATA.SW_POLY_CAPPED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_CAPPED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_CLOSED</Name> <Title>Solid Waste Closed Landfills</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Landfills</Keyword> <Keyword>Closed</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_CLOSED.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_CLOSED</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.502" miny="40.308" maxx="-69.921" maxy="43.889"/> <BoundingBox SRS="EPSG:26986" minx="39220.119" miny="790914.782" maxx="325302.909" maxy="955065.942"/> <Style> <Name>GISDATA.SW_POLY_CLOSED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_CLOSED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_COMBUSTION</Name> <Title>Solid Waste Comubustion Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Comubustion</Keyword> <Keyword>Solid</Keyword> <Keyword>Facilities</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_COMBUSTION.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> <Keyword>GISDATA.SW_POLY_COMBUSTION</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.227" miny="40.971" maxx="-70.748" maxy="43.45"/> <BoundingBox SRS="EPSG:26986" minx="60618.359" miny="823677.002" maxx="259540.129" maxy="946520.372"/> <Style> <Name>GISDATA.SW_POLY_COMBUSTION::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_COMBUSTION"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_COMPOST</Name> <Title>Solid Waste Compost Sites</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Compost</Keyword> <Keyword>Solid</Keyword> <Keyword>Sites</Keyword> <Keyword>GISDATA.SW_POLY_COMPOST</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_COMPOST.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.353" miny="41.27" maxx="-69.956" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="48539.159" miny="781709.442" maxx="326255.409" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_COMPOST::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_COMPOST"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_DEMOLITION</Name> <Title>Solid Waste Demolition Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Facilities</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>Demolition</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_DEMOLITION.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.SW_POLY_DEMOLITION</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.277" miny="41.654" maxx="-70.376" maxy="42.847"/> <BoundingBox SRS="EPSG:26986" minx="54727.659" miny="821263.352" maxx="327646.749" maxy="955193.252"/> <Style> <Name>GISDATA.SW_POLY_DEMOLITION::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_DEMOLITION"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_EPIC</Name> <Title>Solid Waste EPIC Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Facilities</Keyword> <Keyword>GISDATA.SW_POLY_EPIC</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_EPIC.xml</Keyword> <Keyword>EPIC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.302" miny="41.675" maxx="-70.677" maxy="42.72"/> <BoundingBox SRS="EPSG:26986" minx="52361.649" miny="826538.872" maxx="267421.089" maxy="941101.692"/> <Style> <Name>GISDATA.SW_POLY_EPIC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_EPIC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_INACTIVE</Name> <Title>Solid Waste Landfills Inactive</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>GISDATA.SW_POLY_INACTIVE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_INACTIVE.xml</Keyword> <Keyword>Inactive</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.447" miny="40.336" maxx="-69.946" maxy="43.837"/> <BoundingBox SRS="EPSG:26986" minx="43649.729" miny="787854.132" maxx="327646.749" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_INACTIVE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_INACTIVE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_LANDFILLS</Name> <Title>Solid Waste Landfills</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Landfills</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_LANDFILLS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_LANDFILLS.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.467" miny="41.268" maxx="-69.956" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="39220.119" miny="781709.442" maxx="327646.749" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_LANDFILLS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_LANDFILLS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_LINED</Name> <Title>Solid Waste Lined</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>Lined</Keyword> <Keyword>GISDATA.SW_POLY_LINED</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_LINED.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.35" miny="41.27" maxx="-70.128" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="99676.699" miny="781709.442" maxx="311963.359" maxy="953765.942"/> <Style> <Name>GISDATA.SW_POLY_LINED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_LINED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_MSW</Name> <Title>Solid Waste MSW Municipal</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>MSW</Keyword> <Keyword>Municipal</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_MSW</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_MSW.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.467" miny="41.268" maxx="-69.956" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="39220.119" miny="781709.442" maxx="326255.409" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_MSW::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_MSW"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_NOTCAPPED</Name> <Title>Solid Waste Not Capped</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>GISDATA.SW_POLY_NOTCAPPED</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_NOTCAPPED.xml</Keyword> <Keyword>Capped</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Not</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.446" miny="40.348" maxx="-69.947" maxy="43.848"/> <BoundingBox SRS="EPSG:26986" minx="43649.729" miny="792044.292" maxx="327646.749" maxy="953471.692"/> <Style> <Name>GISDATA.SW_POLY_NOTCAPPED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_NOTCAPPED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_NOTLINED</Name> <Title>Solid Waste Not Lined</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>GISDATA.SW_POLY_NOTLINED</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_NOTLINED.xml</Keyword> <Keyword>Lined</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Not</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.467" miny="41.323" maxx="-69.956" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="39220.119" miny="787854.132" maxx="327646.749" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_NOTLINED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_NOTLINED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_OTHER</Name> <Title>Solid Waste Other Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Facilities</Keyword> <Keyword>GISDATA.SW_POLY_OTHER</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>Other</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_OTHER.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.302" miny="41.675" maxx="-70.677" maxy="42.72"/> <BoundingBox SRS="EPSG:26986" minx="52361.649" miny="826538.872" maxx="267421.089" maxy="941101.692"/> <Style> <Name>GISDATA.SW_POLY_OTHER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_OTHER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_PARTIALLYCAPPED</Name> <Title>Solid Waste Partially Capped</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Partially</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_PARTIALLYCAPPED</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_PARTIALLYCAPPED.xml</Keyword> <Keyword>Capped</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.35" miny="41.27" maxx="-70.128" maxy="42.849"/> <BoundingBox SRS="EPSG:26986" minx="56253.189" miny="781709.442" maxx="311963.359" maxy="955394.812"/> <Style> <Name>GISDATA.SW_POLY_PARTIALLYCAPPED::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_PARTIALLYCAPPED"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_RECYCLING</Name> <Title>Solid Waste Recycling Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>GISDATA.SW_POLY_RECYCLING</Keyword> <Keyword>Facilities</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_RECYCLING.xml</Keyword> <Keyword>Recycling</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.626" miny="41.307" maxx="-71.01" maxy="42.924"/> <BoundingBox SRS="EPSG:26986" minx="238911.589" miny="873897.552" maxx="239228.769" maxy="874103.262"/> <Style> <Name>GISDATA.SW_POLY_RECYCLING::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_RECYCLING"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_SLUDGE</Name> <Title>Solid Waste Sludge Facilities</Title> <Abstract>Generated from massgis_sde Solid Waste Sludge Facilities</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_SLUDGE</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_SLUDGE.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.347" miny="41.793" maxx="-70.84" maxy="42.718"/> <BoundingBox SRS="EPSG:26986" minx="48719.649" miny="839734.122" maxx="254073.329" maxy="940836.812"/> <Style> <Name>GISDATA.SW_POLY_SLUDGE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_SLUDGE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_STUMP</Name> <Title>Solid Waste Stump Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>Facilities</Keyword> <Keyword>GISDATA.SW_POLY_STUMP</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_STUMP.xml</Keyword> <Keyword>Stump</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.407" miny="41.435" maxx="-69.96" maxy="42.686"/> <BoundingBox SRS="EPSG:26986" minx="43649.729" miny="799994.312" maxx="326255.409" maxy="937257.822"/> <Style> <Name>GISDATA.SW_POLY_STUMP::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_STUMP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_TRANSFER</Name> <Title>Solid Waste Transfer Station Facilities</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Station</Keyword> <Keyword>Solid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_TRANSFER.xml</Keyword> <Keyword>Facilities</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_TRANSFER</Keyword> <Keyword>Transfer</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.483" miny="41.268" maxx="-69.956" maxy="42.817"/> <BoundingBox SRS="EPSG:26986" minx="37759.119" miny="781615.372" maxx="326255.409" maxy="951815.502"/> <Style> <Name>GISDATA.SW_POLY_TRANSFER::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_TRANSFER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_POLY_UNKNOWNCAP</Name> <Title>Solid Waste Unknown Cap</Title> <Abstract>Generated from massgis_sde Solid Waste Unknown Cap</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_POLY_UNKNOWNCAP.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_POLY_UNKNOWNCAP</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.287" miny="41.626" maxx="-70.11" maxy="42.718"/> <BoundingBox SRS="EPSG:26986" minx="53596.199" miny="821044.192" maxx="313897.439" maxy="940836.812"/> <Style> <Name>GISDATA.SW_POLY_UNKNOWNCAP::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_POLY_UNKNOWNCAP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.SW_PT</Name> <Title>Solid Waste Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/sw.htm</Keyword> <Keyword>GISDATA.SW_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.SW_PT.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Solid_Waste_Facilities_All_Points.lyr</Keyword> <Keyword>Points</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/sw_sl_1l.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.484" miny="41.271" maxx="-69.957" maxy="42.848"/> <BoundingBox SRS="EPSG:26986" minx="37811.539" miny="781748.016" maxx="327586.819" maxy="955242.686"/> <Style> <Name>GISDATA.SW_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.SW_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TITLE5_POLY</Name> <Title>Title 5 Buffers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Title_5_Buffers.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/ti5ins2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TITLE5_POLY.xml</Keyword> <Keyword>GISDATA.TITLE5_POLY</Keyword> <Keyword>Buffers</Keyword> <Keyword>5</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/t5.htm</Keyword> <Keyword>Title</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.536" miny="41.23" maxx="-69.895" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="33963.145" miny="777542.875" maxx="330838.687" maxy="972429.625"/> <Style> <Name>GISDATA.TITLE5_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TITLE5_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TITLE5_POLY::Depgis_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TITLE5_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TITLE5_WETLANDS_POLY</Name> <Title>Title 5 Wetlands Polygons</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.TITLE5_WETLANDS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.52952073952935" miny="41.23222929327835" maxx="-69.89734035659701" maxy="43.00229799769044"/> <BoundingBox SRS="EPSG:26986" minx="34476.01953465375" miny="777709.8750634646" maxx="330700.68749651423" maxy="972428.3749959763"/> <Style> <Name>GISDATA.TITLE5_WETLANDS_POLY::Depgis_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TITLE5_WETLANDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOLLBOOTHS_PT</Name> <Title>Tollbooths</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Tollbooths.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/TOLLBOOTHS_PT.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOLLBOOTHS_PT.xml</Keyword> <Keyword>GISDATA.TOLLBOOTHS_PT</Keyword> <Keyword>Tollbooths</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.365" miny="42.111" maxx="-71.025" maxy="42.383"/> <BoundingBox SRS="EPSG:26986" minx="46372.217" miny="875108.589" maxx="239087.47" maxy="903573.652"/> <Style> <Name>GISDATA.TOLLBOOTHS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOLLBOOTHS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNHALLS_PT_MEMA</Name> <Title>Town Halls</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Town_Halls.lyr</Keyword> <Keyword>GISDATA.TOWNHALLS_PT_MEMA</Keyword> <Keyword>Halls</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNHALLS_PT_MEMA.xml</Keyword> <Keyword>Town</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/townhalls_pt_mema.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/townhalls.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.476" miny="41.277" maxx="-69.931" maxy="42.858"/> <BoundingBox SRS="EPSG:26986" minx="38444.324" miny="782629.731" maxx="328279.624" maxy="956349.261"/> <Style> <Name>GISDATA.TOWNHALLS_PT_MEMA::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNHALLS_PT_MEMA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNHALLS_PT_MEMA::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNHALLS_PT_MEMA"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNSSURVEY_ARC</Name> <Title>MA Towns From Survey Points Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Survey</Keyword> <Keyword>GISDATA.TOWNSSURVEY_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twndash2.avl</Keyword> <Keyword>Arcs</Keyword> <Keyword>Points</Keyword> <Keyword>Towns</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/townssurvey.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Dashed_Outlines.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Shaded_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnsurbq.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNSSURVEY_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Bnd_Qual.lyr</Keyword> <Keyword>From</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.607" miny="40.169" maxx="-69.825" maxy="43.951"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Thick_Dashed_Yellow_Non_Coast</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Depgis_Pb_Brown_Min100k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Basemap2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Non_Coast_Max_150000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::911</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_ARC::Boundary_Info</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNSSURVEY_POLY</Name> <Title>MA Towns From Survey Points Polys</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Survey</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnnum3p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNSSURVEY_POLY.xml</Keyword> <Keyword>Points</Keyword> <Keyword>GISDATA.TOWNSSURVEY_POLY</Keyword> <Keyword>Towns</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Shaded.lyr</Keyword> <Keyword>Polys</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/townssurvey.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Shaded_Group.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnnum4p.avl</Keyword> <Keyword>From</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>GISDATA.TOWNSSURVEY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLY::Filled_White</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNSSURVEY_POLYM</Name> <Title>MA Towns From Survey Points, Multi-Part Polys</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Survey</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNSSURVEY_POLYM.xml</Keyword> <Keyword>Multi-Part</Keyword> <Keyword>GISDATA.TOWNSSURVEY_POLYM</Keyword> <Keyword>Points</Keyword> <Keyword>Towns</Keyword> <Keyword>Polys</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/townssurvey.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Multi_Shaded.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/townnum3p.avl</Keyword> <Keyword>From</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Basemap_Labels2</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Min_150000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Yellow_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Basemap_Labels4</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Basemap_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Min_200000_Max_500000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Basemap_Labels3</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Max_50000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Depgis_Brown_Labels_Max500k_Min10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::White_No_Outline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Dashed_Yellow_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNSSURVEY_POLYM::Min_50000_Max_200000_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_POLYM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNSSURVEY_PT</Name> <Title>MA Towns Survey Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Survey</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/townssurvey.htm</Keyword> <Keyword>GISDATA.TOWNSSURVEY_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Survey_Points.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/TOWNSSURVEY_PT.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNSSURVEY_PT.xml</Keyword> <Keyword>Points</Keyword> <Keyword>Towns</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.298" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="785072.395" maxx="330794.623" maxy="959743.045"/> <Style> <Name>GISDATA.TOWNSSURVEY_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNSSURVEY_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_ARC</Name> <Title>Massachusetts Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/towns.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twndash.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twndash2.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Dashed_Outlines.lyr</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>GISDATA.TOWNS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_ARC.xml</Keyword> <Keyword>Arcs</Keyword> <Keyword>Towns</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Shaded_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.TOWNS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_ARC::Three_Classes</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_ARC::No_Coast_Solid_Dark_Salmon_Min_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_ARC::Non_Coast_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY</Name> <Title>Massachusetts Town Boundaries</Title> <Abstract>Generated from sun420</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/towns.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY.xml</Keyword> <Keyword>GISDATA.TOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Town_Boundaries.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnnum3p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Solid_Outlines.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnnum4p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/twnnum2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Shaded_Group.lyr</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.TOWNS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Filled_White</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Yellow_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::GreenOutline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Red_Fill_Black_Outline</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Polygons_Four_Color</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Labels_Med</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Polygon_Four_Color_Min_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY::Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLYM</Name> <Title>Massachusetts Town Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/towns.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/MA_Towns_Multi_Shaded.lyr</Keyword> <Keyword>GISDATA.TOWNS_POLYM</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/townnum3p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLYM.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.093" maxy="959747.441"/> <Style> <Name>GISDATA.TOWNS_POLYM::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Outlines_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Thick_Brown_Outline_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Labels_Max_400000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::mdc_wspa</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::mdc_wspa_labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Grey_Min_25000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Oriole_Reports</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a transparent red interior with a red outline</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLYM::Labels_Italic</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLYM"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY_V_AREACODE</Name> <Title>Area Codes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/towns.htm</Keyword> <Keyword>Codes</Keyword> <Keyword>GISDATA.TOWNS_POLY_V_AREACODE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Area_Codes.lyr</Keyword> <Keyword>Area</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY_V_AREACODE.xml</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/areacd1p.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.264" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>GISDATA.TOWNS_POLY_V_AREACODE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_AREACODE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY_V_CABLE</Name> <Title>Cable Providers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Providers</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Cable_by_Town.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pubutil.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/cable.avl</Keyword> <Keyword>Cable</Keyword> <Keyword>GISDATA.TOWNS_POLY_V_CABLE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY_V_CABLE.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53331821172883" miny="41.231169877452636" maxx="-69.89858964938519" maxy="42.88811062700584"/> <BoundingBox SRS="EPSG:26986" minx="33863.7325000001" miny="777606.3745999814" maxx="330836.97249999666" maxy="959743.0445999887"/> <Style> <Name>GISDATA.TOWNS_POLY_V_CABLE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CABLE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY_V_CPA</Name> <Title>Community Preservation Act Towns</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY_V_CPA.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/cpa.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Year_Adopted</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Exemptions</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Percent_No</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Percent_Yes</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> <Style> <Name>GISDATA.TOWNS_POLY_V_CPA::Ballot_Path</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_CPA"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY_V_ELEC</Name> <Title>Electricity Providers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Providers</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pubutil.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/elec.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY_V_ELEC.xml</Keyword> <Keyword>Electricity</Keyword> <Keyword>GISDATA.TOWNS_POLY_V_ELEC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Electricity_by_Town.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53331821172883" miny="41.231169877452636" maxx="-69.89858964938519" maxy="42.88811062700584"/> <BoundingBox SRS="EPSG:26986" minx="33863.7325000001" miny="777606.3745999814" maxx="330836.97249999666" maxy="959743.0445999887"/> <Style> <Name>GISDATA.TOWNS_POLY_V_ELEC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_ELEC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TOWNS_POLY_V_GAS</Name> <Title>Natural Gas Providers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Providers</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/pubutil.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TOWNS_POLY_V_GAS.xml</Keyword> <Keyword>Natural</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Gas_by_Town.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/gas.avl</Keyword> <Keyword>GISDATA.TOWNS_POLY_V_GAS</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Gas</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.56966549735226" miny="40.20592868543398" maxx="-69.86224236376175" maxy="43.91335181902449"/> <BoundingBox SRS="EPSG:26986" minx="33863.7325000001" miny="777606.3745999814" maxx="330836.97249999666" maxy="959743.0445999887"/> <Style> <Name>GISDATA.TOWNS_POLY_V_GAS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TOWNS_POLY_V_GAS"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRAILS_ARC</Name> <Title>Tracks and Trails MHD</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Tracks</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Tracks_and_Trails_MHD.lyr</Keyword> <Keyword>Trails</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TRAILS_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/trails1a.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/trails.htm</Keyword> <Keyword>GISDATA.TRAILS_ARC</Keyword> <Keyword>MHD</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.521" miny="41.235" maxx="-69.903" maxy="42.756"/> <BoundingBox SRS="EPSG:26986" minx="34536.722" miny="778015.123" maxx="330774.092" maxy="945008.253"/> <Style> <Name>GISDATA.TRAILS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAILS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRAINS_ARC</Name> <Title>Railroads</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.TRAINS_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/trains.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.449" miny="41.233" maxx="-69.923" maxy="42.979"/> <BoundingBox SRS="EPSG:26986" minx="41000.0" miny="777636.063" maxx="328690.156" maxy="969838.875"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Commuter_Rail_Proposed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Type_Of_Service</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Freight_Operation</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Passenger_Operation</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_ARC::Ownership</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRAINS_NODE</Name> <Title>Commuter Rail Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/commrail_pt_all.avl</Keyword> <Keyword>Stations</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops_Proposed.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/commrail_pt_prop.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops_Active.lyr</Keyword> <Keyword>GISDATA.TRAINS_NODE</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/trains.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TRAINS_NODE.xml</Keyword> <Keyword>Commuter</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/commrail_pt_active.avl</Keyword> <Keyword>Rail</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.268" miny="41.62" maxx="-70.261" maxy="42.968"/> <BoundingBox SRS="EPSG:26986" minx="55763.078" miny="820356.25" maxx="301054.313" maxy="968590.125"/> <Style> <Name>GISDATA.TRAINS_NODE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Stations_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Proposed_Stations_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Labels_Max_50000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Stations</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_NODE::Proposed_Stations</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_NODE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRAINS_RTE_TRAIN</Name> <Title>Commuter Rail</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops_Proposed.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Commuter_Rail_Lines_and_Stops_Active.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TRAINS_RTE_TRAIN.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/trains.htm</Keyword> <Keyword>Rail</Keyword> <Keyword>GISDATA.TRAINS_RTE_TRAIN</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/trncom1l.avl</Keyword> <Keyword>Commuter</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.983" miny="41.638" maxx="-70.234" maxy="42.84"/> <BoundingBox SRS="EPSG:26986" minx="160514.578" miny="821638.625" maxx="303484.25" maxy="954339.062"/> <Style> <Name>GISDATA.TRAINS_RTE_TRAIN::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_RTE_TRAIN"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRAINS_RTE_TRAIN::Commuter_Rail_Max_100000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRAINS_RTE_TRAIN"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRANSECTS_ARC</Name> <Title>Transects</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_transects.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/gisdata_transects_arc.shp.xml</Keyword> <Keyword>GISDATA.TRANSECTS_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.12158523467045" miny="41.23627381217498" maxx="-69.89686713286156" maxy="42.87532745044483"/> <BoundingBox SRS="EPSG:26986" minx="231722.24478199976" miny="777443.3875793816" maxx="331003.4947820025" maxy="958372.7475793886"/> <Style> <Name>GISDATA.TRANSECTS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRANSECTS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.TRANSLINES_ARC</Name> <Title>Transmission Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Transmission_Lines.lyr</Keyword> <Keyword>GISDATA.TRANSLINES_ARC</Keyword> <Keyword>Lines</Keyword> <Keyword>Transmission</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/trnslns.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/tramin1a.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.TRANSLINES_ARC.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.499" miny="41.236" maxx="-69.957" maxy="42.887"/> <BoundingBox SRS="EPSG:26986" minx="36653.134" miny="778132.941" maxx="326080.724" maxy="959640.631"/> <Style> <Name>GISDATA.TRANSLINES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRANSLINES_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.TRANSLINES_ARC::Black_Dashed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.TRANSLINES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.UMASS_BOSTON_NDSM1_INT_POLY</Name> <Title>UMass Boston NDSM1 Poly</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.054" miny="42.308" maxx="-71.031" maxy="42.323"/> <BoundingBox SRS="EPSG:26986" minx="236732.393" miny="895341.271" maxx="238638.393" maxy="897083.271"/> <Style> <Name>GISDATA.UMASS_BOSTON_NDSM1_INT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.UMASS_BOSTON_NDSM1_INT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.UMASS_BOSTON_NDSM1_SP</Name> <Title>UMass Boston NDSM</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>GISDATA.UMASS_BOSTON_NDSM1_SP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.054" miny="42.308" maxx="-71.031" maxy="42.323"/> <BoundingBox SRS="EPSG:26986" minx="236732.893" miny="895341.771" maxx="238637.893" maxy="897082.771"/> <Style> <Name>GISDATA.UMASS_BOSTON_NDSM1_SP::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.UMASS_BOSTON_NDSM1_SP"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.USGSGRID_POLY</Name> <Title>USGS Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/usgsqd.htm</Keyword> <Keyword>Grid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/hd25ksrc.avl</Keyword> <Keyword>GISDATA.USGSGRID_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/USGS_25k_Hydrography_Status.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.USGSGRID_POLY.xml</Keyword> <Keyword>USGS</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.658" miny="41.107" maxx="-69.826" maxy="43.002"/> <BoundingBox SRS="EPSG:26986" minx="24001.34" miny="764090.19" maxx="336517.44" maxy="972430.5"/> <Style> <Name>GISDATA.USGSGRID_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.USGSGRID_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.USGSGRID_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.USGSGRID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.UTMGRID_POLY</Name> <Title>UTM Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>UTM</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/deflega.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/utmgrid.htm</Keyword> <Keyword>Grid</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/UTM_Grid.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.UTMGRID_POLY.xml</Keyword> <Keyword>GISDATA.UTMGRID_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.199" maxx="-69.839" maxy="43.003"/> <BoundingBox SRS="EPSG:26986" minx="34354.59" miny="773982.0" maxx="335458.78" maxy="972430.5"/> <Style> <Name>GISDATA.UTMGRID_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.UTMGRID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.UTMPT_PT</Name> <Title>UTM Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>UTM</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/UTM_Points.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/utmgrid.htm</Keyword> <Keyword>GISDATA.UTMPT_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/deflegl.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.UTMPT_PT.xml</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.531" miny="41.199" maxx="-69.839" maxy="43.003"/> <BoundingBox SRS="EPSG:26986" minx="34354.59" miny="773986.94" maxx="335445.41" maxy="972430.5"/> <Style> <Name>GISDATA.UTMPT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.UTMPT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCCOASTALPLAINPOND_POLY</Name> <Title>Coastal Plain Pond Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.VCCOASTALPLAINPOND_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vccppond.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCCOASTALPLAINPOND_POLY.xml</Keyword> <Keyword>Coastal</Keyword> <Keyword>Plain</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>Pond</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.142" miny="41.62" maxx="-70.535" maxy="42.01"/> <BoundingBox SRS="EPSG:26986" minx="229857.812" miny="819307.438" maxx="279907.122" maxy="862246.308"/> <Style> <Name>GISDATA.VCCOASTALPLAINPOND_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCCOASTALPLAINPOND_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCCOASTAL_POLY</Name> <Title>Coastal Natural Community Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>GISDATA.VCCOASTAL_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vccoast.avl</Keyword> <Keyword>Natural</Keyword> <Keyword>Coastal</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCCOASTAL_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.331" miny="41.476" maxx="-70.477" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="214132.296" miny="803319.872" maxx="283615.246" maxy="958163.812"/> <Style> <Name>GISDATA.VCCOASTAL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCCOASTAL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCFOREST_POLY</Name> <Title>Upland Forest</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcforest.avl</Keyword> <Keyword>Forest</Keyword> <Keyword>Upland</Keyword> <Keyword>GISDATA.VCFOREST_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCFOREST_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Upland_Forest.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.377" miny="41.495" maxx="-70.482" maxy="42.263"/> <BoundingBox SRS="EPSG:26986" minx="210306.997" miny="805497.497" maxx="284006.997" maxy="890334.997"/> <Style> <Name>GISDATA.VCFOREST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCFOREST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCPEATLAND_POLY</Name> <Title>Acidic Peatland Community Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>Peatland</Keyword> <Keyword>GISDATA.VCPEATLAND_POLY</Keyword> <Keyword>Acidic</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCPEATLAND_POLY.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcpeat.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.629" miny="41.509" maxx="-70.252" maxy="42.886"/> <BoundingBox SRS="EPSG:26986" minx="211335.498" miny="809946.558" maxx="280406.128" maxy="956541.628"/> <Style> <Name>GISDATA.VCPEATLAND_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCPEATLAND_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCPINEBARRENS2_POLY</Name> <Title>Pine Barrens Natural Community Systems (UMASS Pitch Pine)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcpinbr2.avl</Keyword> <Keyword>Pine)</Keyword> <Keyword>Natural</Keyword> <Keyword>(UMASS</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>Systems</Keyword> <Keyword>GISDATA.VCPINEBARRENS2_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCPINEBARRENS2_POLY.xml</Keyword> <Keyword>Barrens</Keyword> <Keyword>Pine</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> <Keyword>Pitch</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.77" miny="41.749" maxx="-70.518" maxy="41.974"/> <BoundingBox SRS="EPSG:26986" minx="260753.563" miny="833681.813" maxx="281370.873" maxy="858459.623"/> <Style> <Name>GISDATA.VCPINEBARRENS2_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCPINEBARRENS2_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCPINEBARRENS_POLY</Name> <Title>Pine Barrens Natural Community Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>GISDATA.VCPINEBARRENS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcpinbar.avl</Keyword> <Keyword>Natural</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>Barrens</Keyword> <Keyword>Pine</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCPINEBARRENS_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.301" miny="41.649" maxx="-70.599" maxy="42.682"/> <BoundingBox SRS="EPSG:26986" minx="216585.371" miny="822472.566" maxx="273855.941" maxy="936832.316"/> <Style> <Name>GISDATA.VCPINEBARRENS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCPINEBARRENS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCRIVERINE_POLY</Name> <Title>Riverine Natural Community Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>GISDATA.VCRIVERINE_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCRIVERINE_POLY.xml</Keyword> <Keyword>Riverine</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcriv.avl</Keyword> <Keyword>Natural</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.376" miny="41.503" maxx="-70.498" maxy="42.885"/> <BoundingBox SRS="EPSG:26986" minx="210367.067" miny="806351.754" maxx="281874.907" maxy="959426.374"/> <Style> <Name>GISDATA.VCRIVERINE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCRIVERINE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VCSANDPLAIN_POLY</Name> <Title>Sandplain Natural Community Systems</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Community</Keyword> <Keyword>GISDATA.VCSANDPLAIN_POLY</Keyword> <Keyword>Natural</Keyword> <Keyword>Systems</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vcsandpl.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Priority_Nat_Veg_Communities.lyr</Keyword> <Keyword>Sandplain</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/natveg.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VCSANDPLAIN_POLY.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.319" miny="41.506" maxx="-70.519" maxy="42.884"/> <BoundingBox SRS="EPSG:26986" minx="215092.033" miny="806700.058" maxx="280151.193" maxy="959319.628"/> <Style> <Name>GISDATA.VCSANDPLAIN_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VCSANDPLAIN_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VTTOWNS_ARC</Name> <Title>Vermont Towns Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.VTTOWNS_ARC</Keyword> <Keyword>Arcs</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VTTOWNS_ARC.xml</Keyword> <Keyword>Towns</Keyword> <Keyword>Vermont</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.476" miny="42.715" maxx="-71.464" maxy="45.03"/> <BoundingBox SRS="EPSG:26986" minx="44050.3" miny="942273.81" maxx="202807.8" maxy="1197774.88"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VTTOWNS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.VTTOWNS_POLY</Name> <Title>Vermont Towns</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.VTTOWNS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.VTTOWNS_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/adjstbnd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/vttdef1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/VT_Towns.lyr</Keyword> <Keyword>Towns</Keyword> <Keyword>Vermont</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.476" miny="42.715" maxx="-71.464" maxy="45.03"/> <BoundingBox SRS="EPSG:26986" minx="44050.3" miny="942273.81" maxx="202807.8" maxy="1197774.88"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VTTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>Grey_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VTTOWNS_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.VTTOWNS_POLY::Brown_Italic_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.VTTOWNS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WATERSHEDS_ARC</Name> <Title>Major Watersheds Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/watrshds.htm</Keyword> <Keyword>Major</Keyword> <Keyword>Arcs</Keyword> <Keyword>Watersheds</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.WATERSHEDS_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WATERSHEDS_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.623" miny="40.204" maxx="-69.847" maxy="43.98"/> <BoundingBox SRS="EPSG:26986" minx="29741.88" miny="776514.38" maxx="331844.22" maxy="968086.0"/> <Style> <Name>Black_Lines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WATERSHEDS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WATERSHEDS_POLY</Name> <Title>Major Watersheds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/watrshds.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WATERSHEDS_POLY.xml</Keyword> <Keyword>Major</Keyword> <Keyword>GISDATA.WATERSHEDS_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/watshd1p.avl</Keyword> <Keyword>Watersheds</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Major_Watersheds.lyr</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.586" miny="41.22" maxx="-69.884" maxy="42.963"/> <BoundingBox SRS="EPSG:26986" minx="29741.88" miny="776514.38" maxx="331844.22" maxy="968086.0"/> <Style> <Name>GISDATA.WATERSHEDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WATERSHEDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WATERTAXISTOPS_PT</Name> <Title>Boston Harbor Water Taxi Stops</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Stops</Keyword> <Keyword>GISDATA.WATERTAXISTOPS_PT</Keyword> <Keyword>Taxi</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Boston_Harbor_Water_Taxi_Stops.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/WATERTAXISTOPS_PT.avl</Keyword> <Keyword>Boston</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/eot_layers.htm</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Harbor</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WATERTAXISTOPS_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="42.342" maxx="-71.027" maxy="42.377"/> <BoundingBox SRS="EPSG:26986" minx="236168.283" miny="899379.07" maxx="238962.409" maxy="902865.474"/> <Style> <Name>GISDATA.WATERTAXISTOPS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WATERTAXISTOPS_PT"/> </LegendURL> </Style> <Style> <Name>GISDATA.WATERTAXISTOPS_PT::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WATERTAXISTOPS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WBS2002_ARC</Name> <Title>DEP 2002 Integrated List of Waters 305b 303d</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2002</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/WBS2002_ARC.avl</Keyword> <Keyword>Waters</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2002.htm</Keyword> <Keyword>303d</Keyword> <Keyword>305b</Keyword> <Keyword>DEP</Keyword> <Keyword>of</Keyword> <Keyword>GISDATA.WBS2002_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Water_Body_Segment_2002_Arcs.lyr</Keyword> <Keyword>Integrated</Keyword> <Keyword>List</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WBS2002_ARC.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.502" miny="41.328" maxx="-69.94" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="36453.582" miny="788287.437" maxx="327489.593" maxy="959664.687"/> <Style> <Name>GISDATA.WBS2002_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WBS2002_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WBS2002_POLY</Name> <Title>DEP 2002 Integrated List of Waters 305b 303d</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2002</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wbs2002.htm</Keyword> <Keyword>Waters</Keyword> <Keyword>303d</Keyword> <Keyword>305b</Keyword> <Keyword>DEP</Keyword> <Keyword>of</Keyword> <Keyword>Integrated</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/WBS2002_POLY.avl</Keyword> <Keyword>GISDATA.WBS2002_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Water_Body_Segment_2002_Polygons.lyr</Keyword> <Keyword>List</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WBS2002_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.548" miny="40.188" maxx="-69.829" maxy="43.906"/> <BoundingBox SRS="EPSG:26986" minx="38527.617" miny="777968.187" maxx="330659.375" maxy="956442.937"/> <Style> <Name>GISDATA.WBS2002_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WBS2002_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WETCHANGE_POLY</Name> <Title>DEP Wetlands Change</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Wetlands_Change.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdepwch.avl</Keyword> <Keyword>Change</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WETCHANGE_POLY.xml</Keyword> <Keyword>GISDATA.WETCHANGE_POLY</Keyword> <Keyword>Wetlands</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wetchange.htm</Keyword> <Keyword>DEP</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.473" miny="41.239" maxx="-69.941" maxy="42.885"/> <BoundingBox SRS="EPSG:26986" minx="38747.875" miny="778391.313" maxx="327341.195" maxy="959347.0"/> <Style> <Name>GISDATA.WETCHANGE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETCHANGE_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETCHANGE_POLY::Depgis_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETCHANGE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WETLANDSDEP_ARC</Name> <Title>Wetlands 12K Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Arcs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.u/lyrs/DEP_Wetlands_With_Change.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.u/lyrs/DEP_Wetlands_Detailed.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WETLANDSDEP_ARC.xml</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdepach.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wetdep.htm</Keyword> <Keyword>12K</Keyword> <Keyword>Wetlands</Keyword> <Keyword>GISDATA.WETLANDSDEP_ARC</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/s5knum1a.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.u/lyrs/DEP_Wetlands_General.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdepac.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.349" miny="41.234" maxx="-69.898" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="777606.375" maxx="330836.969" maxy="962000.0"/> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Linear_Features</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Linear_Features_2_Categories_Max_24000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Simplified</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::4_Categories_Max_12000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Depgis_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_ARC::Hydrologic_Connections</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WETLANDSDEP_POLY</Name> <Title>DEP Wetlands</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WETLANDSDEP_POLY.xml</Keyword> <Keyword>DEP</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Wetlands_Detailed.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Wetlands_General.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wetdep.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Wetlands_With_Change.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdepivdol.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/DEP_Wetlands_Detailed_Outlines.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdepivd.avl</Keyword> <Keyword>Wetlands</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdeppch.avl</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.WETLANDSDEP_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/wetdeppc.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/w5koline.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.349" miny="40.884" maxx="-69.41" maxy="42.909"/> <BoundingBox SRS="EPSG:26986" minx="34476.02" miny="739141.313" maxx="370684.844" maxy="962000.0"/> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::4_Categories_Max_12000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Basemap</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Tidal_Flats</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::General_Categories_Max_24000</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Detailed</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Outlines_Only</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::General_Categories</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Depgis_Labels_Max10k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Salt_Marsh</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Detailed_With_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDSDEP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WETLANDS_POLY_SPLIT</Name> <Title>DEP Wetland Split</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.WETLANDS_POLY_SPLIT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.52648348079524" miny="41.23129769911183" maxx="-69.89807094462525" maxy="42.90843301802384"/> <BoundingBox SRS="EPSG:26986" minx="34476.0195866962" miny="777606.3749951989" maxx="330836.96875454654" maxy="961999.9999774578"/> <Style> <Name>GISDATA.WETLANDSDEP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WETLANDS_POLY_SPLIT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WINDPOWERGRID50_POLY</Name> <Title>Wind Power Density at 50m</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.WINDPOWERGRID50_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WINDPOWERGRID50_POLY.xml</Keyword> <Keyword>Density</Keyword> <Keyword>Power</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/windpowergrid50_poly.avl</Keyword> <Keyword>50m</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windpower.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.stae.ma.us/lyrs/Wind_Power_Density_at_50m.lyr</Keyword> <Keyword>at</Keyword> <Keyword>Wind</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53259950256674" miny="41.18072772488566" maxx="-69.8285118975695" maxy="42.917479271768926"/> <BoundingBox SRS="EPSG:26986" minx="34000.08287270964" miny="771999.0618206882" maxx="336500.02311255893" maxy="962999.0273090492"/> <Style> <Name>GISDATA.WINDPOWERGRID50_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDPOWERGRID50_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WINDSPEEDGRID200_POLY</Name> <Title>Modeled Wind Speed Grids</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>GISDATA.WINDSPEEDGRID200_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/windspeed.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.181" maxx="-69.827" maxy="42.919"/> <BoundingBox SRS="EPSG:26986" minx="33940.381" miny="771993.654" maxx="336649.583" maxy="963174.849"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDSPEEDGRID200_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WINDSPEEDGRID200_POLY::50_M_Colored_Cells</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDSPEEDGRID200_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WINDSPEEDGRID200_POLY::Lower_Speed_Grey_Mask_30M</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDSPEEDGRID200_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WINDSPEEDGRID200_POLY::Lower_Speed_Grey_Mask_50M</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDSPEEDGRID200_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.WINDSPEEDGRID200_POLY::30_M_Colored_Cells</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WINDSPEEDGRID200_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.WQMSTAT_PT</Name> <Title>Northeast Water Quality Monitoring</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Agencies_Monitoring_Water_Quality.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/wqm_stat.htm</Keyword> <Keyword>Northeast</Keyword> <Keyword>Quality</Keyword> <Keyword>GISDATA.WQMSTAT_PT</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/agencypt.avl</Keyword> <Keyword>Monitoring</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.WQMSTAT_PT.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.186" miny="42.489" maxx="-70.562" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="225812.67" miny="915846.81" maxx="276616.91" maxy="958118.88"/> <Style> <Name>GISDATA.WQMSTAT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.WQMSTAT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ZIPCODES_POLY</Name> <Title>Zipcodes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Zipcodes</Keyword> <Keyword>GISDATA.ZIPCODES_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ZIPCODES_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.262" miny="777514.313" maxx="330846.094" maxy="959747.437"/> <Style> <Name>GISDATA.ZIPCODES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZIPCODES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZIPCODES_POLY::Yellow_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZIPCODES_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZIPCODES_POLY::Black_Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZIPCODES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ZONE1_POLY_DISSOLVE</Name> <Title>Zone I</Title> <Abstract/> <KeywordList> <Keyword>DEP</Keyword> <Keyword>Zone I</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.499" miny="41.236" maxx="-69.922" maxy="42.887"/> <BoundingBox SRS="EPSG:26986" minx="36680.601" miny="778037.785" maxx="328948.106" maxy="959625.411"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONE1_POLY_DISSOLVE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ZONE2_POLY</Name> <Title>Zone IIs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>IIs</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ ZONE_II.lyr</Keyword> <Keyword>2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/G ISDATA.ZONE2_POLY.xml</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ziis.htm</Keyword> <Keyword>Zone</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>GISDATA.ZONE2_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zone2b.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.4849539408939" miny="41.24543373325672" maxx="-69.9287820416153" maxy="42.894479511865136"/> <BoundingBox SRS="EPSG:26986" minx="37833.300610735256" miny="779099.9375826382" maxx="328356.65654403786" maxy="960448.7500378311"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONE2_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ZONE2_POLY_DISSOLVE</Name> <Title>Zone IIs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ZONE2_POLY_DISSOLVE.xml</Keyword> <Keyword>IIs</Keyword> <Keyword>GISDATA.ZONE2_POLY_DISSOLVE</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/ZONE_ll.lyr</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/ziis.htm</Keyword> <Keyword>Zone</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zone2b.avl</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.485" miny="41.245" maxx="-69.929" maxy="42.895"/> <BoundingBox SRS="EPSG:26986" minx="37833.301" miny="779099.938" maxx="328356.657" maxy="960448.75"/> <Style> <Name>GISDATA.ZONE2_POLY_DISSOLVE::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONE2_POLY_DISSOLVE"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONE2_POLY_DISSOLVE::Depgis_Max100k</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONE2_POLY_DISSOLVE"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GISDATA.ZONING_POLY</Name> <Title>Zoning</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zonlus2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zonlus1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zonpus1p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zondef1p.avl</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/zn.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Zoning_by_general_use_transparent.lyr</Keyword> <Keyword>GISDATA.ZONING_POLY</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Zoning_district_outline.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Zoning_by_primary_use_transparent.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Zoning_by_general_use_solid.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/avls/zonpus2p.avl</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/lyrs/Zoning_by_primary_use_solid.lyr</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.ZONING_POLY.xml</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.23" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33861.26" miny="777514.31" maxx="330846.125" maxy="959743.062"/> <Style> <Name>GISDATA.ZONING_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONING_POLY::General_Use_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONING_POLY::District_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONING_POLY::Primary_Use_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONING_POLY::General_Use_Transparent</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> <Style> <Name>GISDATA.ZONING_POLY::Primary_Use_Solid</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GISDATA.ZONING_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GLAIRD.OPENSPACE_POLY</Name> <Title>OS Wiki Toolbar Poly Layer</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>GLAIRD.OPENSPACE_POLY</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53332495276922" miny="41.23124646551307" maxx="-69.89863062066442" maxy="42.887386749370485"/> <BoundingBox SRS="EPSG:26986" minx="33861.26420000038" miny="777614.9408999843" maxx="330835.13420000055" maxy="959662.6308999867"/> <Style> <Name>GISDATA.OPENSPACE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GLAIRD.OPENSPACE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:GLAIRD.OS_EDIT_USER</Name> <Title>Os Toolbar User Contact Info</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>GLAIRD.OS_EDIT_USER</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.54929609918767" miny="41.23000248803751" maxx="-69.90139706375079" maxy="42.7735371093553"/> <BoundingBox SRS="EPSG:26986" minx="32251.912600002193" miny="777514.3099999799" maxx="330846.09000000596" maxy="947016.8472999894"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=GLAIRD.OS_EDIT_USER"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ALGONQUIN_HUBLINE_LNG_ARC</Name> <Title>Algonquin Hubline LNG Pipeline</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Pipeline</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_algonquin_hubline_lng_arc.htm</Keyword> <Keyword>LNG</Keyword> <Keyword>Algonquin</Keyword> <Keyword>MORIS.ALGONQUIN_HUBLINE_LNG_ARC</Keyword> <Keyword>Hubline</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.96492268310628" miny="42.24401800909904" maxx="-70.77439806265906" maxy="42.54301637189095"/> <BoundingBox SRS="EPSG:26986" minx="244157.959700003" miny="888425.462000001" maxx="259600.7896" maxy="921524.3618"/> <Style> <Name>MORIS.ALGONQUIN_HUBLINE_LNG_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ALGONQUIN_HUBLINE_LNG_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ARTIFICIAL_REEFS_PT</Name> <Title>Artificial Reefs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.ARTIFICIAL_REEFS_PT</Keyword> <Keyword>Reefs</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_artificial_reefs_pt.htm</Keyword> <Keyword>Artificial</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DataType=point</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.978" miny="41.523" maxx="-70.18" maxy="42.344"/> <BoundingBox SRS="EPSG:26986" minx="243562.7" miny="808892.044" maxx="308762.657" maxy="899448.509"/> <Style> <Name>MORIS.ARTIFICIAL_REEFS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ARTIFICIAL_REEFS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ASCIDIELLA_ASPERSA_2008_PT</Name> <Title>Ascidiella aspersa 2008 Points (European Sea Squirt)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>(European</Keyword> <Keyword>Sea</Keyword> <Keyword>Squirt)</Keyword> <Keyword>Ascidiella</Keyword> <Keyword>aspersa</Keyword> <Keyword>2008</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.ASCIDIELLA_ASPERSA_2008_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ascidiella_aspersa_2008_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.06371520615686" miny="41.77099144282305" maxx="-70.48964067834657" maxy="42.57453042417096"/> <BoundingBox SRS="EPSG:26986" minx="236273.4038000018" miny="836118.7167999824" maxx="282953.4249000041" maxy="924979.4934999902"/> <Style> <Name>MORIS.ASCIDIELLA_ASPERSA_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ASCIDIELLA_ASPERSA_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ASCIDIELLA_ASPERSA_2009_PT</Name> <Title>Ascidiella aspersa 2009 Points (European Sea Squirt)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ascidiella_aspersa_2009_pt.htm</Keyword> <Keyword>European Sea Squirt</Keyword> <Keyword>Ascidiella aspersa</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.383" maxx="-70.488" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="282953.425" maxy="934128.244"/> <Style> <Name>MORIS.ASCIDIELLA_ASPERSA_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ASCIDIELLA_ASPERSA_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ASCIDIELLA_ASPERSA_2010_PT</Name> <Title>Ascidiella aspersa 2010 Points (European Sea Squirt)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ascidiella_aspersa_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ascidiella_aspersa_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.149" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="1045219.38"/> <Style> <Name>MORIS.ASCIDIELLA_ASPERSA_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ASCIDIELLA_ASPERSA_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ASCIDIELLA_ASPERSA_2011_PT</Name> <Title>Ascidiella aspersa (European Sea Squirt) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ascidiella_aspersa_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ascidiella_aspersa_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.381" maxx="-70.228" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="302628.374" maxy="1045219.38"/> <Style> <Name>MORIS.ASCIDIELLA_ASPERSA_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ASCIDIELLA_ASPERSA_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATBSLNPT_PT</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Baseline Points</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>MORIS.ATBSLNPT_PT</Keyword> <Keyword>Points</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>Offshore</Keyword> <Keyword>Baseline</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atbslnpt_pt.htm</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_atbslnpt_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.604" miny="24.331" maxx="-66.945" maxy="44.895"/> <BoundingBox SRS="EPSG:26986" minx="-1006947.894" miny="-1048498.37" maxx="560512.545" maxy="1183193.589"/> <Style> <Name>MORIS.ATBSLNPT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATBSLNPT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_CLC_PT</Name> <Title>usSEABED Calculated Surficial Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>usSEABED</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_clc_pt.htm</Keyword> <Keyword>Sediment</Keyword> <Keyword>MORIS.ATL_CLC_PT</Keyword> <Keyword>Calculated</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.124" miny="37.595" maxx="-64.418" maxy="46.15"/> <BoundingBox SRS="EPSG:26986" minx="-80818.052" miny="391463.478" maxx="732276.716" maxy="1322560.327"/> <Style> <Name>MORIS.ATL_CLC_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_CLC_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_CMP_PT</Name> <Title>usSEABED Component and Features Surficial Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>usSEABED</Keyword> <Keyword>MORIS.ATL_CMP_PT</Keyword> <Keyword>Sediment</Keyword> <Keyword>Component</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_cmp_pt.htm</Keyword> <Keyword>Features</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.041" miny="37.624" maxx="-64.741" maxy="45.27"/> <BoundingBox SRS="EPSG:26986" minx="-78424.287" miny="393445.489" maxx="732276.717" maxy="1224506.603"/> <Style> <Name>MORIS.ATL_CMP_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_CMP_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_EXT_PT</Name> <Title>usSEABED Extracted Surficial Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>usSEABED</Keyword> <Keyword>Sediment</Keyword> <Keyword>MORIS.ATL_EXT_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_ext_pt.htm</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Extracted</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.039" miny="37.617" maxx="-64.554" maxy="44.99"/> <BoundingBox SRS="EPSG:26986" minx="-79549.451" miny="393929.245" maxx="749641.687" maxy="1193359.863"/> <Style> <Name>MORIS.ATL_EXT_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_EXT_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_FAC_PT</Name> <Title>usSEABED Facies Surficial Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>usSEABED</Keyword> <Keyword>MORIS.ATL_FAC_PT</Keyword> <Keyword>Facies</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_fac_pt.htm</Keyword> <Keyword>Sediment</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.041" miny="37.624" maxx="-64.741" maxy="45.27"/> <BoundingBox SRS="EPSG:26986" minx="-78424.287" miny="393445.489" maxx="732276.717" maxy="1224506.603"/> <Style> <Name>MORIS.ATL_FAC_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_FAC_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_HURTRACK_ARC</Name> <Title>Hurricane Tracks for the Atlantic Basin 1851-2008</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>Tracks</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_hurtrack_arc.htm</Keyword> <Keyword>1851-2008</Keyword> <Keyword>Basin</Keyword> <Keyword>Hurricane</Keyword> <Keyword>the</Keyword> <Keyword>in</Keyword> <Keyword>MORIS.ATL_HURTRACK_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>DataType=line</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-158.774" miny="-4.419" maxx="33.286" maxy="79.996"/> <BoundingBox SRS="EPSG:26986" minx="-3690115.093" miny="-2974458.964" maxx="6857500.296" maxy="5555449.867"/> <Style> <Name>MORIS.ATL_HURTRACK_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_HURTRACK_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ATL_PRS_PT</Name> <Title>usSEABED Parsed Surficial Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>usSEABED</Keyword> <Keyword>MORIS.ATL_PRS_PT</Keyword> <Keyword>Sediment</Keyword> <Keyword>Parsed</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_atl_prs_pt.htm</Keyword> <Keyword>Surficial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-75.124" miny="37.595" maxx="-64.418" maxy="46.15"/> <BoundingBox SRS="EPSG:26986" minx="-80494.644" miny="391463.478" maxx="732276.716" maxy="1322560.327"/> <Style> <Name>MORIS.ATL_PRS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ATL_PRS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.AWOIS_SUB_WRECKS_PT</Name> <Title>Office of Coast Survey's Automated Wreck and Obstruction Information System</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_awois_sub_wrecks_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_awois_sub_wrecks_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.266" miny="40.192" maxx="-65.153" maxy="45.339"/> <BoundingBox SRS="EPSG:26986" minx="139888.586" miny="677350.733" maxx="699139.36" maxy="1232301.098"/> <Style> <Name>MORIS.AWOIS_SUB_WRECKS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.AWOIS_SUB_WRECKS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BATHY_ARC</Name> <Title>Bathymetry - Stellwagen Bank</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bathy_arc.htm</Keyword> <Keyword>Bank</Keyword> <Keyword>MORIS.BATHY_ARC</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.026" miny="41.665" maxx="-69.785" maxy="42.862"/> <BoundingBox SRS="EPSG:26986" minx="239444.0" miny="825198.297" maxx="340174.004" maxy="956982.454"/> <Style> <Name>MORIS.BATHY_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BATHY_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BATHY_FATHOMS_POLY</Name> <Title>Bathymetry All MA Waters (fathoms)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bathy_fathoms_poly.htm</Keyword> <Keyword>Waters</Keyword> <Keyword>(fathoms)</Keyword> <Keyword>All</Keyword> <Keyword>MORIS.BATHY_FATHOMS_POLY</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MA</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.01679759361404" miny="40.97182108237454" maxx="-68.91873165576247" maxy="43.02849893768727"/> <BoundingBox SRS="EPSG:26986" minx="157875.88229999607" miny="749954.8654999807" maxx="410460.5894000026" maxy="975317.5144999883"/> <Style> <Name>MORIS.BATHY_FATHOMS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BATHY_FATHOMS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BAY_CLOSURE_LINES_ARC</Name> <Title>Massachusetts Bay Closure Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bay_closure_lines_arc.htm</Keyword> <Keyword>MORIS.BAY_CLOSURE_LINES_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_bay_closure_lines_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-83.674" miny="25.282" maxx="-67.167" maxy="44.735"/> <BoundingBox SRS="EPSG:26986" minx="-771734.362" miny="-966301.299" maxx="543836.134" maxy="1165707.585"/> <Style> <Name>MORIS.BAY_CLOSURE_LINES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BAY_CLOSURE_LINES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BCKSCTTER_RD</Name> <Title>Stellwagen Bank Backscatter Instensity and Sun Illuminated Topography</Title> <Abstract/> <KeywordList> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=13</Keyword> <Keyword>BytesPerPixel=6</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bcksctter_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.BCKSCTTER_RD</Keyword> <Keyword>MORIS.BCKSCTTER_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>Bank</Keyword> <Keyword>Backscatter</Keyword> <Keyword>Instensity</Keyword> <Keyword>and</Keyword> <Keyword>Sun</Keyword> <Keyword>Illuminated</Keyword> <Keyword>Topography</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_bcksctter_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.61" miny="42.078" maxx="-70.017" maxy="42.806"/> <BoundingBox SRS="EPSG:26986" minx="273642.612" miny="870730.992" maxx="321339.612" maxy="950940.992"/> <Style> <Name>MORIS.BCKSCTTER_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BCKSCTTER_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BEDROCK_POLY</Name> <Title>Bedrock Outcrops - Stellwagen Bank National Marine Sanctuary</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Marine</Keyword> <Keyword>Bank</Keyword> <Keyword>Outcrops</Keyword> <Keyword>Sanctuary</Keyword> <Keyword>National</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>Bedrock</Keyword> <Keyword>MORIS.BEDROCK_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bedrock_poly.htm</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.601" miny="42.584" maxx="-70.176" maxy="42.783"/> <BoundingBox SRS="EPSG:26986" minx="273771.676" miny="926770.089" maxx="308309.329" maxy="948444.585"/> <Style> <Name>MORIS.BEDROCK_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BEDROCK_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_1MBS_RD</Name> <Title>Boston Harbor 1m Sidescan Sonar Mosaic</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bh_1mbs_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.BH_1MBS_RD</Keyword> <Keyword>MORIS.BH_1MBS_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>1m</Keyword> <Keyword>Sidescan</Keyword> <Keyword>Sonar</Keyword> <Keyword>Mosaic</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.99999867</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_bh_1mbs_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.068" miny="42.252" maxx="-70.804" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="235649.224" miny="889340.904" maxx="257227.195" maxy="909948.877"/> <Style> <Name>MORIS.BH_1MBS_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_1MBS_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_2MMBBATH_RD</Name> <Title>Boston Harbor 2m Multibeam Bathymetry</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bh_2mmbbath_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.BH_2MMBBATH_RD</Keyword> <Keyword>MORIS.BH_2MMBBATH_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>2m</Keyword> <Keyword>Multibeam</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.9999107</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_bh_2mmbbath_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.057" miny="42.259" maxx="-70.813" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="236554.479" miny="890088.97" maxx="256543.587" maxy="909966.083"/> <Style> <Name>MORIS.BH_2MMBBATH_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_2MMBBATH_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_30MHS_RD</Name> <Title>Boston Harbor 30m Resolution Sidescan Sonar Mosaic Hillshade</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bh_30mhs_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>BH_30MHS_RD</Keyword> <Keyword>MORIS.BH_30MHS_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=29.99014192</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>30m</Keyword> <Keyword>Resolution</Keyword> <Keyword>Sidescan</Keyword> <Keyword>Sonar</Keyword> <Keyword>Mosaic</Keyword> <Keyword>Hillshade</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_bh_30mhs_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.057" miny="42.256" maxx="-70.813" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="236554.324" miny="889728.586" maxx="256527.758" maxy="909941.941"/> <Style> <Name>MORIS.BH_30MHS_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_30MHS_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_5MBS_RD</Name> <Title>Boston Harbor 5m Sidescan Sonar Mosaic</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bh_5mbs_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>massgis_BH_5MBS_RD</Keyword> <Keyword>MORIS.BH_5MBS_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.9997877</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>5m</Keyword> <Keyword>Sidescan</Keyword> <Keyword>Sonar</Keyword> <Keyword>Mosaic</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_bh_5mbs_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.068" miny="42.252" maxx="-70.805" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="235651.224" miny="889343.752" maxx="257220.308" maxy="909942.877"/> <Style> <Name>MORIS.BH_5MBS_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_5MBS_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_BOTTOMTYPE_POLY</Name> <Title>Boston Harbor Bottom Type</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Bottom</Keyword> <Keyword>MORIS.BH_BOTTOMTYPE_POLY</Keyword> <Keyword>Type</Keyword> <Keyword>Boston</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bottomtype_poly.htm</Keyword> <Keyword>Harbor</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.053" miny="42.258" maxx="-70.818" maxy="42.437"/> <BoundingBox SRS="EPSG:26986" minx="236901.635" miny="889901.69" maxx="256119.609" maxy="909755.741"/> <Style> <Name>MORIS.BH_BOTTOMTYPE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_BOTTOMTYPE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_COMPOSITEBATHYBNDS_POLY</Name> <Title>Boston Harbor Composite Bathymetric Survey Bounds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Bathymetric</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_compositebathybnds_poly.htm</Keyword> <Keyword>Survey</Keyword> <Keyword>Bounds</Keyword> <Keyword>Boston</Keyword> <Keyword>MORIS.BH_COMPOSITEBATHYBNDS_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Composite</Keyword> <Keyword>Harbor</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.056" miny="42.255" maxx="-70.817" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="236677.389" miny="889574.288" maxx="256207.561" maxy="909880.982"/> <Style> <Name>MORIS.BH_COMPOSITEBATHYBNDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_COMPOSITEBATHYBNDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_MULTIBEAMBATHYBNDS_POLY</Name> <Title>Boston Harbor Multibeam Bathymetry Survey Bounds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Survey</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_multibeambathybnds_poly.htm</Keyword> <Keyword>Bounds</Keyword> <Keyword>Boston</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>Multibeam</Keyword> <Keyword>MORIS.BH_MULTIBEAMBATHYBNDS_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Harbor</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.054" miny="42.262" maxx="-70.817" maxy="42.438"/> <BoundingBox SRS="EPSG:26986" minx="236757.422" miny="890361.705" maxx="256207.561" maxy="909781.316"/> <Style> <Name>MORIS.BH_MULTIBEAMBATHYBNDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_MULTIBEAMBATHYBNDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_SEDGRABS_PT</Name> <Title>Boston Harbor Ground Validation Sediment Grabs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.BH_SEDGRABS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_sedgrabs_pt.htm</Keyword> <Keyword>Ground</Keyword> <Keyword>Grabs</Keyword> <Keyword>Sediment</Keyword> <Keyword>Boston</Keyword> <Keyword>Validation</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Harbor</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.046" miny="42.271" maxx="-70.824" maxy="42.434"/> <BoundingBox SRS="EPSG:26986" minx="237425.18" miny="891437.519" maxx="255630.013" maxy="909348.64"/> <Style> <Name>MORIS.BH_SEDGRABS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_SEDGRABS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BH_SURVEYLINES_SSS_ARC</Name> <Title>Boston Harbor Sidescan Sonar Tracklines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Sonar</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_surveylines_sss_arc.htm</Keyword> <Keyword>Tracklines</Keyword> <Keyword>Boston</Keyword> <Keyword>Sidescan</Keyword> <Keyword>MORIS.BH_SURVEYLINES_SSS_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Harbor</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.054" miny="42.254" maxx="-70.818" maxy="42.436"/> <BoundingBox SRS="EPSG:26986" minx="236776.774" miny="889557.188" maxx="256120.286" maxy="909639.109"/> <Style> <Name>MORIS.BH_SURVEYLINES_SSS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BH_SURVEYLINES_SSS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BLK_CLP_POLY</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - OCS Blocks</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>OCS</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_blk_clp_poly.htm</Keyword> <Keyword>MORIS.BLK_CLP_POLY</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>Offshore</Keyword> <Keyword>Blocks</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_blk_clp_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.818" miny="23.675" maxx="-63.428" maxy="44.855"/> <BoundingBox SRS="EPSG:26986" minx="-1025301.103" miny="-1122760.343" maxx="840656.066" maxy="1178417.217"/> <Style> <Name>MORIS.BLK_CLP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BLK_CLP_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.BLK_CLP_POLY::RFI_map</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BLK_CLP_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.BLK_CLP_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BLK_CLP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOATING_USAGE_ARC</Name> <Title>Boating Usage Arcs</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.BOATING_USAGE_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_boating_usage_arc.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.46833984553871" miny="40.9113039902009" maxx="-69.4076190669591" maxy="43.00772382741643"/> <BoundingBox SRS="EPSG:26986" minx="202667.1225999966" miny="742173.9193999803" maxx="370638.5005000025" maxy="973009.9013999897"/> <Style> <Name>MORIS.BOATING_USAGE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOATING_USAGE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOATING_USAGE_POLY</Name> <Title>Boating Usage Polys</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_boating_usage_poly.htm</Keyword> <Keyword>MORIS.BOATING_USAGE_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.22953227245463" miny="41.18691821291272" maxx="-69.82924175939903" maxy="42.908070087787756"/> <BoundingBox SRS="EPSG:26986" minx="222690.10989999687" miny="772062.5035999821" maxx="336460.4647000008" maxy="961975.0439999907"/> <Style> <Name>MORIS.BOATING_USAGE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOATING_USAGE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLOIDES_VIOLACEUS_2008_PT</Name> <Title>Botrylloides violaceus 2008 Points (Sheath Tunicate)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Botrylloides</Keyword> <Keyword>violaceus</Keyword> <Keyword>2008</Keyword> <Keyword>Points</Keyword> <Keyword>(Sheath</Keyword> <Keyword>Tunicate)</Keyword> <Keyword>MORIS.BOTRYLLOIDES_VIOLACEUS_2008_PT</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botrylloides_violaceus_2008_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.17277475136503" miny="41.480095169164365" maxx="-69.90050484816507" maxy="43.657087471051234"/> <BoundingBox SRS="EPSG:26986" minx="227327.2428999982" miny="804493.7547999823" maxx="329077.39750000247" maxy="1045219.379599991"/> <Style> <Name>MORIS.BOTRYLLOIDES_VIOLACEUS_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLOIDES_VIOLACEUS_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLOIDES_VIOLACEUS_2009_PT</Name> <Title>Botrylloides violaceus 2009 Points (Sheath Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>Botrylloides violaceus</Keyword> <Keyword>Sheath Tunicate</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botrylloides_violaceus_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLOIDES_VIOLACEUS_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLOIDES_VIOLACEUS_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLOIDES_VIOLACEUS_2010_PT</Name> <Title>Botrylloides violaceus 2010 Points (Sheath Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botrylloides_violaceus_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://http://maps.massgis.state.ma.us/czm/moris/XML/moris_botrylloides_violaceus_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLOIDES_VIOLACEUS_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLOIDES_VIOLACEUS_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLOIDES_VIOLACEUS_2011_PT</Name> <Title>Botrylloides violaceus (Sheath Tunicate) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botrylloides_violaceus_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_botrylloides_violaceus_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLOIDES_VIOLACEUS_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLOIDES_VIOLACEUS_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLUS_SCHLOSSERI_2008_PT</Name> <Title>Botryllus schlosseri 2008 Points (Star Tunicate)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.BOTRYLLUS_SCHLOSSERI_2008_PT</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Botryllus</Keyword> <Keyword>schlosseri</Keyword> <Keyword>2008</Keyword> <Keyword>Points</Keyword> <Keyword>(Star</Keyword> <Keyword>Tunicate)</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botryllus_schlosseri_2008_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.17277475136503" miny="41.48009516916439" maxx="-69.90050484816507" maxy="43.657087471051234"/> <BoundingBox SRS="EPSG:26986" minx="227327.242899999" miny="804493.754799999" maxx="329077.397500001" maxy="1045219.3796"/> <Style> <Name>MORIS.BOTRYLLUS_SCHLOSSERI_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLUS_SCHLOSSERI_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLUS_SCHLOSSERI_2009_PT</Name> <Title>Botryllus schlosseri 2009 Points (Star Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>Botryllus schlosseri</Keyword> <Keyword>Star Tunicate</Keyword> <Keyword>http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botryllus_schlosseri_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLUS_SCHLOSSERI_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLUS_SCHLOSSERI_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLUS_SCHLOSSERI_2010_PT</Name> <Title>Botryllus schlosseri 2010 Points (Star Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botryllus_schlosseri_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_botryllus_schlosseri_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLUS_SCHLOSSERI_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLUS_SCHLOSSERI_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BOTRYLLUS_SCHLOSSERI_2011_PT</Name> <Title>Botryllus schlosseri (Golden Star Tunicate) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_botryllus_schlosseri_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_botryllus_schlosseri_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.BOTRYLLUS_SCHLOSSERI_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BOTRYLLUS_SCHLOSSERI_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.BUGULA_NERITINA_2011_PT</Name> <Title>Bugula neritina (Purple Bushy Bryozoan) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_bugula_neritina_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_bugula_neritina_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.173" maxy="42.574"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="924782.663"/> <Style> <Name>MORIS.BUGULA_NERITINA_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.BUGULA_NERITINA_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CAPE_GEOLGEOG_POLY</Name> <Title>Cape Cod and the Islands Geologic Map</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Cape</Keyword> <Keyword>Islands</Keyword> <Keyword>MORIS.CAPE_GEOLGEOG_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cape_geolgeog_poly.htm</Keyword> <Keyword>Map</Keyword> <Keyword>Geologic</Keyword> <Keyword>the</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.951" miny="41.237" maxx="-69.918" maxy="42.089"/> <BoundingBox SRS="EPSG:26986" minx="246038.889" miny="777542.272" maxx="330921.501" maxy="871109.803"/> <Style> <Name>MORIS.CAPE_GEOLGEOG_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CAPE_GEOLGEOG_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CAPE_WIND_PT</Name> <Title>Cape Wind Turbine Locations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cape_wind_pt.htm</Keyword> <Keyword>MORIS.CAPE_WIND_PT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.39768973935757" miny="41.46012531720673" maxx="-70.23867217968346" maxy="41.54431885134437"/> <BoundingBox SRS="EPSG:26986" minx="292094.5693999979" miny="801883.5382999817" maxx="305246.1925000045" maxy="811053.4117999849"/> <Style> <Name>MORIS.CAPE_WIND_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CAPE_WIND_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CAPRELLA_MUTICA_2011_PT</Name> <Title>Caprella mutica (Skeleton Shrimp) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_caprella_mutica_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_caprella_mutica_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.157" maxy="43.324"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="1008132.943"/> <Style> <Name>MORIS.CAPRELLA_MUTICA_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CAPRELLA_MUTICA_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CARCINUS_MAENAS_2008_PT</Name> <Title>Carcinus maenas 2008 Points (Green Carcinus Crab)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_carcinus_maenas_2008_pt.htm</Keyword> <Keyword>MORIS.CARCINUS_MAENAS_2008_PT</Keyword> <Keyword>(Green</Keyword> <Keyword>Carcinus</Keyword> <Keyword>Crab)</Keyword> <Keyword>maenas</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.06391686711629" miny="41.73526220070005" maxx="-69.90582007395508" maxy="43.450181844022666"/> <BoundingBox SRS="EPSG:26986" minx="236273.403800003" miny="832839.249499999" maxx="329077.397500001" maxy="1022266.8193"/> <Style> <Name>MORIS.CARCINUS_MAENAS_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CARCINUS_MAENAS_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CARCINUS_MAENAS_2009_PT</Name> <Title>Carcinus maenas 2009 Points (Green Carcinus Crab)</Title> <Abstract/> <KeywordList> <Keyword>Carcinus maenas</Keyword> <Keyword>Green Carcinus Crab</Keyword> <Keyword>http://maps.massgis.state.ma.us/czm/moris/metadata/moris_carcinus_maenas_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.336" miny="41.464" maxx="-69.9" maxy="43.657"/> <BoundingBox SRS="EPSG:26986" minx="213696.183" miny="802689.228" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.CARCINUS_MAENAS_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CARCINUS_MAENAS_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CARCINUS_MAENAS_2010_PT</Name> <Title>Carcinus maenas 2010 Points (Green Carcinus Crab)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_carcinus_maenas_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_carcinus_maenas_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.CARCINUS_MAENAS_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CARCINUS_MAENAS_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CARCINUS_MAENAS_2011_PT</Name> <Title>Carcinus maenas (Green Crab) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_carcinus_maenas_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_carcinus_maenas_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.CARCINUS_MAENAS_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CARCINUS_MAENAS_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CCAP_MA_01_06_RD</Name> <Title>NOAA C-CAP Land Cover Change 2001-2006</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ccap_ma_01_06_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.CCAP_MA_01_06_RD</Keyword> <Keyword>MORIS.CCAP_MA_01_06_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=30</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_ccap_ma_01_06_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.096" miny="40.8" maxx="-68.991" maxy="43.518"/> <BoundingBox SRS="EPSG:26986" minx="-9967.071" miny="730803.018" maxx="402952.929" maxy="1029753.018"/> <Style> <Name>MORIS.CCAP_MA_01_06_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CCAP_MA_01_06_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CCAP_MA_01_RD</Name> <Title>NOAA C-CAP Land Cover 2001</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ccap_ma_01_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>CCAP_MA_01_RD</Keyword> <Keyword>MORIS.CCAP_MA_01_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=29.99968103</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NOAA</Keyword> <Keyword>C-CAP</Keyword> <Keyword>Land</Keyword> <Keyword>Cover</Keyword> <Keyword>2001</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_ccap_ma_01_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.108" miny="40.566" maxx="-69.303" maxy="43.544"/> <BoundingBox SRS="EPSG:26986" minx="-10868.704" miny="704882.523" maxx="377627.165" maxy="1032599.039"/> <Style> <Name>MORIS.CCAP_MA_01_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CCAP_MA_01_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CCAP_MA_06_RD</Name> <Title>NOAA C-CAP Land Cover 2001</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ccap_ma_06_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.CCAP_MA_06_RD</Keyword> <Keyword>MORIS.CCAP_MA_06_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=24.15351668</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_ccap_ma_06_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.096" miny="40.8" maxx="-68.991" maxy="43.518"/> <BoundingBox SRS="EPSG:26986" minx="-9969.994" miny="730807.865" maxx="402958.527" maxy="1029755.941"/> <Style> <Name>MORIS.CCAP_MA_06_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CCAP_MA_06_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CCAP_MA_96_01_RD</Name> <Title>NOAA C-CAP Land Cover 1996 - 2001</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ccap_ma_96_01_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>CCAP_MA_96_01_RD</Keyword> <Keyword>MORIS.CCAP_MA_96_01_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=30</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>NOAA</Keyword> <Keyword>C-CAP</Keyword> <Keyword>Land</Keyword> <Keyword>Cover</Keyword> <Keyword>1996</Keyword> <Keyword>-</Keyword> <Keyword>2001 </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_ccap_ma_96_01_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.107" miny="40.566" maxx="-69.303" maxy="43.544"/> <BoundingBox SRS="EPSG:26986" minx="-10850.0" miny="704862.0" maxx="377650.0" maxy="1032582.0"/> <Style> <Name>MORIS.CCAP_MA_96_01_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CCAP_MA_96_01_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CCAP_MA_96_RD</Name> <Title>NOAA C-CAP Land Cover 1996</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ccap_ma_96_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>CCAP_MA_96_RD</Keyword> <Keyword>MORIS.CCAP_MA_96_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=29.99968103</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NOAA</Keyword> <Keyword>C-CAP</Keyword> <Keyword>Land</Keyword> <Keyword>Cover</Keyword> <Keyword>1996 </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_ccap_ma_96_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.108" miny="40.566" maxx="-69.303" maxy="43.544"/> <BoundingBox SRS="EPSG:26986" minx="-10868.704" miny="704882.523" maxx="377627.165" maxy="1032599.039"/> <Style> <Name>MORIS.CCAP_MA_96_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CCAP_MA_96_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_BACKSCATTER_RD</Name> <Title>NE Cape Cod 4m Backscatter Intensity Mosaic</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_backscatter_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.CC_BACKSCATTER_RD</Keyword> <Keyword>MORIS.CC_BACKSCATTER_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NE</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>4m</Keyword> <Keyword>Backscatter</Keyword> <Keyword>Intensity</Keyword> <Keyword>Mosaic</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.9999932</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_cc_backscatter_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.525" miny="41.587" maxx="-69.606" maxy="42.15"/> <BoundingBox SRS="EPSG:26986" minx="281258.291" miny="816879.849" maxx="356574.162" maxy="878167.744"/> <Style> <Name>MORIS.CC_BACKSCATTER_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_BACKSCATTER_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_PSEUDOCOLOR_BACKSCATTER_RD</Name> <Title>NE Cape Cod 4m Pseudocolor Sidescan Sonar Intensity Mosaic</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_pseudo_backscatter_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>CC_PSEUDOCOLOR_BACKSCATTER_RD</Keyword> <Keyword>MORIS.CC_PSEUDOCOLOR_BACKSCATTER_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=2.5997437</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NE</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>4m</Keyword> <Keyword>Pseudocolor</Keyword> <Keyword>Sidescan</Keyword> <Keyword>Sonar</Keyword> <Keyword>Intensity</Keyword> <Keyword>Mosaic </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_cc_pseudocolor_backscatter_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.404" miny="41.584" maxx="-69.727" maxy="42.15"/> <BoundingBox SRS="EPSG:26986" minx="291341.376" miny="816390.732" maxx="346583.331" maxy="878301.029"/> <Style> <Name>MORIS.CC_PSEUDOCOLOR_BACKSCATTER_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_PSEUDOCOLOR_BACKSCATTER_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_SED_DIST_POLY</Name> <Title>NE Cape Cod Surficial Sediment Distribution</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Cape</Keyword> <Keyword>MORIS.CC_SED_DIST_POLY</Keyword> <Keyword>Distribution</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_seddist_poly.htm</Keyword> <Keyword>Sediment</Keyword> <Keyword>Surficial</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>NE</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.322" miny="41.612" maxx="-69.813" maxy="42.12"/> <BoundingBox SRS="EPSG:26986" minx="299162.877" miny="819839.805" maxx="338586.176" maxy="874583.202"/> <Style> <Name>MORIS.CC_SED_DIST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_SED_DIST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_SED_ENVIRON_POLY</Name> <Title>NE Cape Cod Sedimentary Environments</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Cape</Keyword> <Keyword>MORIS.CC_SED_ENVIRON_POLY</Keyword> <Keyword>Environments</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_environ_poly.htm</Keyword> <Keyword>Sedimentary</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>NE</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.31" miny="41.617" maxx="-69.824" maxy="42.115"/> <BoundingBox SRS="EPSG:26986" minx="299162.877" miny="819839.919" maxx="338586.127" maxy="874583.202"/> <Style> <Name>MORIS.CC_SED_ENVIRON_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_SED_ENVIRON_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_SUN_ILLUM_BATHY_RD</Name> <Title>NE Cape Cod 4m Sun Illuminated Topographic Imagery</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_sun_illum_bathy_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.CC_SUN_ILLUM_BATHY_RD</Keyword> <Keyword>MORIS.CC_SUN_ILLUM_BATHY_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NE</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>4m</Keyword> <Keyword>Sun</Keyword> <Keyword>Illuminated</Keyword> <Keyword>Topographic</Keyword> <Keyword>Imagery</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.4645005</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_cc_sun_illum_bathy_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.317" miny="41.611" maxx="-69.815" maxy="42.123"/> <BoundingBox SRS="EPSG:26986" minx="298588.469" miny="819187.781" maxx="339320.602" maxy="875378.515"/> <Style> <Name>MORIS.CC_SUN_ILLUM_BATHY_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_SUN_ILLUM_BATHY_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_SURFICIAL_SED_PT</Name> <Title>NE Cape Cod Sediment Data</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Data</Keyword> <Keyword>Cape</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_rafa04011_seddata_pt.htm</Keyword> <Keyword>Sediment</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.CC_SURFICIAL_SED_PT</Keyword> <Keyword>NE</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.136" miny="41.623" maxx="-69.837" maxy="42.089"/> <BoundingBox SRS="EPSG:26986" minx="313698.135" miny="820578.725" maxx="337618.525" maxy="871887.242"/> <Style> <Name>MORIS.CC_SURFICIAL_SED_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_SURFICIAL_SED_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CC_WELLSITE_PT</Name> <Title>Bedrock Data from Western Cape Cod</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Western</Keyword> <Keyword>Data</Keyword> <Keyword>MORIS.CC_WELLSITE_PT</Keyword> <Keyword>Cape</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_cc_wellsite_pt.htm</Keyword> <Keyword>from</Keyword> <Keyword>Bedrock</Keyword> <Keyword>Cod</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.616" miny="41.611" maxx="-70.502" maxy="41.668"/> <BoundingBox SRS="EPSG:26986" minx="273667.536" miny="818320.489" maxx="283148.423" maxy="824620.59"/> <Style> <Name>MORIS.CC_WELLSITE_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CC_WELLSITE_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CHAPTER91_PT_S_V</Name> <Title>Chapter 91 Points Massachusetts Public Waterfront Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Chapter</Keyword> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MORIS.CHAPTER91_PT_S_V</Keyword> <Keyword>91</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_chapter91_pt_s_v.htm</Keyword> <Keyword>Waterfront</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Public</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.15954075042734" miny="41.384198983758424" maxx="-70.03987537840916" maxy="42.8189035018319"/> <BoundingBox SRS="EPSG:26986" minx="228475.64459999552" miny="793672.8285999823" maxx="319422.42350000155" maxy="952090.374199988"/> <Style> <Name>MORIS.CHAPTER91_PT_S_V::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CHAPTER91_PT_S_V"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.COASTGUIDE_GPS_PT</Name> <Title>Coastguide Site Photos</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.COASTGUIDE_GPS_PT</Keyword> <Keyword>Photos</Keyword> <Keyword>Site</Keyword> <Keyword>Coastguide</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_coastguide_gps_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.33983406670099" miny="41.21211347441621" maxx="-69.86075026677717" maxy="42.69119727434003"/> <BoundingBox SRS="EPSG:26986" minx="217889.63293114182" miny="777932.0874761305" maxx="330043.3085555978" maxy="934678.2459581201"/> <Style> <Name>MORIS.COASTGUIDE_GPS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.COASTGUIDE_GPS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.COASTGUIDE_TRAIL_MARKER_PT</Name> <Title>Coastal Trail Markers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Coastal</Keyword> <Keyword>MORIS.COASTGUIDE_TRAIL_MARKER_PT</Keyword> <Keyword>Trail</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Markers</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_coastguide_trail_marker_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.16183896267938" miny="41.26112097001855" maxx="-69.93486706617064" maxy="42.81690171890158"/> <BoundingBox SRS="EPSG:26986" minx="228337.03685627854" miny="780149.5087549564" maxx="328016.9241531952" maxy="951867.426461137"/> <Style> <Name>MORIS.COASTGUIDE_TRAIL_MARKER_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.COASTGUIDE_TRAIL_MARKER_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CODIUM_FRAGILE_2008_PT</Name> <Title>Codium fragile 2008 Points (Green Fleece)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Codium</Keyword> <Keyword>fragile</Keyword> <Keyword>Green</Keyword> <Keyword>Fleece</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_codium_fragile_2008_pt.htm</Keyword> <Keyword>MORIS.CODIUM_FRAGILE_2008_PT</Keyword> <Keyword>fragile</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.441" miny="41.462" maxx="-69.535" maxy="43.367"/> <BoundingBox SRS="EPSG:26986" minx="238407.396" miny="804493.755" maxx="326864.151" maxy="1010977.176"/> <Style> <Name>MORIS.CODIUM_FRAGILE_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CODIUM_FRAGILE_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CODIUM_FRAGILE_2009_PT</Name> <Title>Codium fragile 2009 Points (Green Fleece)</Title> <Abstract/> <KeywordList> <Keyword>Codium fragile</Keyword> <Keyword>Green Fleece</Keyword> <Keyword>http://maps.massgis.state.ma.us/czm/moris/metadata/moris_codium_fragile_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.381" maxx="-70.247" maxy="42.529"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="302923.277" maxy="919875.966"/> <Style> <Name>MORIS.CODIUM_FRAGILE_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CODIUM_FRAGILE_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CODIUM_FRAGILE_2010_PT</Name> <Title>Codium fragile 2010 Points (Green Fleece)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_codium_fragile_2010_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.378" maxx="-69.953" maxy="42.523"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="327085.24" maxy="919155.719"/> <Style> <Name>MORIS.CODIUM_FRAGILE_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CODIUM_FRAGILE_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CODIUM_FRAGILE_2011_PT</Name> <Title>Codium fragile (Green Fleece) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_codium_fragile_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_codium_fragile_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.161" maxy="43.134"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="986991.523"/> <Style> <Name>MORIS.CODIUM_FRAGILE_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CODIUM_FRAGILE_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CONMAPSG_POLY</Name> <Title>Sediment Grainsize Distribution for the Continental Margin</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_conmapsg_poly.htm</Keyword> <Keyword>MORIS.CONMAPSG_POLY</Keyword> <Keyword>for</Keyword> <Keyword>Distribution</Keyword> <Keyword>Grainsize</Keyword> <Keyword>Sediment</Keyword> <Keyword>the</Keyword> <Keyword>Continental</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Margin</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-85.642" miny="23.84" maxx="-63.634" maxy="45.295"/> <BoundingBox SRS="EPSG:26986" minx="-921175.346" miny="-1116978.102" maxx="819690.515" maxy="1227344.017"/> <Style> <Name>MORIS.CONMAPSG_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CONMAPSG_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.CSB_ARC</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Continental Shelf Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>Shelf</Keyword> <Keyword>Continental</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>MORIS.CSB_ARC</Keyword> <Keyword>Cadastre</Keyword> <Keyword>Boundaries</Keyword> <Keyword>Offshore</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_csb_arc.htm</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_csb_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-87.851" miny="23.575" maxx="-63.577" maxy="44.861"/> <BoundingBox SRS="EPSG:26986" minx="-1109726.276" miny="-1122760.34" maxx="828610.375" maxy="1179447.175"/> <Style> <Name>MORIS.CSB_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.CSB_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DESALINIZATION_PLANTS_POLY</Name> <Title>Desalinization Plants 2006</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.DESALINIZATION_PLANTS_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_desalinization_plants_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.28388726754629" miny="41.763317835226374" maxx="-70.85608526493147" maxy="42.282215360185106"/> <BoundingBox SRS="EPSG:26986" minx="217970.71899999547" miny="834980.120399981" maxx="253111.45740000362" maxy="892438.5321999884"/> <Style> <Name>MORIS.DESALINIZATION_PLANTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DESALINIZATION_PLANTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIADUMENE_LINEATA_2008_PT</Name> <Title>Diadumene Lineata 2008 Points (Orange Striped Anemone)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>Orange</Keyword> <Keyword>Striped</Keyword> <Keyword>Anemone</Keyword> <Keyword>MORIS.DIADUMENE_LINEATA_2008_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diadumene_lineata_2008_pt.htm</Keyword> <Keyword>Striped</Keyword> <Keyword>Anemone)</Keyword> <Keyword>Diadumene</Keyword> <Keyword>lineata</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>(Orange</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.172" miny="41.637" maxx="-70.482" maxy="43.06"/> <BoundingBox SRS="EPSG:26986" minx="227327.243" miny="821229.589" maxx="282953.425" maxy="978914.177"/> <Style> <Name>MORIS.DIADUMENE_LINEATA_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIADUMENE_LINEATA_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIADUMENE_LINEATA_2009_PT</Name> <Title>Diadumene Lineata 2009 Points (Orange Striped Anemone)</Title> <Abstract/> <KeywordList> <Keyword>Diadumene Lineata</Keyword> <Keyword>Orange Striped Anemone</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diadumene_lineata_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.383" maxx="-70.488" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="282953.425" maxy="934128.244"/> <Style> <Name>MORIS.DIADUMENE_LINEATA_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIADUMENE_LINEATA_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIADUMENE_LINEATA_2010_PT</Name> <Title>MODiadumene Lineata 2010 Points (Orange Striped Anemone)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diadumene_lineata_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_diadumene_lineata_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.385" maxx="-70.702" maxy="42.575"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="265525.739" maxy="924979.494"/> <Style> <Name>MORIS.DIADUMENE_LINEATA_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIADUMENE_LINEATA_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIADUMENE_LINEATA_2011_PT</Name> <Title>Diadumene lineata (Orange Striped Anemone) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diadumene_lineata_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_diadumene_lineata_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.378" maxx="-70.012" maxy="42.574"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="322149.656" maxy="924782.663"/> <Style> <Name>MORIS.DIDEMNUM_VEXILLUM_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIADUMENE_LINEATA_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIDEMNUM_VEXILLUM_2008_PT</Name> <Title>Didemnum vexillum 2008 Points (Colonial Tunicate)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Didemnum</Keyword> <Keyword>vexillum</Keyword> <Keyword>2008</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_didemnum_vexillum_2008_pt.htm</Keyword> <Keyword>Colonial</Keyword> <Keyword>Tunicate)</Keyword> <Keyword>Points</Keyword> <Keyword>MORIS.DIDEMNUM_VEXILLUM_2008_PT</Keyword> <Keyword>(Colonial</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.894" miny="41.736" maxx="-69.956" maxy="42.54"/> <BoundingBox SRS="EPSG:26986" minx="250411.828" miny="832839.249" maxx="326864.151" maxy="921263.543"/> <Style> <Name>MORIS.DIDEMNUM_VEXILLUM_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIDEMNUM_VEXILLUM_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIDEMNUM_VEXILLUM_2009_PT</Name> <Title>Didemnum vexillum 2009 Points (Colonial Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>Didemnum vexillum</Keyword> <Keyword>Colonial Tunicate</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_didemnum_vexillum_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.378" maxx="-69.955" maxy="42.579"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="326864.151" maxy="925405.31"/> <Style> <Name>MORIS.DIDEMNUM_VEXILLUM_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIDEMNUM_VEXILLUM_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIDEMNUM_VEXILLUM_2010_PT</Name> <Title>Didemnum vexillum 2010 Points (Colonial Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_didemnum_vexillum_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_didemnum_vexillum_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.929" maxy="42.548"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="921959.783"/> <Style> <Name>MORIS.DIDEMNUM_VEXILLUM_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIDEMNUM_VEXILLUM_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIDEMNUM_VEXILLUM_2011_PT</Name> <Title>Didemnum vexillum (Colonial Tunicate) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_didemnum_vexillum_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_didemnum_vexillum_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.928" maxy="42.582"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="925687.278"/> <Style> <Name>MORIS.DIDEMNUM_VEXILLUM_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIDEMNUM_VEXILLUM_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIFFUSERS_PT</Name> <Title>Diffusers</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.DIFFUSERS_PT</Keyword> <Keyword>Diffusers</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diffusers_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.804" miny="42.384" maxx="-70.78" maxy="42.389"/> <BoundingBox SRS="EPSG:26986" minx="257330.62" miny="903990.069" maxx="259278.505" maxy="904510.973"/> <Style> <Name>MORIS.DIFFUSERS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIFFUSERS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIPLOSOMA_LISTERIANUM_2008_PT</Name> <Title>Diplosoma listerianum 2008 Points (Colonial Tunicate)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diplosoma_listerianum_2008_pt.htm</Keyword> <Keyword>MORIS.DIPLOSOMA_LISTERIANUM_2008_PT</Keyword> <Keyword>Diplosoma</Keyword> <Keyword>listerianum</Keyword> <Keyword>Colonial</Keyword> <Keyword>Tunicate</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>(Orange</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.053" miny="41.744" maxx="-70.49" maxy="42.574"/> <BoundingBox SRS="EPSG:26986" minx="237162.803" miny="833091.015" maxx="282953.425" maxy="924979.494"/> <Style> <Name>MORIS.DIPLOSOMA_LISTERIANUM_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIPLOSOMA_LISTERIANUM_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIPLOSOMA_LISTERIANUM_2009_PT</Name> <Title>Diplosoma listerianum 2009 Points (Colonial Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>Diplosoma listerianum</Keyword> <Keyword>Colonial Tunicate</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diplosoma_listerianum_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.386" maxx="-70.866" maxy="42.529"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="252065.076" maxy="919875.966"/> <Style> <Name>MORIS.DIPLOSOMA_LISTERIANUM_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIPLOSOMA_LISTERIANUM_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIPLOSOMA_LISTERIANUM_2010_PT</Name> <Title>Diplosoma listerianum 2010 Points (Colonial Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_diplosoma_listerianum_2010_pt.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diplosoma_listerianum_2010_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.149" maxy="43.657"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="1045185.425"/> <Style> <Name>MORIS.DIPLOSOMA_LISTERIANUM_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIPLOSOMA_LISTERIANUM_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIPLOSOMA_LISTERIANUM_2011_PT</Name> <Title>Diplosoma listerianum (Colonial Tunicate) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_diplosoma_listerianum_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_diplosoma_listerianum_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.171" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="934128.244"/> <Style> <Name>MORIS.DIPLOSOMA_LISTERIANUM_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIPLOSOMA_LISTERIANUM_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DIVE_SITES_PT</Name> <Title>Dive Sites 2007</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.DIVE_SITES_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dive_sites_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.183" miny="40.062" maxx="-66.548" maxy="42.696"/> <BoundingBox SRS="EPSG:26986" minx="226978.692" miny="657135.911" maxx="606270.03" maxy="938437.616"/> <Style> <Name>MORIS.DIVE_SITES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIVE_SITES_PT"/> </LegendURL> </Style> <Style> <Name>MORIS.DIVE_SITES_PT::Black_Symbols</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DIVE_SITES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_BEVERLY_HARBOR_ARC</Name> <Title>Beverly Harbor Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_beverly_harbor_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_beverly_harbor_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.886" miny="42.538" maxx="-70.87" maxy="42.543"/> <BoundingBox SRS="EPSG:26986" minx="250441.481" miny="921051.631" maxx="251716.933" maxy="921569.328"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_BEVERLY_HARBOR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_CHELSEA_CREEK_ARC</Name> <Title>Chelsea Creek Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_chelsea_creek_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_chelsea_creek_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.039" miny="42.38" maxx="-71.004" maxy="42.404"/> <BoundingBox SRS="EPSG:26986" minx="237925.638" miny="903379.065" maxx="240815.692" maxy="905997.981"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_CHELSEA_CREEK_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_EAST_BOSTON_ARC</Name> <Title>East Boston Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_east_boston_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_east_boston_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.046" miny="42.352" maxx="-71.025" maxy="42.385"/> <BoundingBox SRS="EPSG:26986" minx="237380.183" miny="900327.469" maxx="239116.129" maxy="903979.069"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_EAST_BOSTON_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_GLOUC_INNER_HARBOR_ARC</Name> <Title>Gloucester Inner Harbor Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_glouc_inner_harbor_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_glouc_inner_harbor_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.667" miny="42.605" maxx="-70.648" maxy="42.618"/> <BoundingBox SRS="EPSG:26986" minx="268394.111" miny="928614.545" maxx="269927.975" maxy="930009.061"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_GLOUC_INNER_HARBOR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_LYNN_ARC</Name> <Title>Lynn Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_lynn_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_lynn_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.958" miny="42.45" maxx="-70.947" maxy="42.456"/> <BoundingBox SRS="EPSG:26986" minx="244580.953" miny="911152.518" maxx="245467.569" maxy="911888.688"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_LYNN_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_MOUNT_HOPE_BAY_ARC</Name> <Title>Mount Hope Bay Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_mount_hope_bay_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_mount_hope_bay_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.203" miny="41.682" maxx="-71.136" maxy="41.741"/> <BoundingBox SRS="EPSG:26986" minx="224724.048" miny="825769.331" maxx="230264.384" maxy="832376.291"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_MOUNT_HOPE_BAY_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_MYSTIC_RIVER_ARC</Name> <Title>Mystic River Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_mystic_river_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_mystic_river_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.071" miny="42.372" maxx="-71.039" maxy="42.397"/> <BoundingBox SRS="EPSG:26986" minx="235306.124" miny="902450.709" maxx="237925.638" maxy="905243.364"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_MYSTIC_RIVER_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_NEW_BEDFORD_FAIRHAVEN_ARC</Name> <Title>New Bedford-Fairhaven Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_new_bedford_fairhaven_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_new_bedford_fairhaven_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.924" miny="41.618" maxx="-70.905" maxy="41.649"/> <BoundingBox SRS="EPSG:26986" minx="247964.131" miny="818853.122" maxx="249539.84" maxy="822268.941"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_NEW_BEDFORD_FAIRHAVEN_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_SALEM_HARBOR_ARC</Name> <Title>Salem Harbor Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_salem_harbor_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_salem_harbor_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.883" miny="42.521" maxx="-70.866" maxy="42.528"/> <BoundingBox SRS="EPSG:26986" minx="250690.751" miny="919079.013" maxx="252115.978" maxy="919908.349"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_SALEM_HARBOR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_SOUTH_BOSTON_ARC</Name> <Title>South Boston Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_south_boston_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_south_boston_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.05" miny="42.337" maxx="-71.005" maxy="42.372"/> <BoundingBox SRS="EPSG:26986" minx="237085.235" miny="898589.942" maxx="240799.324" maxy="902450.709"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_SOUTH_BOSTON_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DPA_WEYMOUTH_FORE_RIVER_ARC</Name> <Title>Weymouth Fore River Designated Port Area (DPA) Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dpa_weymouth_fore_river_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_dpa_weymouth_fore_river_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.996" miny="42.237" maxx="-70.937" maxy="42.263"/> <BoundingBox SRS="EPSG:26986" minx="241567.219" miny="887538.031" maxx="246424.192" maxy="890360.275"/> <Style> <Name>DPA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DPA_WEYMOUTH_FORE_RIVER_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DREDGE_USACE_POLY</Name> <Title>Dredge Projects (USACE), Historical - 1998</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Projects</Keyword> <Keyword>1998</Keyword> <Keyword>(USACE)</Keyword> <Keyword>Dredge</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dredge_usace_poly.htm</Keyword> <Keyword>Historical</Keyword> <Keyword>MORIS.DREDGE_USACE_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.24007370778396" miny="41.28852458719137" maxx="-69.86773039846048" maxy="42.84322519017805"/> <BoundingBox SRS="EPSG:26986" minx="221771.5371000005" miny="783293.2004999835" maxx="333454.0297999992" maxy="954768.1922999874"/> <Style> <Name>MORIS.DREDGE_USACE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DREDGE_USACE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.DREDGE_USACE_PT</Name> <Title>Dredge Projects (USACE), Historical - 1998 (points)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Projects</Keyword> <Keyword>1998</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_dredge_usace_pt.htm</Keyword> <Keyword>(USACE)</Keyword> <Keyword>Dredge</Keyword> <Keyword>Historical</Keyword> <Keyword>(points)</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.DREDGE_USACE_PT</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.16519267688514" miny="41.29630669038388" maxx="-69.91788179550568" maxy="42.82506359924447"/> <BoundingBox SRS="EPSG:26986" minx="228040.5614999967" miny="784082.9333999831" maxx="329389.7193000037" maxy="952772.9538999887"/> <Style> <Name>MORIS.DREDGE_USACE_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.DREDGE_USACE_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_BIRDS_POLY</Name> <Title>Environmental Sensitivity Index - Birds</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_birds_poly.htm</Keyword> <Keyword>Birds</Keyword> <Keyword>MORIS.ESI_BIRDS_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.218" miny="41.238" maxx="-69.894" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="223623.152" miny="777622.572" maxx="331250.119" maxy="958141.962"/> <Style> <Name>MORIS.ESI_BIRDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_BIRDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_FISH_POLY</Name> <Title>Environmental Sensitivity Index - Fish</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>MORIS.ESI_FISH_POLY</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_fish_poly.htm</Keyword> <Keyword>Fish</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.252" miny="41.272" maxx="-69.924" maxy="42.86"/> <BoundingBox SRS="EPSG:26986" minx="220803.839" miny="781348.372" maxx="328782.104" maxy="956584.222"/> <Style> <Name>MORIS.ESI_FISH_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_FISH_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_INVERT_POLY</Name> <Title>Environmental Sensitivity Index - Invertebrates</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_invert_poly.htm</Keyword> <Keyword>Environmental</Keyword> <Keyword>Invertebrates</Keyword> <Keyword>MORIS.ESI_INVERT_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.252" miny="41.211" maxx="-69.884" maxy="42.86"/> <BoundingBox SRS="EPSG:26986" minx="220803.839" miny="774674.151" maxx="332112.178" maxy="956584.222"/> <Style> <Name>MORIS.ESI_INVERT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_INVERT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_MAMMAL_POLY</Name> <Title>Environmental Sensitivity Index - Mammals</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_mammal_poly.htm</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>MORIS.ESI_MAMMAL_POLY</Keyword> <Keyword>Index</Keyword> <Keyword>Mammals</Keyword> <Keyword>Environmental</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.964" miny="41.24" maxx="-69.902" maxy="42.773"/> <BoundingBox SRS="EPSG:26986" minx="244944.867" miny="777815.68" maxx="330797.151" maxy="947022.757"/> <Style> <Name>MORIS.ESI_MAMMAL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_MAMMAL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_MAP_INDEX_POLY</Name> <Title>Environmental Sensitivity Analysis - Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>Analysis</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_map_index_poly.htm</Keyword> <Keyword>MORIS.ESI_MAP_INDEX_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.38289342913424" miny="41.18015835063603" maxx="-69.7841366046113" maxy="42.89016222180721"/> <BoundingBox SRS="EPSG:26986" minx="209825.22339999583" miny="771383.554699978" maxx="340186.0749000028" maxy="959955.5400999895"/> <Style> <Name>MORIS.ESI_MAP_INDEX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_MAP_INDEX_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_NESTS_PT</Name> <Title>Environmental Sensitivity Index - Bird Nesting</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Bird</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>MORIS.ESI_NESTS_PT</Keyword> <Keyword>Nesting</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_nests_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.059" miny="41.247" maxx="-69.917" maxy="42.804"/> <BoundingBox SRS="EPSG:26986" minx="236923.592" miny="778568.65" maxx="329484.574" maxy="950476.545"/> <Style> <Name>MORIS.ESI_NESTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_NESTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_REPTILES_POLY</Name> <Title>Environmental Sensitivity Index - Reptiles</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Reptiles</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_reptiles_poly.htm</Keyword> <Keyword>MORIS.ESI_REPTILES_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.025" miny="41.498" maxx="-69.937" maxy="41.96"/> <BoundingBox SRS="EPSG:26986" minx="239696.255" miny="806485.695" maxx="329568.534" maxy="856713.84"/> <Style> <Name>MORIS.ESI_REPTILES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_REPTILES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_SHORECLASSP_POLY</Name> <Title>Environmental Sensitivity Index - Shoreline Classification Polygons</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>Classification</Keyword> <Keyword>Environmental</Keyword> <Keyword>MORIS.ESI_SHORECLASSP_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_shoreclassp_poly.htm</Keyword> <Keyword>Shoreline</Keyword> <Keyword>Polygons</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.227" miny="41.273" maxx="-69.899" maxy="42.87"/> <BoundingBox SRS="EPSG:26986" minx="222907.83" miny="781502.505" maxx="330827.462" maxy="957742.092"/> <Style> <Name>MORIS.ESI_SHORECLASSP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_SHORECLASSP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.ESI_SHORECLASS_ARC</Name> <Title>Environmental Sensitivity Index - Shoreline Classification Lines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/pdfs/esi_mass_metadata.pdf</Keyword> <Keyword>Sensitivity</Keyword> <Keyword>Index</Keyword> <Keyword>Lines</Keyword> <Keyword>Classification</Keyword> <Keyword>MORIS.ESI_SHORECLASS_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_esi_shoreclass_arc.htm</Keyword> <Keyword>Environmental</Keyword> <Keyword>Shoreline</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.229" miny="41.237" maxx="-69.899" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="222690.122" miny="777542.857" maxx="330838.704" maxy="958160.982"/> <Style> <Name>MORIS.ESI_SHORECLASS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.ESI_SHORECLASS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_401_WQCD_POLY</Name> <Title>401 Water Quality Certification For Dredging</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Quality</Keyword> <Keyword>MORIS.GEOREG_401_WQCD_POLY</Keyword> <Keyword>401</Keyword> <Keyword>Dredging</Keyword> <Keyword>For</Keyword> <Keyword>Certification</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/401_wqcd.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220540108" miny="41.186918180299905" maxx="-69.829775701459" maxy="42.88832362081667"/> <BoundingBox SRS="EPSG:26986" minx="206555.12477393585" miny="772062.5000567678" maxx="336460.4688832846" maxy="959747.4374432022"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_401_WQCD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_ACEC_POLY</Name> <Title>Areas of Critical Environmental Concern in the Coastal Area</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>MORIS.GEOREG_ACEC_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/acec.htm</Keyword> <Keyword>Environmental</Keyword> <Keyword>Areas</Keyword> <Keyword>Critical</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Concern</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.51" miny="41.533" maxx="-69.896" maxy="42.809"/> <BoundingBox SRS="EPSG:26986" minx="35531.537" miny="811151.565" maxx="331178.347" maxy="950919.375"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ACEC_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_ACEC_POLY::Purple_Forward_Slash</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ACEC_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_ACEC_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ACEC_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_ACOE_PERMITS_POLY</Name> <Title>Army Corp of Engineers Permits</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Engineers</Keyword> <Keyword>Army</Keyword> <Keyword>Corp</Keyword> <Keyword>MORIS.GEOREG_ACOE_PERMITS_POLY</Keyword> <Keyword>Permits</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/acoe_permits.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833410423" miny="40.592434902443344" maxx="-65.74249362301714" maxy="43.07670919700246"/> <BoundingBox SRS="EPSG:26986" minx="206526.23711212265" miny="720012.1929327542" maxx="669639.7310366505" maxy="980676.8419380374"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ACOE_PERMITS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_BARB_POLY</Name> <Title>Barrier Beaches Executive Order 181</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Executive</Keyword> <Keyword>181</Keyword> <Keyword>Beaches</Keyword> <Keyword>Order</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/barb.htm</Keyword> <Keyword>MORIS.GEOREG_BARB_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Barrier</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.22559460903145" miny="41.237786162329506" maxx="-69.89893207938539" maxy="42.87373015628373"/> <BoundingBox SRS="EPSG:26986" minx="223002.60942146456" miny="777608.3750020833" maxx="330838.6874586573" maxy="958161.0624978873"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_BARB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_BUILD_POLY</Name> <Title>Massachusetts State Building Code</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>State</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/build.htm</Keyword> <Keyword>Building</Keyword> <Keyword>MORIS.GEOREG_BUILD_POLY</Keyword> <Keyword>Code</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220540108" miny="41.186918180299905" maxx="-69.829775701459" maxy="42.88832362081667"/> <BoundingBox SRS="EPSG:26986" minx="206555.12477393585" miny="772062.5000567678" maxx="336460.4688832846" maxy="959747.4374432022"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_BUILD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CAA_POLY</Name> <Title>Clean Air Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Clean</Keyword> <Keyword>Air</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/caa.htm</Keyword> <Keyword>MORIS.GEOREG_CAA_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833410423" miny="40.592434902443344" maxx="-65.74249362301714" maxy="43.07670919700246"/> <BoundingBox SRS="EPSG:26986" minx="206526.23711212265" miny="720012.1929327542" maxx="669639.7310366505" maxy="980676.8419380374"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CAA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CBRA_POLY</Name> <Title>Coastal Barrier Resources Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Coastal</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/cbra.htm</Keyword> <Keyword>MORIS.GEOREG_CBRA_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Resources</Keyword> <Keyword>Barrier</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.251" miny="41.237" maxx="-69.894" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="220839.38" miny="777558.81" maxx="331215.84" maxy="958500.13"/> <Style> <Name>MORIS.GEOREG_CBRA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CBRA_POLY"/> </LegendURL> </Style> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CBRA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CSGP_POLY</Name> <Title>Construction Stormwater General Permit</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>General</Keyword> <Keyword>Permit</Keyword> <Keyword>Construction</Keyword> <Keyword>MORIS.GEOREG_CSGP_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/csgp.htm</Keyword> <Keyword>Stormwater</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833410423" miny="40.592434902443344" maxx="-65.74249362301714" maxy="43.07670919700246"/> <BoundingBox SRS="EPSG:26986" minx="206526.23711212265" miny="720012.1929327542" maxx="669639.7310366505" maxy="980676.8419380374"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CSGP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CWA_404_POLY</Name> <Title>Clean Water Act 404</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>404</Keyword> <Keyword>Clean</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.GEOREG_CWA_404_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/cwa_404.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42221049999995" miny="41.18691820769425" maxx="-69.82671406099459" maxy="43.00311409460497"/> <BoundingBox SRS="EPSG:26986" minx="206525.90567394663" miny="772062.5030165049" maxx="336460.4645031658" maxy="972500.3108145185"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CWA_404_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CWA_POLY</Name> <Title>Clean Water Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/cwa.htm</Keyword> <Keyword>Act</Keyword> <Keyword>MORIS.GEOREG_CWA_POLY</Keyword> <Keyword>Clean</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833410423" miny="40.592434902443344" maxx="-65.74249362301714" maxy="43.07670919700246"/> <BoundingBox SRS="EPSG:26986" minx="206526.23711212265" miny="720012.1929327542" maxx="669639.7310366505" maxy="980676.8419380374"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CWA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CZMA_POLY</Name> <Title>Coastal Zone Management Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_CZMA_POLY</Keyword> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>Coastal</Keyword> <Keyword>Zone</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/czma.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.343" miny="41.187" maxx="-69.83" maxy="42.879"/> <BoundingBox SRS="EPSG:26986" minx="213189.343" miny="772062.504" maxx="336460.464" maxy="958709.877"/> <Style> <Name>MORIS.GEOREG_CZMA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CZMA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_CZ_307_POLY</Name> <Title>Coastal Zone Management Act: Federal Consistency</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_CZ_307_POLY</Keyword> <Keyword>Management</Keyword> <Keyword>Coastal</Keyword> <Keyword>Act:</Keyword> <Keyword>Federal</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/cz_307.htm</Keyword> <Keyword>Consistency</Keyword> <Keyword>Zone</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278173768766" miny="41.186918217042475" maxx="-69.83002436668615" maxy="42.87889957922364"/> <BoundingBox SRS="EPSG:26986" minx="213189.3433867165" miny="772062.5040425189" maxx="336460.4638483076" maxy="958709.876500011"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_CZ_307_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_ESA_POLY</Name> <Title>Endangered Species Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/esa.htm</Keyword> <Keyword>Act</Keyword> <Keyword>MORIS.GEOREG_ESA_POLY</Keyword> <Keyword>Species</Keyword> <Keyword>Endangered</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833714716" miny="40.59243490658438" maxx="-65.74249362035737" maxy="43.076709191686035"/> <BoundingBox SRS="EPSG:26986" minx="206526.23685455555" miny="720012.1934105182" maxx="669639.7312942145" maxy="980676.841347125"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ESA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_FCR_POLY</Name> <Title>Federal Consistency Review</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/fcr.htm</Keyword> <Keyword>Review</Keyword> <Keyword>Federal</Keyword> <Keyword>Consistency</Keyword> <Keyword>MORIS.GEOREG_FCR_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278173768766" miny="41.186918217042475" maxx="-69.83002436668615" maxy="42.87889957922364"/> <BoundingBox SRS="EPSG:26986" minx="213189.3433867165" miny="772062.5040425189" maxx="336460.4638483076" maxy="958709.876500011"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_FCR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_FISH_POLY</Name> <Title>State Fisheries Regulations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/fish.htm</Keyword> <Keyword>State</Keyword> <Keyword>MORIS.GEOREG_FISH_POLY</Keyword> <Keyword>Fisheries</Keyword> <Keyword>Regulations</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278174024428" miny="41.18691821730481" maxx="-69.83002436426827" maxy="42.878899578930934"/> <BoundingBox SRS="EPSG:26986" minx="213189.34317217465" miny="772062.504075442" maxx="336460.4640465778" maxy="958709.876467085"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_FISH_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_FLOOD_POLY</Name> <Title>Flood Plains (Executive Order No. 149: FEMA and Flood Plain Use)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Plains</Keyword> <Keyword>149:</Keyword> <Keyword>Order</Keyword> <Keyword>FEMA</Keyword> <Keyword>Use)</Keyword> <Keyword>and</Keyword> <Keyword>Plain</Keyword> <Keyword>MORIS.GEOREG_FLOOD_POLY</Keyword> <Keyword>No.</Keyword> <Keyword>(Executive</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Flood</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/flood.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42180262479705" miny="41.23693820915302" maxx="-69.89847702474071" maxy="42.888323621306704"/> <BoundingBox SRS="EPSG:26986" minx="206555.12500986035" miny="777514.312502103" maxx="330846.0937281958" maxy="959747.4374978659"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_FLOOD_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_HDA_POLY</Name> <Title>Historic District Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/hda.htm</Keyword> <Keyword>Act</Keyword> <Keyword>District</Keyword> <Keyword>Historic</Keyword> <Keyword>MORIS.GEOREG_HDA_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.422" miny="41.237" maxx="-69.921" maxy="42.862"/> <BoundingBox SRS="EPSG:26986" minx="206576.758" miny="777514.31" maxx="329095.5" maxy="956799.5"/> <Style> <Name>MORIS.GEOREG_HDA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_HDA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_HMR_POLY</Name> <Title>Hazardous Materials Guide</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Materials</Keyword> <Keyword>MORIS.GEOREG_HMR_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/hmr.htm</Keyword> <Keyword>Guide</Keyword> <Keyword>Hazardous</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220540108" miny="41.186918180299905" maxx="-69.829775701459" maxy="42.88832362081667"/> <BoundingBox SRS="EPSG:26986" minx="206555.12477393585" miny="772062.5000567678" maxx="336460.4688832846" maxy="959747.4374432022"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_HMR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_ITA_POLY</Name> <Title>Interbasin Transfer Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_ITA_POLY</Keyword> <Keyword>Act</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/ita.htm</Keyword> <Keyword>Transfer</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Interbasin</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42180262326578" miny="41.23693821017199" maxx="-69.89847702614225" maxy="42.88832362030523"/> <BoundingBox SRS="EPSG:26986" minx="206555.1251381206" miny="777514.3126132431" maxx="330846.0936157503" maxy="959747.4373867272"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_ITA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MCAA_POLY</Name> <Title>Massachusetts Clean Air Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MORIS.GEOREG_MCAA_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mcaa.htm</Keyword> <Keyword>Clean</Keyword> <Keyword>Air</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833410423" miny="40.592434902443344" maxx="-65.74249362301714" maxy="43.07670919700246"/> <BoundingBox SRS="EPSG:26986" minx="206526.23711212265" miny="720012.1929327542" maxx="669639.7310366505" maxy="980676.8419380374"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MCAA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MCWA_POLY</Name> <Title>Massachusetts Clean Water Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Clean</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mcwa.htm</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.GEOREG_MCWA_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220362997" miny="41.18691817983291" maxx="-69.82977570319393" maxy="42.8883236213069"/> <BoundingBox SRS="EPSG:26986" minx="206555.12492256716" miny="772062.5000021651" maxx="336460.46874042973" maxy="959747.4374978065"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MCWA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MCWR_POLY</Name> <Title>Coastal Wetlands Restrictions</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Restrictions</Keyword> <Keyword>Coastal</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mcwr.htm</Keyword> <Keyword>Wetlands</Keyword> <Keyword>MORIS.GEOREG_MCWR_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278174024428" miny="41.18691821730481" maxx="-69.83002436426827" maxy="42.878899578930934"/> <BoundingBox SRS="EPSG:26986" minx="213189.34317217465" miny="772062.504075442" maxx="336460.4640465778" maxy="958709.876467085"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MCWR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MCZ_POLY</Name> <Title>Massachusetts Coastal Zone Management Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Management</Keyword> <Keyword>MORIS.GEOREG_MCZ_POLY</Keyword> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Coastal</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mcz.htm</Keyword> <Keyword>Zone</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278174024428" miny="41.18691821730481" maxx="-69.83002436426827" maxy="42.878899578930934"/> <BoundingBox SRS="EPSG:26986" minx="213189.34317217465" miny="772062.504075442" maxx="336460.4640465778" maxy="958709.876467085"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MCZ_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MEPA_POLY</Name> <Title>Massachusetts Environmental Policy Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MORIS.GEOREG_MEPA_POLY</Keyword> <Keyword>Policy</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mepa.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220362997" miny="41.18691817983291" maxx="-69.82977570319393" maxy="42.8883236213069"/> <BoundingBox SRS="EPSG:26986" minx="206555.12492256716" miny="772062.5000021651" maxx="336460.46874042973" maxy="959747.4374978065"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MEPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MESA_POLY</Name> <Title>Massachusetts Endangered Species Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>MORIS.GEOREG_MESA_POLY</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mesa.htm</Keyword> <Keyword>Species</Keyword> <Keyword>Endangered</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220362997" miny="41.18691817983291" maxx="-69.82977570319393" maxy="42.8883236213069"/> <BoundingBox SRS="EPSG:26986" minx="206555.12492256716" miny="772062.5000021651" maxx="336460.46874042973" maxy="959747.4374978065"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MESA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MMPA_POLY</Name> <Title>Marine Mammal Protection Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Marine</Keyword> <Keyword>Act</Keyword> <Keyword>Protection</Keyword> <Keyword>Mammal</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.GEOREG_MMPA_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mmpa.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42090749370297" miny="40.592434906439365" maxx="-65.74249361956367" maxy="43.07670784732625"/> <BoundingBox SRS="EPSG:26986" minx="206683.48210213665" miny="720012.1933980016" maxx="669639.7313498593" maxy="980676.8414846198"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MMPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_MZA_POLY</Name> <Title>Zoning By-Laws Massachusetts Zoning Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Zoning</Keyword> <Keyword>By-Laws</Keyword> <Keyword>Act</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/mza.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.GEOREG_MZA_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42180262326578" miny="41.23693821017199" maxx="-69.89847702614225" maxy="42.88832362030523"/> <BoundingBox SRS="EPSG:26986" minx="206555.1251381206" miny="777514.3126132431" maxx="330846.0936157503" maxy="959747.4373867272"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_MZA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NEPA_POLY</Name> <Title>National Environmental Policy Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>Policy</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/nepa.htm</Keyword> <Keyword>MORIS.GEOREG_NEPA_POLY</Keyword> <Keyword>National</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833714716" miny="40.59243490658438" maxx="-65.74249362035737" maxy="43.076709191686035"/> <BoundingBox SRS="EPSG:26986" minx="206526.23685455555" miny="720012.1934105182" maxx="669639.7312942145" maxy="980676.841347125"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NEPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NERRS_POLY</Name> <Title>National Estuarine Research Reserve System</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Reserve</Keyword> <Keyword>Estuarine</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/nerrs.htm</Keyword> <Keyword>MORIS.GEOREG_NERRS_POLY</Keyword> <Keyword>Research</Keyword> <Keyword>National</Keyword> <Keyword>System</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.374" miny="41.547" maxx="-70.454" maxy="43.351"/> <BoundingBox SRS="EPSG:26986" minx="210538.327" miny="811234.747" maxx="284817.882" maxy="1011152.653"/> <Style> <Name>MORIS.GEOREG_NERRS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NERRS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NMS_POLY</Name> <Title>Stellwagen National Marine Santuary</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Santuary</Keyword> <Keyword>Marine</Keyword> <Keyword>MORIS.GEOREG_NMS_POLY</Keyword> <Keyword>National</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/nms.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.605" miny="42.091" maxx="-70.019" maxy="42.77"/> <BoundingBox SRS="EPSG:26986" minx="274047.388" miny="872261.658" maxx="321229.857" maxy="947025.372"/> <Style> <Name>MORIS.GEOREG_NMS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NMS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NPDES_POLY</Name> <Title>National Pollution Discharge Elimination System</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Discharge</Keyword> <Keyword>Elimination</Keyword> <Keyword>MORIS.GEOREG_NPDES_POLY</Keyword> <Keyword>National</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/npdes.htm</Keyword> <Keyword>System</Keyword> <Keyword>Pollution</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42276833714716" miny="40.59243490658438" maxx="-65.74249362035737" maxy="43.076709191686035"/> <BoundingBox SRS="EPSG:26986" minx="206526.23685455555" miny="720012.1934105182" maxx="669639.7312942145" maxy="980676.841347125"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NPDES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NPS_POLY</Name> <Title>National Park Service in the Coastal Area</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Service</Keyword> <Keyword>Park</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/nps.htm</Keyword> <Keyword>National</Keyword> <Keyword>MORIS.GEOREG_NPS_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.594" miny="41.623" maxx="-69.9" maxy="42.654"/> <BoundingBox SRS="EPSG:26986" minx="110272.375" miny="820391.642" maxx="331195.219" maxy="933742.879"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NPS_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_NPS_POLY::National_Park_Service</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NPS_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_NPS_POLY::Cape_Cod_National_Seashore</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NPS_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_NPS_POLY::Boston_Harbor_Islands</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NPS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_NWR_POLY</Name> <Title>National Wildlife Refuge System in the Coastal Area</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/nwr.htm</Keyword> <Keyword>Refuge</Keyword> <Keyword>Wildlife</Keyword> <Keyword>MORIS.GEOREG_NWR_POLY</Keyword> <Keyword>National</Keyword> <Keyword>System</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.836" miny="41.241" maxx="-69.925" maxy="42.817"/> <BoundingBox SRS="EPSG:26986" minx="90708.72" miny="777906.126" maxx="328830.092" maxy="951846.589"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NWR_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_NWR_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NWR_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.GEOREG_NWR_POLY::National_Wildlife_Refuge</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_NWR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_OSA_POLY</Name> <Title>Ocean Sanctuaries Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_OSA_POLY</Keyword> <Keyword>Act</Keyword> <Keyword>Ocean</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/osa.htm</Keyword> <Keyword>Sanctuaries</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.127" miny="41.187" maxx="-69.83" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231256.922" miny="772067.135" maxx="336459.04" maxy="958708.603"/> <Style> <Name>MORIS.GEOREG_OSA_POLY::OSA_By_Name</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_OSA_POLY"/> </LegendURL> </Style> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_OSA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_PGP_POLY</Name> <Title>Massachusetts Programmatic General Permit 33 CFR 320-330 US Army Corp of Engineers Regulations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>US</Keyword> <Keyword>Army</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/pgp.htm</Keyword> <Keyword>Permit</Keyword> <Keyword>Programmatic</Keyword> <Keyword>33</Keyword> <Keyword>of</Keyword> <Keyword>Engineers</Keyword> <Keyword>CFR</Keyword> <Keyword>General</Keyword> <Keyword>Corp</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>MORIS.GEOREG_PGP_POLY</Keyword> <Keyword>Regulations</Keyword> <Keyword>320-330</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220362997" miny="41.18691817983291" maxx="-69.82977570319393" maxy="42.8883236213069"/> <BoundingBox SRS="EPSG:26986" minx="206555.12492256716" miny="772062.5000021651" maxx="336460.46874042973" maxy="959747.4374978065"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_PGP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_PWACH91_POLY</Name> <Title>Massachusetts General Programmatic Permit (ACOE Regulations)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_PWACH91_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/pwach91.htm</Keyword> <Keyword>General</Keyword> <Keyword>Permit</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Programmatic</Keyword> <Keyword>Regulations)</Keyword> <Keyword>(ACOE</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34891926696415" miny="41.18691817982531" maxx="-69.82977570265149" maxy="42.888247615860216"/> <BoundingBox SRS="EPSG:26986" minx="212674.45312137052" miny="772062.5000021651" maxx="336460.46878476045" maxy="959747.437497805"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_PWACH91_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_RCRA_POLY</Name> <Title>Resource Conservation and Recovery Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Resource</Keyword> <Keyword>Act</Keyword> <Keyword>Recovery</Keyword> <Keyword>Conservation</Keyword> <Keyword>MORIS.GEOREG_RCRA_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/rcra.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220540108" miny="41.186918180299905" maxx="-69.829775701459" maxy="42.88832362081667"/> <BoundingBox SRS="EPSG:26986" minx="206555.12477393585" miny="772062.5000567678" maxx="336460.4688832846" maxy="959747.4374432022"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_RCRA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_RHA_POLY</Name> <Title>Rivers and Harbors Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Rivers</Keyword> <Keyword>Act</Keyword> <Keyword>Harbors</Keyword> <Keyword>MORIS.GEOREG_RHA_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/rha.htm</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42221049770079" miny="41.18691820976206" maxx="-69.82671406347933" maxy="43.00311409256971"/> <BoundingBox SRS="EPSG:26986" minx="206525.90586662045" miny="772062.503242439" maxx="336460.4643049105" maxy="972500.3105885815"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_RHA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_SWR_POLY</Name> <Title>Solid Waste Requirements</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Solid</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/swr.htm</Keyword> <Keyword>MORIS.GEOREG_SWR_POLY</Keyword> <Keyword>Requirements</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Waste</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42186220362997" miny="41.18691817983291" maxx="-69.82977570319393" maxy="42.8883236213069"/> <BoundingBox SRS="EPSG:26986" minx="206555.12492256716" miny="772062.5000021651" maxx="336460.46874042973" maxy="959747.4374978065"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_SWR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_TITLE5_POLY</Name> <Title>State Environmental Code Title 5</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>State</Keyword> <Keyword>5</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/title5.htm</Keyword> <Keyword>Code</Keyword> <Keyword>Title</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.GEOREG_TITLE5_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42180262326578" miny="41.23693821017199" maxx="-69.89847702614225" maxy="42.88832362030523"/> <BoundingBox SRS="EPSG:26986" minx="206555.1251381206" miny="777514.3126132431" maxx="330846.0936157503" maxy="959747.4373867272"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_TITLE5_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_UAR_POLY</Name> <Title>Underwater Archaeological Resources</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Underwater</Keyword> <Keyword>MORIS.GEOREG_UAR_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/uar.htm</Keyword> <Keyword>Archaeological</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Resources</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.52013532381439" miny="41.18149438324467" maxx="-69.82979329351568" maxy="42.887560510941846"/> <BoundingBox SRS="EPSG:26986" minx="34939.64089999918" miny="772062.5034999821" maxx="336460.4645000048" maxy="959674.249999987"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_UAR_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_WMA_POLY</Name> <Title>Water Management Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_WMA_POLY</Keyword> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/wma.htm</Keyword> <Keyword>Water</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.42180262479705" miny="41.23693820915302" maxx="-69.89847702474071" maxy="42.888323621306704"/> <BoundingBox SRS="EPSG:26986" minx="206555.12500986035" miny="777514.312502103" maxx="330846.0937281958" maxy="959747.4374978659"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_WMA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GEOREG_WPA_POLY</Name> <Title>Massachusetts Wetlands Protection Act and River Protection Act</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.GEOREG_WPA_POLY</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/georegs/wpa.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.34278174024428" miny="41.18691821730481" maxx="-69.83002436426827" maxy="42.878899578930934"/> <BoundingBox SRS="EPSG:26986" minx="213189.34317217465" miny="772062.504075442" maxx="336460.4640465778" maxy="958709.876467085"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GEOREG_WPA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GOM15CTR_ARC</Name> <Title>Bathymetry - Gulf of Maine</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>MORIS.GOM15CTR_ARC</Keyword> <Keyword>Gulf</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_gom15ctr_arc.htm</Keyword> <Keyword>Maine</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.5" miny="39.191" maxx="-62.325" maxy="46.295"/> <BoundingBox SRS="EPSG:26986" minx="200000.0" miny="583346.891" maxx="911473.286" maxy="1338668.967"/> <Style> <Name>MORIS.GOM15CTR_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GOM15CTR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GRATELOUPIA_TURUTURU_2008_PT</Name> <Title>Grateloupia turuturu 2008 Points (Red Algae)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_grateloupia_turuturu_2008_pt.htm</Keyword> <Keyword>(Red</Keyword> <Keyword>turuturu</Keyword> <Keyword>MORIS.GRATELOUPIA_TURUTURU_2008_PT</Keyword> <Keyword>Grateloupia</Keyword> <Keyword>Points</Keyword> <Keyword>Algae)</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.1787482156222" miny="41.69630197990691" maxx="-70.49310780856965" maxy="42.3578179929571"/> <BoundingBox SRS="EPSG:26986" minx="226740.51799999902" miny="827822.5518000011" maxx="282953.424900003" maxy="900864.0841999991"/> <Style> <Name>MORIS.GRATELOUPIA_TURUTURU_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GRATELOUPIA_TURUTURU_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GRATELOUPIA_TURUTURU_2009_PT</Name> <Title>Grateloupia turuturu 2009 Points (Red Algae)</Title> <Abstract/> <KeywordList> <Keyword>Grateloupia turuturu</Keyword> <Keyword>Red Algae</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_grateloupia_turuturu_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.383" maxx="-70.493" maxy="42.358"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="282953.425" maxy="900864.084"/> <Style> <Name>MORIS.GRATELOUPIA_TURUTURU_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GRATELOUPIA_TURUTURU_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GRATELOUPIA_TURUTURU_2010_PT</Name> <Title>Grateloupia turuturu 2010 Points (Red Algae)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_grateloupia_turuturu_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_grateloupia_turuturu_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.383" maxx="-70.493" maxy="42.358"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="282953.425" maxy="900864.084"/> <Style> <Name>MORIS.GRATELOUPIA_TURUTURU_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GRATELOUPIA_TURUTURU_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.GRATELOUPIA_TURUTURU_2011_PT</Name> <Title>Grateloupia turuturu (Red Algae) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_grateloupia_turuturu_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_grateloupia_turuturu_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.383" maxx="-70.493" maxy="42.358"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="282953.425" maxy="900864.084"/> <Style> <Name>MORIS.GRATELOUPIA_TURUTURU_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.GRATELOUPIA_TURUTURU_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HAR_NAN_CABLE_ARC</Name> <Title>Harwich To Nantucket Electric Cable</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.HAR_NAN_CABLE_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_har_nan_cable_arc.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.16114801650465" miny="41.29600166993492" maxx="-70.09943786315704" maxy="41.66166271790476"/> <BoundingBox SRS="EPSG:26986" minx="312143.25630000076" miny="783829.6184999851" maxx="316647.2247999995" maxy="824375.8323999861"/> <Style> <Name>MORIS.HAR_NAN_CABLE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HAR_NAN_CABLE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_BATHY_POLY</Name> <Title>Bathymetry, USGS (draft)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_bathy_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_bathy_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.112" miny="42.22" maxx="-70.835" maxy="42.461"/> <BoundingBox SRS="EPSG:26986" minx="232066.876" miny="885676.221" maxx="254692.411" maxy="912332.017"/> <Style> <Name>MORIS.HA_BATHY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_BATHY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_CARLISLE_ET_AL_POLY</Name> <Title>100 Years of Estuarine Marsh Trends in Massachusetts (1893 to 1995): Boston Harbor, Cape Cod, Nantucket, Martha’s Vineyard, and the Elizabeth Islands</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_carlisle_et_al_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_carlisle_et_al_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.103" miny="41.223" maxx="-69.891" maxy="42.418"/> <BoundingBox SRS="EPSG:26986" minx="233271.068" miny="775997.027" maxx="332446.32" maxy="907569.298"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_CARLISLE_ET_AL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_COSTELLO_AND_KENWORTHY_POLY</Name> <Title>Twelve-Year Mapping and Change Analysis of Eelgrass (Zostera marina) Areal Abundance in Massachusetts (USA) Identifies Statewide Declines</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_costello_and_kenworthy_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_costello_and_kenworthy_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.147" miny="41.223" maxx="-69.885" maxy="42.637"/> <BoundingBox SRS="EPSG:26986" minx="229627.205" miny="775997.027" maxx="332446.32" maxy="931899.674"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_COSTELLO_AND_KENWORTHY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_HYDROLOGIC_UNITS_POLY</Name> <Title>Hydrologic Units</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_hydrologic_units_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_hydrologic_units_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.236" miny="42.183" maxx="-70.823" maxy="42.511"/> <BoundingBox SRS="EPSG:26986" minx="221813.25" miny="881662.63" maxx="255665.31" maxy="917910.81"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_HYDROLOGIC_UNITS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_LESCHEN_ET_AL_POLY</Name> <Title>Successful Eelgrass (Zostera marina) Restoration in a Formerly Eutrophic Estuary (Boston Harbor) Supports the Use of a Multifaceted Watershed Approach to Mitigating Eelgrass Loss</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_leschen_et_al_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_leschen_et_al_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.106" miny="42.218" maxx="-70.841" maxy="42.405"/> <BoundingBox SRS="EPSG:26986" minx="232514.422" miny="885533.947" maxx="254228.789" maxy="906114.144"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_LESCHEN_ET_AL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_RUMNEY_MARSHES_POLY</Name> <Title>Rumney Marshes Area of Critical Environmental Concern: Salt Marsh Restoration Plan</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_rumney_marshes_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_rumney_marshes_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.021" miny="42.382" maxx="-70.966" maxy="42.462"/> <BoundingBox SRS="EPSG:26986" minx="239462.594" miny="903674.811" maxx="243917.594" maxy="912464.181"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_RUMNEY_MARSHES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_SEABED_SEDIMENT_POLY</Name> <Title>Seabed sediment, Mass CZM</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_seabed_sediment_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_seabed_sediment_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.078" miny="42.219" maxx="-70.825" maxy="42.468"/> <BoundingBox SRS="EPSG:26986" minx="234878.279" miny="885614.245" maxx="255523.203" maxy="913114.565"/> <Style> <Name>MORIS.HA_SEABED_SEDIMENT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_SEABED_SEDIMENT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_SOUTH_SHORE_ATLAS_POLY</Name> <Title>Atlas of Tidal Restrictions on the South Shore of Massachusetts - Study Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_south_shore_atlas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_south_shore_atlas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.984" miny="41.762" maxx="-70.519" maxy="42.312"/> <BoundingBox SRS="EPSG:26986" minx="242884.312" miny="835102.385" maxx="280916.062" maxy="895811.685"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_SOUTH_SHORE_ATLAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HA_SOUTH_SHORE_ATLAS_PT</Name> <Title>Atlas of Tidal Restrictions on the South Shore of Massachusetts - Tidal Restrictions</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ha_south_shore_atlas_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ha_south_shore_atlas_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.962" miny="41.85" maxx="-70.523" maxy="42.307"/> <BoundingBox SRS="EPSG:26986" minx="244663.902" miny="844846.565" maxx="280582.408" maxy="895362.875"/> <Style> <Name>MORIS.HA_SOUTH_SHORE_ATLAS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HA_SOUTH_SHORE_ATLAS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HEMIGRAPSUS_SANGUINEUS_2008_PT</Name> <Title>Hemigrapsus sanguineus 2008 Points (Asian Shore Crab)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>Asian</Keyword> <Keyword>Shore</Keyword> <Keyword>Crab)</Keyword> <Keyword>Points</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_hemigrapsus_sanguineus_2008_pt.htm</Keyword> <Keyword>Hemigrapsus</Keyword> <Keyword>sanguineus</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Hemigrapsus</Keyword> <Keyword>(Asian</Keyword> <Keyword>MORIS.HEMIGRAPSUS_SANGUINEUS_2008_PT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.18" miny="41.48" maxx="-69.906" maxy="43.451"/> <BoundingBox SRS="EPSG:26986" minx="226740.518" miny="804493.755" maxx="329077.398" maxy="1022266.819"/> <Style> <Name>MORIS.HEMIGRAPSUS_SANGUINEUS_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HEMIGRAPSUS_SANGUINEUS_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HEMIGRAPSUS_SANGUINEUS_2009_PT</Name> <Title>Hemigrapsus sanguineus 2009 Points (Asian Shore Crab)</Title> <Abstract/> <KeywordList> <Keyword>Hemigrapsus sanguineus</Keyword> <Keyword>Asian Shore Crab</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_hemigrapsus_sanguineus_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.909" maxy="43.324"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1008132.943"/> <Style> <Name>MORIS.HEMIGRAPSUS_SANGUINEUS_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HEMIGRAPSUS_SANGUINEUS_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HEMIGRAPSUS_SANGUINEUS_2010_PT</Name> <Title>Hemigrapsus sanguineus 2010 Points (Asian Shore Crab)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_hemigrapsus_sanguineus_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_hemigrapsus_sanguineus_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.HEMIGRAPSUS_SANGUINEUS_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HEMIGRAPSUS_SANGUINEUS_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HEMIGRAPSUS_SANGUINEUS_2011_PT</Name> <Title>Hemigrapsus sanguineus (Asian Shore Crab) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_hemigrapsus_sanguineus_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_hemigrapsus_sanguineus_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.906" maxy="43.451"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1022266.819"/> <Style> <Name>MORIS.HEMIGRAPSUS_SANGUINEUS_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HEMIGRAPSUS_SANGUINEUS_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.HYAN_NAN_CABLE_ARC</Name> <Title>Hyannis To Nantucket Electric Cable</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_hyan_nan_cable_arc.htm</Keyword> <Keyword>MORIS.HYAN_NAN_CABLE_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.30406955249565" miny="41.29483037052641" maxx="-70.1005784282503" maxy="41.63635814940748"/> <BoundingBox SRS="EPSG:26986" minx="300172.2123000022" miny="783698.7553999801" maxx="316601.2700000047" maxy="821386.1315999872"/> <Style> <Name>MORIS.HYAN_NAN_CABLE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.HYAN_NAN_CABLE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.LINE8G_ARC</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Limit of 8(g) Zone Line</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>-</Keyword> <Keyword>of</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_line8g_arc.htm</Keyword> <Keyword>Offshore</Keyword> <Keyword>Zone</Keyword> <Keyword>MORIS.LINE8G_LN</Keyword> <Keyword>Line</Keyword> <Keyword>8(g)</Keyword> <Keyword>Limit</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_line8g_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.662" miny="24.223" maxx="-66.951" maxy="44.765"/> <BoundingBox SRS="EPSG:26986" minx="-1014236.484" miny="-1060123.86" maxx="560780.92" maxy="1168740.564"/> <Style> <Name>MORIS.LINE8G_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.LINE8G_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.LOBSTER_HARVEST_POLY</Name> <Title>Lobster Landings MA 1990-2001</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_lobster_harvest_poly.htm</Keyword> <Keyword>Landings</Keyword> <Keyword>MORIS.LOBSTER_HARVEST_POLY</Keyword> <Keyword>1990-2001</Keyword> <Keyword>MA</Keyword> <Keyword>Lobster</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.708" miny="39.683" maxx="-65.339" maxy="44.115"/> <BoundingBox SRS="EPSG:26986" minx="183358.328" miny="620403.937" maxx="694348.5" maxy="1096052.125"/> <Style> <Name>MORIS.LOBSTER_HARVEST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.LOBSTER_HARVEST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MARINAS_PT</Name> <Title>Marinas 2007</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.MARINAS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_marinas_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.21217657316463" miny="41.27714345457186" maxx="-69.92295041383503" maxy="42.841649809956444"/> <BoundingBox SRS="EPSG:26986" minx="224112.77579999654" miny="781946.0272999812" maxx="328941.29930000077" maxy="954600.8810999871"/> <Style> <Name>MORIS.MARINAS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MARINAS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MASS_LATERAL_BOUNDARIES_ARC</Name> <Title>Massachusetts Lateral Boundaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Lateral</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Boundaries</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mass_lateral_bounds.htm</Keyword> <Keyword>MORIS.MASS_LATERAL_BOUNDARIES_ARC</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.28785256572294" miny="41.42822568851344" maxx="-70.73235920507527" maxy="42.8787962939518"/> <BoundingBox SRS="EPSG:26986" minx="217733.36249999554" miny="797839.188699984" maxx="262720.7251999979" maxy="958708.4833999865"/> <Style> <Name>MORIS.MASS_LATERAL_BOUNDARIES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MASS_LATERAL_BOUNDARIES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MA_TIDAL_ENERGY_POLY</Name> <Title>Massachusetts Tidal Energy Co. Footprint</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.MA_TIDAL_ENERGY_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ma_tidal_energy_poly.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.79669347466364" miny="41.381458540888055" maxx="-70.63670485798848" maxy="41.516426583607085"/> <BoundingBox SRS="EPSG:26986" minx="258832.57060000265" miny="792732.9058999824" maxx="272066.1660000022" maxy="807602.6785999838"/> <Style> <Name>MORIS.MA_TIDAL_ENERGY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MA_TIDAL_ENERGY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MEMBRANIPORA_MEMBRANACEA_08_PT</Name> <Title>Membranipora membranacea 2008 Points (Lacy Crust)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>Membranipora</Keyword> <Keyword>membranacea</Keyword> <Keyword>Lacy</Keyword> <Keyword>Crust</Keyword> <Keyword>Points</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_membranipora_membranacea_08_pt.htm</Keyword> <Keyword>MORIS.MEMBRANIPORA_MEMBRANACEA_08_PT</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.18" miny="41.484" maxx="-70.228" maxy="43.657"/> <BoundingBox SRS="EPSG:26986" minx="226740.518" miny="804493.755" maxx="302628.374" maxy="1045219.38"/> <Style> <Name>MORIS.MEMBRANIPORA_MEMBRANACEA_08_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MEMBRANIPORA_MEMBRANACEA_08_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MEMBRANIPORA_MEMBRANACEA_09_PT</Name> <Title>Membranipora membranacea 2009 Points (Lacy Crust)</Title> <Abstract/> <KeywordList> <Keyword>Membranipora membranacea</Keyword> <Keyword>Lacy Crust</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_membranipora_membranacea_09_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.41" miny="41.468" maxx="-70.228" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="207557.789" miny="802689.228" maxx="302628.374" maxy="1045219.38"/> <Style> <Name>MORIS.MEMBRANIPORA_MEMBRANACEA_09_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MEMBRANIPORA_MEMBRANACEA_09_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MEMBRANIPORA_MEMBRANACEA_10_PT</Name> <Title>Membranipora membranacea 2010 Points (Lacy Crust)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_membranipora_membranacea_10_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_membranipora_membranacea_10_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.381" maxx="-70.228" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="302628.374" maxy="1045219.38"/> <Style> <Name>MORIS.MEMBRANIPORA_MEMBRANACEA_10_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MEMBRANIPORA_MEMBRANACEA_10_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MEMBRANIPORA_MEMBRANACEA_11_PT</Name> <Title>Membranipora membranacea (Lacy Crust) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_membranipora_membranacea_11_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_membranipora_membranacea_11_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.056" miny="41.634" maxx="-70.149" maxy="43.657"/> <BoundingBox SRS="EPSG:26986" minx="236990.092" miny="821229.589" maxx="308988.384" maxy="1045219.38"/> <Style> <Name>MORIS.MEMBRANIPORA_MEMBRANACEA_11_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MEMBRANIPORA_MEMBRANACEA_11_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MIMIC_SITES_2008_PT</Name> <Title>MIMIC 2008 Monitoring Sites</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MIMIC</Keyword> <Keyword>2008</Keyword> <Keyword>Monitoring</Keyword> <Keyword>Sites</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mimic_sites_2008_pt.htm</Keyword> <Keyword>MORIS.MIMIC_SITES_2008_PT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.17980031843233" miny="41.48009516916439" maxx="-69.90050484816507" maxy="43.657108207442185"/> <BoundingBox SRS="EPSG:26986" minx="226740.51799999902" miny="804493.754799999" maxx="329077.397500001" maxy="1045219.3796"/> <Style> <Name>MORIS.MIMIC_SITES_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MIMIC_SITES_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MIMIC_SITES_2009_PT</Name> <Title>MIMIC 2009 Monitoring Sites</Title> <Abstract/> <KeywordList> <Keyword>MIMIC</Keyword> <Keyword>Monitoring Sites</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mimic_sites_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.858" miny="41.314" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="171095.028" miny="786069.352" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.MIMIC_SITES_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MIMIC_SITES_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MIMIC_SITES_2010_PT</Name> <Title>MIMIC 2010 Monitoring Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mimic_sites_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_mimic_sites_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.MIMIC_SITES_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MIMIC_SITES_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MIMIC_SITES_2011_PT</Name> <Title>MIMIC 2011 Monitoring Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mimic_sites_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_mimic_sites_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.377" maxx="-69.9" maxy="43.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="329077.398" maxy="1045219.38"/> <Style> <Name>MORIS.MIMIC_SITES_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MIMIC_SITES_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MOORING_FIELDS_POLY</Name> <Title>Mooring Fields</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Fields</Keyword> <Keyword>Mooring</Keyword> <Keyword>MORIS.MOORING_FIELDS_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mooring_fields_poly.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.09816466699678" miny="41.27076309550061" maxx="-69.91616900682119" maxy="42.82445248190811"/> <BoundingBox SRS="EPSG:26986" minx="233667.67930000246" miny="781247.9048999802" maxx="329530.62630000134" maxy="952729.9548999888"/> <Style> <Name>MORIS.MOORING_FIELDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MOORING_FIELDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MPA_NERR_MA_POLY</Name> <Title>Marine Protected Areas National Estuarine Research Reserves</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Estuarine</Keyword> <Keyword>Marine</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mpa_nerr_ma_poly.htm</Keyword> <Keyword>Reserves</Keyword> <Keyword>Areas</Keyword> <Keyword>Research</Keyword> <Keyword>Protected</Keyword> <Keyword>National</Keyword> <Keyword>MORIS.MPA_NERR_MA_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.374" miny="41.547" maxx="-70.454" maxy="43.351"/> <BoundingBox SRS="EPSG:26986" minx="210538.327" miny="811234.747" maxx="284817.882" maxy="1011152.653"/> <Style> <Name>MORIS.MPA_NERR_MA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MPA_NERR_MA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MPA_NMFS_MA_POLY</Name> <Title>Marine Managed Areas - National Marine Fisheries Service</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Marine</Keyword> <Keyword>Service</Keyword> <Keyword>Fisheries</Keyword> <Keyword>MORIS.MPA_NMFS_MA_POLY</Keyword> <Keyword>Areas</Keyword> <Keyword>Managed</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mpa_nmfs_ma_poly.htm</Keyword> <Keyword>National</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.77" miny="40.227" maxx="-66.128" maxy="44.858"/> <BoundingBox SRS="EPSG:26986" minx="178614.546" miny="676594.037" maxx="625590.805" maxy="1178691.823"/> <Style> <Name>MORIS.MPA_NMFS_MA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MPA_NMFS_MA_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.MPA_NMFS_MA_POLY::NLHCA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MPA_NMFS_MA_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.MPA_NMFS_MA_POLY::NLCA</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MPA_NMFS_MA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.MPA_NMS_MA_POLY</Name> <Title>Marine Protected Areas National Marine Sanctuaries</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Marine</Keyword> <Keyword>MORIS.MPA_NMS_MA_POLY</Keyword> <Keyword>Areas</Keyword> <Keyword>Protected</Keyword> <Keyword>National</Keyword> <Keyword>Sanctuaries</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_mpa_nms_ma_poly.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.604" miny="42.093" maxx="-70.019" maxy="42.77"/> <BoundingBox SRS="EPSG:26986" minx="274132.555" miny="872472.81" maxx="321183.587" maxy="947024.841"/> <Style> <Name>MORIS.MPA_NMS_MA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.MPA_NMS_MA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_BEDROCK_DEPTH_RD</Name> <Title>Nahant To Gloucester Bedrock Depth</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_nah2glo_bedrock_depth_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.NAH2GLO_BEDROCK_DEPTH_RD</Keyword> <Keyword>MORIS.NAH2GLO_BEDROCK_DEPTH_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Nahant</Keyword> <Keyword>To</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Bedrock</Keyword> <Keyword>Depth</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=49.98963859</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_nah2glo_bedrock_depth_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.922" miny="42.398" maxx="-70.687" maxy="42.573"/> <BoundingBox SRS="EPSG:26986" minx="247612.969" miny="905599.172" maxx="266759.001" maxy="924895.172"/> <Style> <Name>MORIS.NAH2GLO_BEDROCK_DEPTH_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_BEDROCK_DEPTH_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_MLCLASS5_RD</Name> <Title>Nahant To Gloucester Bottom Type</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_nah2glo_mlclass5_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NAH2GLOMLCLASS5RD</Keyword> <Keyword>MORIS.NAH2GLO_MLCLASS5_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.9999582</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>Nahant</Keyword> <Keyword>To</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Bottom</Keyword> <Keyword>Type </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_nah2glo_mlclass5_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.939" miny="42.389" maxx="-70.662" maxy="42.577"/> <BoundingBox SRS="EPSG:26986" minx="246205.24" miny="904660.118" maxx="268780.051" maxy="925294.945"/> <Style> <Name>MORIS.NAH2GLO_MLCLASS5_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_MLCLASS5_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_PHYS_ZONES_IN_POLY</Name> <Title>Nahant to Gloucester Physiographic Zones Inshore</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>to</Keyword> <Keyword>Nahant</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_physio_zones_inshore_poly.htm</Keyword> <Keyword>Inshore</Keyword> <Keyword>Physiographic</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Zones</Keyword> <Keyword>MORIS.NAH2GLO_PHYS_ZONES_IN_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.939" miny="42.415" maxx="-70.694" maxy="42.585"/> <BoundingBox SRS="EPSG:26986" minx="246144.312" miny="907454.373" maxx="266180.12" maxy="926158.213"/> <Style> <Name>MORIS.NAH2GLO_PHYS_ZONES_IN_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_PHYS_ZONES_IN_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_PHYS_ZONES_POLY</Name> <Title>Nahant to Gloucester Physiographic Zones</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>to</Keyword> <Keyword>Nahant</Keyword> <Keyword>MORIS.NAH2GLO_PHYS_ZONES_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_phsio_zones_poly.htm</Keyword> <Keyword>Physiographic</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Zones</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.917" miny="42.396" maxx="-70.692" maxy="42.573"/> <BoundingBox SRS="EPSG:26986" minx="247991.495" miny="905378.319" maxx="266337.727" maxy="924859.152"/> <Style> <Name>MORIS.NAH2GLO_PHYS_ZONES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_PHYS_ZONES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_SE_5MBATH_RD</Name> <Title>Nahant To Gloucester Bathymetry</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_nah2glo_se_5mbath_rd.htm</Keyword> <Keyword>:WCS</Keyword> <Keyword>MORIS.NAH2GLO_SE_5MBATH_RD</Keyword> <Keyword>MORIS.NAH2GLO_SE_5MBATH_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Nahant</Keyword> <Keyword>To</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.9999582</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_nah2glo_se_5mbath_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.939" miny="42.389" maxx="-70.662" maxy="42.577"/> <BoundingBox SRS="EPSG:26986" minx="246205.24" miny="904660.118" maxx="268780.051" maxy="925294.945"/> <Style> <Name>MORIS.NAH2GLO_SE_5MBATH_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_SE_5MBATH_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NAH2GLO_SS_MOS1M_RD</Name> <Title>Nahant To Gloucester: 1m Resolution Sidescan Sonar Mosaic</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_nah2glo_ss_mos1m.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.NAH2GLO_SS_MOS1M_RD</Keyword> <Keyword>MORIS.NAH2GLO_SS_MOS1M_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Nahant</Keyword> <Keyword>To</Keyword> <Keyword>Gloucester:</Keyword> <Keyword>1m</Keyword> <Keyword>Resolution</Keyword> <Keyword>Sidescan</Keyword> <Keyword>Sonar</Keyword> <Keyword>Mosaic</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.9999582</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_nah2glo_ss_mos1m_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.944" miny="42.387" maxx="-70.658" maxy="42.579"/> <BoundingBox SRS="EPSG:26986" minx="245798.069" miny="904366.146" maxx="269157.879" maxy="925583.973"/> <Style> <Name>MORIS.NAH2GLO_SS_MOS1M_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NAH2GLO_SS_MOS1M_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NBDC_BUOYS_PT</Name> <Title>Environmental Monitoring Buoys in New England</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.NBDC_BUOYS_PT</Keyword> <Keyword>Environmental</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_nbdc_buoys_pt.htm</Keyword> <Keyword>England</Keyword> <Keyword>New</Keyword> <Keyword>Monitoring</Keyword> <Keyword>in</Keyword> <Keyword>Buoys</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.01" miny="38.347" maxx="-65.682" maxy="45.145"/> <BoundingBox SRS="EPSG:26986" minx="2315.381" miny="469280.088" maxx="658890.381" maxy="1210601.899"/> <Style> <Name>MORIS.NBDC_BUOYS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NBDC_BUOYS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NEPTUNE_LNG_ARC</Name> <Title>Neptune LNG Pipeline</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Pipeline</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_neptune_lng_arc.htm</Keyword> <Keyword>MORIS.NEPTUNE_LNG_ARC</Keyword> <Keyword>LNG</Keyword> <Keyword>Neptune</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.77694720059611" miny="42.453880153138094" maxx="-70.60504683593916" maxy="42.48566409674061"/> <BoundingBox SRS="EPSG:26986" minx="259473.233599998" miny="911869.7259000019" maxx="273578.143600002" maxy="915266.655900002"/> <Style> <Name>MORIS.NEPTUNE_LNG_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NEPTUNE_LNG_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NE_GATEWAY_LNG_ARC</Name> <Title>Northeast Gateway LNG Pipeline</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Pipeline</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ne_gateway_lng_arc.htm</Keyword> <Keyword>MORIS.NE_GATEWAY_LNG_ARC</Keyword> <Keyword>Northeast</Keyword> <Keyword>LNG</Keyword> <Keyword>Gateway</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.78012794287227" miny="42.400242154274835" maxx="-70.60291733005344" maxy="42.526352512738924"/> <BoundingBox SRS="EPSG:26986" minx="259261.866700001" miny="905912.7082999981" maxx="273705.716200002" maxy="919784.727200002"/> <Style> <Name>MORIS.NE_GATEWAY_LNG_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NE_GATEWAY_LNG_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NE_HURTRACK_ARC</Name> <Title>Hurricanes Making Landfall in New England 1851 - 2008</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>1851</Keyword> <Keyword>England</Keyword> <Keyword>New</Keyword> <Keyword>Making</Keyword> <Keyword>Landfall</Keyword> <Keyword>in</Keyword> <Keyword>-</Keyword> <Keyword>Hurricanes</Keyword> <Keyword>MORIS.NE_HURTRACK_ARC</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ne_hurtracks_arc.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-119.408" miny="-0.03" maxx="9.511" maxy="66.252"/> <BoundingBox SRS="EPSG:26986" minx="-2481681.464" miny="-2647261.085" maxx="6156261.947" maxy="3666204.083"/> <Style> <Name>MORIS.NE_HURTRACK_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NE_HURTRACK_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.NY_GOME_CONTOURS_ARC</Name> <Title>Bathymetry - NY Bight and Gulf of Maine</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>of</Keyword> <Keyword>Bight</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ny_gome_contours_arc.htm</Keyword> <Keyword>NY</Keyword> <Keyword>MORIS.NY_GOME_CONTOURS_ARC</Keyword> <Keyword>Gulf</Keyword> <Keyword>Maine</Keyword> <Keyword>Bathymetry</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>and</Keyword> <Keyword>-</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-77.846" miny="34.877" maxx="-64.63" maxy="45.26"/> <BoundingBox SRS="EPSG:26986" minx="-299729.248" miny="86934.431" maxx="741151.219" maxy="1223487.308"/> <Style> <Name>MORIS.NY_GOME_CONTOURS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.NY_GOME_CONTOURS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_1000M_GRID_EXACT_POLY</Name> <Title>Ocean Management 1km2 Grid (Exact)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>(Exact</Keyword> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>Ocean</Keyword> <Keyword>Area</Keyword> <Keyword>1km2</Keyword> <Keyword>-</Keyword> <Keyword>2008:</Keyword> <Keyword>of</Keyword> <Keyword>Border)</Keyword> <Keyword>Grid</Keyword> <Keyword>Analysis</Keyword> <Keyword>Oceans</Keyword> <Keyword>Planning</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_1000m_grid_exact_poly.htm</Keyword> <Keyword>MORIS.OM_1000M_GRID_EXACT_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.12136131105086" miny="41.18691821294705" maxx="-69.83002469247923" maxy="42.87834775332863"/> <BoundingBox SRS="EPSG:26986" minx="231764.90290000156" miny="772062.5035999821" maxx="336460.4645000049" maxy="958708.4832999879"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_1000M_GRID_EXACT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_1000M_GRID_POLY</Name> <Title>Ocean Management 1km2 Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>Ocean</Keyword> <Keyword>Area</Keyword> <Keyword>(Blocked</Keyword> <Keyword>MORIS.OM_1000M_GRID_POLY</Keyword> <Keyword>1km2</Keyword> <Keyword>-</Keyword> <Keyword>2008:</Keyword> <Keyword>of</Keyword> <Keyword>Border)</Keyword> <Keyword>Grid</Keyword> <Keyword>Analysis</Keyword> <Keyword>Oceans</Keyword> <Keyword>Planning</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_1000m_grid_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124171067885" miny="41.185236439115684" maxx="-69.82913355607502" maxy="42.8798742205216"/> <BoundingBox SRS="EPSG:26986" minx="231529.99999999933" miny="771876.9999999825" maxx="336530.0000000015" maxy="958876.9999999893"/> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_1000M_GRID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_250M_GRID_EXACT_POLY</Name> <Title>Ocean Management 250m2 Grid (Exact)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>(Exact</Keyword> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>MORIS.OM_250M_GRID_EXACT_POLY</Keyword> <Keyword>Ocean</Keyword> <Keyword>Area</Keyword> <Keyword>250m2</Keyword> <Keyword>-</Keyword> <Keyword>2008:</Keyword> <Keyword>of</Keyword> <Keyword>Border)</Keyword> <Keyword>Grid</Keyword> <Keyword>Analysis</Keyword> <Keyword>Oceans</Keyword> <Keyword>Planning</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_250m_grid_exact_poly.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.12136131105086" miny="41.18691821294705" maxx="-69.83002469247923" maxy="42.87834775332863"/> <BoundingBox SRS="EPSG:26986" minx="231764.90290000156" miny="772062.5035999821" maxx="336460.4645000049" maxy="958708.4832999879"/> <Style> <Name>MORIS.OM_250M_GRID_EXACT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_250M_GRID_EXACT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_250M_GRID_POLY</Name> <Title>Ocean Management 250m2 Grid</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Management</Keyword> <Keyword>Act</Keyword> <Keyword>Ocean</Keyword> <Keyword>Area</Keyword> <Keyword>(Blocked</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_250m_grid_poly.htm</Keyword> <Keyword>250m2</Keyword> <Keyword>-</Keyword> <Keyword>2008:</Keyword> <Keyword>of</Keyword> <Keyword>Border)</Keyword> <Keyword>Grid</Keyword> <Keyword>Analysis</Keyword> <Keyword>Oceans</Keyword> <Keyword>Planning</Keyword> <Keyword>MORIS.OM_250M_GRID_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124171067885" miny="41.185236439115684" maxx="-69.82913355607502" maxy="42.8798742205216"/> <BoundingBox SRS="EPSG:26986" minx="231529.99999999933" miny="771876.9999999825" maxx="336530.0000000015" maxy="958876.9999999893"/> <Style> <Name>MORIS.OM_250M_GRID_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_250M_GRID_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_30M_CONTOUR_ARC</Name> <Title>30-meter Contour</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_30m_contour_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_30m_contour_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.455" miny="40.716" maxx="-68.976" maxy="42.975"/> <BoundingBox SRS="EPSG:26986" minx="203798.154" miny="721439.244" maxx="405974.277" maxy="969388.307"/> <Style> <Name>MORIS.OM_30M_CONTOUR_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_30M_CONTOUR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_60M_CONTOUR_ARC</Name> <Title>60-meter Contour</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_60m_contour_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_60m_contour_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.439" miny="40.474" maxx="-68.935" maxy="42.987"/> <BoundingBox SRS="EPSG:26986" minx="205148.154" miny="694551.481" maxx="409240.659" maxy="970708.307"/> <Style> <Name>MORIS.OM_60M_CONTOUR_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_60M_CONTOUR_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ACTIVE_DISPOSAL_SITES_POLY</Name> <Title>Active Disposal Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_active_disposal_sites_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_active_disposal_sites_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.699" miny="41.613" maxx="-70.199" maxy="42.436"/> <BoundingBox SRS="EPSG:26986" minx="266735.663" miny="818838.137" maxx="307043.354" maxy="909824.714"/> <Style> <Name>MORIS.OM_ACTIVE_DISPOSAL_SITES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ACTIVE_DISPOSAL_SITES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ANCHORAGE_AREAS_POLY</Name> <Title>Anchorage Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_anchorage_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_anchorage_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.813" miny="41.497" maxx="-70.115" maxy="42.052"/> <BoundingBox SRS="EPSG:26986" minx="257390.587" miny="806110.979" maxx="314691.83" maxy="867049.464"/> <Style> <Name>MORIS.OM_ANCHORAGE_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ANCHORAGE_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_AUTOMATIC_ID_SYSTEM_POLY</Name> <Title>Automatic Identification System (AIS)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_automatic_id_system_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_automatic_id_system_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.114" miny="41.378" maxx="-69.831" maxy="42.823"/> <BoundingBox SRS="EPSG:26986" minx="232255.929" miny="793256.135" maxx="336491.913" maxy="952610.506"/> <Style> <Name>MORIS.OM_AUTOMATIC_ID_SYSTEM_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_AUTOMATIC_ID_SYSTEM_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CABLES_POLY</Name> <Title>Cables</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_cables_poly.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_cables_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.945" miny="41.175" maxx="-65.999" maxy="42.979"/> <BoundingBox SRS="EPSG:26986" minx="246497.78" miny="783573.755" maxx="649316.047" maxy="970028.339"/> <Style> <Name>MORIS.OM_CABLES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CABLES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CABLE_AREAS_POLY</Name> <Title>Cable Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_cable_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_cable_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.097" miny="41.29" maxx="-70.046" maxy="43.003"/> <BoundingBox SRS="EPSG:26986" minx="233786.529" miny="783184.357" maxx="318594.134" maxy="972529.181"/> <Style> <Name>MORIS.OM_CABLE_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CABLE_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_COLONIAL_NESTING_WB_POLY</Name> <Title>Colonial Nesting Waterbirds</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_colonial_nesting_wb_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_colonial_nesting_wb_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.243" maxx="-69.915" maxy="42.668"/> <BoundingBox SRS="EPSG:26986" minx="236805.867" miny="778156.378" maxx="329933.991" maxy="935356.728"/> <Style> <Name>MORIS.OM_COLONIAL_NESTING_WB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_COLONIAL_NESTING_WB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_COL_WB_IMP_HAB_IDS_POLY</Name> <Title>Colonial Waterbirds Important Nesting Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_col_wb_imp_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_col_wb_imp_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.243" maxx="-69.914" maxy="42.668"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="778127.0" maxx="330030.0" maxy="935377.0"/> <Style> <Name>MORIS.OM_COL_WB_IMP_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_COL_WB_IMP_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_COL_WB_IMP_HAB_POLY</Name> <Title>Colonial Waterbirds Important Nesting Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_col_wb_imp_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_col_wb_imp_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.243" maxx="-69.914" maxy="42.668"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="778127.0" maxx="330030.0" maxy="935377.0"/> <Style> <Name>MORIS.OM_COL_WB_IMP_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_COL_WB_IMP_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_COMM_FISH_ACTIVITY_POLY</Name> <Title>Commercial Fisheries Activity</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_comm_fish_activity_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_comm_fish_activity_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.118" miny="41.187" maxx="-69.829" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="232030.0" miny="772127.0" maxx="336530.0" maxy="958627.0"/> <Style> <Name>MORIS.OM_COMM_FISH_ACTIVITY_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_COMM_FISH_ACTIVITY_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_COMMERCE_TRAF_IDS_POLY</Name> <Title>Concentrated Commerce Traffic, as indicated by Automatic Identification System (AIS) data (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_commerce_traf_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_commerce_traf_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.06" miny="41.405" maxx="-70.136" maxy="42.823"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="795881.191" maxx="311530.0" maxy="952627.0"/> <Style> <Name>MORIS.OM_CONC_COMMERCE_TRAF_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_COMMERCE_TRAF_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_COMMERCE_TRAF_POLY</Name> <Title>Concentrated Commerce Traffic, as indicated by Automatic Identification System (AIS) data</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_commerce_traf_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_commerce_traf_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.06" miny="41.405" maxx="-70.136" maxy="42.823"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="795881.191" maxx="311530.0" maxy="952627.0"/> <Style> <Name>MORIS.OM_CONC_COMMERCE_TRAF_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_COMMERCE_TRAF_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_COM_FISH_TRAF_IDS_POLY</Name> <Title>Concentrated Commercial Fishing Traffic, as indicated by Vessel Monitoring System (VMS) data (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_com_fish_traf_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_com_fish_traf_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.235" maxx="-69.841" maxy="42.664"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="777377.0" maxx="336037.826" maxy="934877.0"/> <Style> <Name>MORIS.OM_CONC_COM_FISH_TRAF_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_COM_FISH_TRAF_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_COM_FISH_TRAF_POLY</Name> <Title>Concentrated Commercial Fishing Traffic, as indicated by Vessel Monitoring System (VMS) data</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_com_fish_traf_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_com_fish_traf_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.061" miny="41.235" maxx="-69.841" maxy="42.664"/> <BoundingBox SRS="EPSG:26986" minx="236780.0" miny="777377.0" maxx="336037.826" maxy="934877.0"/> <Style> <Name>MORIS.OM_CONC_COM_FISH_TRAF_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_COM_FISH_TRAF_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_REC_BOATING_IDS_POLY</Name> <Title>Concentrated Recreational Boating Activity (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_rec_boating_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_rec_boating_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.002" miny="41.187" maxx="-69.831" maxy="42.859"/> <BoundingBox SRS="EPSG:26986" minx="241780.0" miny="772127.0" maxx="336460.465" maxy="956627.0"/> <Style> <Name>MORIS.OM_CONC_REC_BOATING_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_REC_BOATING_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_REC_BOATING_POLY</Name> <Title>Concentrated Recreational Boating Activity</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_rec_boating_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_rec_boating_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.002" miny="41.187" maxx="-69.831" maxy="42.859"/> <BoundingBox SRS="EPSG:26986" minx="241780.0" miny="772127.0" maxx="336460.465" maxy="956627.0"/> <Style> <Name>MORIS.OM_CONC_REC_BOATING_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_REC_BOATING_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_REC_BOATING_ROUTES_ARC</Name> <Title>Concentrated Recreational Boating Routes</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_rec_boating_routes_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_rec_boating_routes_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.114" miny="41.205" maxx="-69.861" maxy="42.187"/> <BoundingBox SRS="EPSG:26986" minx="232359.262" miny="774024.774" maxx="335405.487" maxy="881903.532"/> <Style> <Name>MORIS.OM_CONC_REC_BOATING_ROUTES_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_REC_BOATING_ROUTES_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_REC_FISHING_IDS_POLY</Name> <Title>Concentrated Recreational Fishing (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_rec_fishing_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_rec_fishing_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.118" miny="41.188" maxx="-69.832" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="232030.0" miny="772127.0" maxx="336280.0" maxy="958127.0"/> <Style> <Name>MORIS.OM_CONC_REC_FISHING_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_REC_FISHING_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_CONC_REC_FISHING_POLY</Name> <Title>Concentrated Recreational Fishing</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_conc_rec_fishing_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_conc_rec_fishing_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.118" miny="41.188" maxx="-69.832" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="232030.0" miny="772127.0" maxx="336280.0" maxy="958127.0"/> <Style> <Name>MORIS.OM_CONC_REC_FISHING_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_CONC_REC_FISHING_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_EELGRASS_IDS_POLY</Name> <Title>Eelgrass (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_eelgrass_ids_poly.htm</Keyword> <Keyword>ExtracDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_eelgrass_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.094" miny="41.297" maxx="-69.962" maxy="42.664"/> <BoundingBox SRS="EPSG:26986" minx="234037.818" miny="784084.678" maxx="326119.584" maxy="934877.0"/> <Style> <Name>MORIS.OM_EELGRASS_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_EELGRASS_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_EELGRASS_POLY</Name> <Title>Eelgrass</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_eelgrass_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_eelgrass_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.094" miny="41.297" maxx="-69.962" maxy="42.664"/> <BoundingBox SRS="EPSG:26986" minx="234037.818" miny="784084.678" maxx="326119.584" maxy="934877.0"/> <Style> <Name>MORIS.OM_EELGRASS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_EELGRASS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_EXCLUSIONARY_CRITERIA_POLY</Name> <Title>Exclusionary Criteria</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_exclusionary_criteria_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_exclusionary_criteria_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.188" maxx="-69.831" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772153.459" maxx="336378.68" maxy="958289.444"/> <Style> <Name>MORIS.OM_EXCLUSIONARY_CRITERIA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_EXCLUSIONARY_CRITERIA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_FERRY_ROUTES_POLY</Name> <Title>Ferry Routes</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_ferry_routes_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_ferry_routes_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.063" miny="41.284" maxx="-70.038" maxy="42.527"/> <BoundingBox SRS="EPSG:26986" minx="236620.479" miny="782536.017" maxx="320156.155" maxy="919737.046"/> <Style> <Name>MORIS.OM_FERRY_ROUTES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_FERRY_ROUTES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_FIN_WHALES_POLY</Name> <Title>Fin Whales in the Southern Gulf of Maine - Interpolation of Sightings per Unit Effort (Quantile)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_fin_whales_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_fin_whales_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.011" miny="40.913" maxx="-66.829" maxy="43.576"/> <BoundingBox SRS="EPSG:26986" minx="241125.86" miny="750293.307" maxx="577739.945" maxy="1036279.781"/> <Style> <Name>MORIS.OM_FIN_WHALES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_FIN_WHALES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_FIN_WHALE_CORE_HAB_IDS_POLY</Name> <Title>Fin Whale Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_fin_whale_core_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_fin_whale_core_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.788" miny="41.635" maxx="-69.83" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="259280.0" miny="821821.047" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_FIN_WHALE_CORE_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_FIN_WHALE_CORE_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_FIN_WHALE_CORE_HAB_POLY</Name> <Title>Fin Whale Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_fin_whale_core_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_fin_whale_core_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.788" miny="41.635" maxx="-69.83" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="259280.0" miny="821821.047" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_FIN_WHALE_CORE_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_FIN_WHALE_CORE_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_FISHERIES_RESOURCES_POLY</Name> <Title>Fisheries Resources</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_fisheries_resources_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_fisheries_resources_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.829" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231780.0" miny="772127.0" maxx="336530.0" maxy="958627.0"/> <Style> <Name>MORIS.OM_FISHERIES_RESOURCES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_FISHERIES_RESOURCES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_GAS_PIPELINES_POLY</Name> <Title>Gas Pipelines</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_gas_pipelines_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_gas_pipelines_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.966" miny="42.242" maxx="-70.59" maxy="42.544"/> <BoundingBox SRS="EPSG:26986" minx="244032.96" miny="888300.462" maxx="274737.994" maxy="921649.362"/> <Style> <Name>MORIS.OM_GAS_PIPELINES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_GAS_PIPELINES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HARD_COMPLEX_SEAFL_IDS_POLY</Name> <Title>Hard/Complex Seafloor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_hard_complex_seafl_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_hard_complex_seafl_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.189" maxx="-69.832" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772328.255" maxx="336319.712" maxy="958693.207"/> <Style> <Name>MORIS.OM_HARD_COMPLEX_SEAFL_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HARD_COMPLEX_SEAFL_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HARD_COMPLEX_SEAFL_POLY</Name> <Title>Hard/Complex Seafloor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_hard_complex_seafl_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_hard_complex_seafl_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.189" maxx="-69.832" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772328.255" maxx="336319.712" maxy="958693.207"/> <Style> <Name>MORIS.OM_HARD_COMPLEX_SEAFL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HARD_COMPLEX_SEAFL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HIGH_COMM_FISHING_IDS_POLY</Name> <Title>High Effort and Value Commercial Fishing (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_high_comm_fishing_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_high_comm_fishing_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.992" miny="41.339" maxx="-69.904" maxy="42.744"/> <BoundingBox SRS="EPSG:26986" minx="242530.0" miny="788877.0" maxx="330721.667" maxy="943877.0"/> <Style> <Name>MORIS.OM_HIGH_COMM_FISHING_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HIGH_COMM_FISHING_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HIGH_COMM_FISHING_POLY</Name> <Title>High Effort and Value Commercial Fishing</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_high_comm_fishing_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_high_comm_fishing_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.992" miny="41.339" maxx="-69.904" maxy="42.744"/> <BoundingBox SRS="EPSG:26986" minx="242530.0" miny="788877.0" maxx="330721.667" maxy="943877.0"/> <Style> <Name>MORIS.OM_HIGH_COMM_FISHING_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HIGH_COMM_FISHING_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HULL_PROJECT_POLY</Name> <Title>Hull Project</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_hull_project_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_hull_project_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.879" miny="42.277" maxx="-70.823" maxy="42.318"/> <BoundingBox SRS="EPSG:26986" minx="251214.974" miny="892016.434" maxx="255787.251" maxy="896588.711"/> <Style> <Name>MORIS.OM_HULL_PROJECT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HULL_PROJECT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HUMPBACK_CORE_HAB_IDS_POLY</Name> <Title>Humpback Whale Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_humpback_core_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_humpback_core_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.669" miny="41.611" maxx="-69.837" maxy="42.601"/> <BoundingBox SRS="EPSG:26986" minx="269280.0" miny="819127.0" maxx="336460.465" maxy="928127.0"/> <Style> <Name>MORIS.OM_HUMPBACK_CORE_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HUMPBACK_CORE_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HUMPBACK_CORE_HAB_POLY</Name> <Title>Humpback Whale Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_humpback_core_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_humpback_core_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.669" miny="41.611" maxx="-69.837" maxy="42.601"/> <BoundingBox SRS="EPSG:26986" minx="269280.0" miny="819127.0" maxx="336460.465" maxy="928127.0"/> <Style> <Name>MORIS.OM_HUMPBACK_CORE_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HUMPBACK_CORE_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_HUMPBACK_WHALES_POLY</Name> <Title>Humpback Whales in the Southern Gulf of Maine - Interpolation of Sightings per Unit Effort (Quantile)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_humpback_whales_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_humpback_whales_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.011" miny="40.913" maxx="-66.829" maxy="43.576"/> <BoundingBox SRS="EPSG:26986" minx="241125.86" miny="750293.307" maxx="577739.945" maxy="1036279.781"/> <Style> <Name>MORIS.OM_HUMPBACK_WHALES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_HUMPBACK_WHALES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_IMP_FISH_RES_AREAS_IDS_POLY</Name> <Title>Important Fish Resource Areas (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_imp_fish_res_areas_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_imp_fish_res_areas_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.02" miny="41.192" maxx="-69.961" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="240280.0" miny="772377.0" maxx="325780.0" maxy="958627.0"/> <Style> <Name>MORIS.OM_IMP_FISH_RES_AREAS_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_IMP_FISH_RES_AREAS_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_IMP_FISH_RES_AREAS_POLY</Name> <Title>Important Fish Resource Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_imp_fish_res_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_imp_fish_res_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.02" miny="41.192" maxx="-69.961" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="240280.0" miny="772377.0" maxx="325780.0" maxy="958627.0"/> <Style> <Name>MORIS.OM_IMP_FISH_RES_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_IMP_FISH_RES_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_INACTIVE_DISPOSAL_SITE_POLY</Name> <Title>Inactive Disposal Sites in the Coastal Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_inactive_disposal_site_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_inactive_disposal_site_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.1" miny="41.081" maxx="-69.992" maxy="43.003"/> <BoundingBox SRS="EPSG:26986" minx="233584.968" miny="760107.295" maxx="322983.123" maxy="972582.815"/> <Style> <Name>MORIS.OM_INACTIVE_DISPOSAL_SITE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_INACTIVE_DISPOSAL_SITE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_INTERTIDAL_FLATS_IDS_POLY</Name> <Title>Intertidal Flats (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_intertidal_flats_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_intertidal_flats_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.959" miny="41.326" maxx="-69.967" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="245280.0" miny="787377.0" maxx="326120.332" maxy="909943.834"/> <Style> <Name>MORIS.OM_INTERTIDAL_FLATS_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_INTERTIDAL_FLATS_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_INTERTIDAL_FLATS_POLY</Name> <Title>Intertidal Flats</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_intertidal_flats_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_intertidal_flats_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.959" miny="41.326" maxx="-69.967" maxy="42.439"/> <BoundingBox SRS="EPSG:26986" minx="245280.0" miny="787377.0" maxx="326120.332" maxy="909943.834"/> <Style> <Name>MORIS.OM_INTERTIDAL_FLATS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_INTERTIDAL_FLATS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LAND_USE_LAND_COVER_POLY</Name> <Title>Land Use and Land Cover in the Coastal Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_land_use_land_cover_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_land_use_land_cover_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.129" miny="41.237" maxx="-69.899" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="231118.332" miny="777508.69" maxx="330872.358" maxy="958152.844"/> <Style> <Name>MORIS.OM_LAND_USE_LAND_COVER_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LAND_USE_LAND_COVER_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LEACHS_SP_IMP_HAB_IDS_POLY</Name> <Title>Leachs Storm-Petrel Important Nesting Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_leachs_sp_imp_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_leachs_sp_imp_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.936" miny="41.244" maxx="-70.79" maxy="41.461"/> <BoundingBox SRS="EPSG:26986" minx="247280.0" miny="777377.0" maxx="259280.0" maxy="801377.0"/> <Style> <Name>MORIS.OM_LEACHS_SP_IMP_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LEACHS_SP_IMP_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LEACHS_SP_IMP_HAB_POLY</Name> <Title>Leachs Storm-Petrel Important Nesting Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_leachs_sp_imp_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_leachs_sp_imp_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.936" miny="41.244" maxx="-70.79" maxy="41.461"/> <BoundingBox SRS="EPSG:26986" minx="247280.0" miny="777377.0" maxx="259280.0" maxy="801377.0"/> <Style> <Name>MORIS.OM_LEACHS_SP_IMP_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LEACHS_SP_IMP_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LEACHS_STORM_PETREL_POLY</Name> <Title>Leachs Storm-Petrels</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_leachs_storm_petrel_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_leachs_storm_petrel_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.934" miny="41.244" maxx="-70.793" maxy="41.46"/> <BoundingBox SRS="EPSG:26986" minx="247416.679" miny="777381.703" maxx="259071.783" maxy="801266.069"/> <Style> <Name>MORIS.OM_LEACHS_STORM_PETREL_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LEACHS_STORM_PETREL_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LTDU_CORE_HAB_IDS_POLY</Name> <Title>Long-tailed Duck Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_ltdu_core_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_ltdu_core_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.355" miny="41.189" maxx="-69.972" maxy="41.447"/> <BoundingBox SRS="EPSG:26986" minx="296030.0" miny="772153.459" maxx="327702.822" maxy="800279.013"/> <Style> <Name>MORIS.OM_LTDU_CORE_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LTDU_CORE_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_LTDU_CORE_HAB_POLY</Name> <Title>Long-tailed Duck Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_ltdu_core_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_ltdu_core_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.355" miny="41.189" maxx="-69.972" maxy="41.447"/> <BoundingBox SRS="EPSG:26986" minx="296030.0" miny="772153.459" maxx="327702.822" maxy="800279.013"/> <Style> <Name>MORIS.OM_LTDU_CORE_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_LTDU_CORE_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_MAC_AVIATION_BUFFERS_POLY</Name> <Title>Massachusetts Aeronautics Commission (MAC) Aviation Buffers</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_mac_aviation_buffers_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_mac_aviation_buffers_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.067" miny="41.224" maxx="-69.923" maxy="42.824"/> <BoundingBox SRS="EPSG:26986" minx="236334.083" miny="776091.994" maxx="329009.444" maxy="952735.318"/> <Style> <Name>MORIS.OM_MAC_AVIATION_BUFFERS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_MAC_AVIATION_BUFFERS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_MULTI_USE_AREA_IDS_POLY</Name> <Title>Multi-Use Area (ocean management) (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_multi_use_area_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_multi_use_area_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.853" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="334606.804" maxy="958708.483"/> <Style> <Name>MORIS.OM_MULTI_USE_AREA_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_MULTI_USE_AREA_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_MULTI_USE_AREA_POLY</Name> <Title>Multi-Use Area (ocean management)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_multi_use_area_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_multi_use_area_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.853" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="334606.804" maxy="958708.483"/> <Style> <Name>MORIS.OM_MULTI_USE_AREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_MULTI_USE_AREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_MUNICIPALITIES_ADJ_PA_POLY</Name> <Title>Municipalities Adjacent to the Massachusetts Ocean Management Planning Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_municipalities_adj_pa_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_municipalities_adj_pa_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.196" miny="41.237" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="225473.614" miny="777514.311" maxx="330846.094" maxy="959747.441"/> <Style> <Name>MORIS.OM_MUNICIPALITIES_ADJ_PA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_MUNICIPALITIES_ADJ_PA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_NATL_REGISTER_HIS_PLACES_PT</Name> <Title>National Register of Historic Places in the Coastal Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_natl_register_his_places_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_natl_register_his_places_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.183" miny="41.282" maxx="-69.9" maxy="42.859"/> <BoundingBox SRS="EPSG:26986" minx="226537.627" miny="782559.874" maxx="330752.067" maxy="956496.183"/> <Style> <Name>MORIS.OM_NATL_REGISTER_HIS_PLACES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_NATL_REGISTER_HIS_PLACES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_NEARSHORE_BOUND_ARC</Name> <Title>Nearshore Ocean Management Planning Area Boundary (NOMPAB) - Commonwealth of Massachusetts</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_nearshore_bound_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_nearshore_bound_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.233" maxx="-69.893" maxy="42.874"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="777065.275" maxx="331326.912" maxy="958205.313"/> <Style> <Name>MORIS.OM_NEARSHORE_BOUND_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_NEARSHORE_BOUND_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_NORTH_ATLANTIC_RIGHT_W_POLY</Name> <Title>North Atlantic Right Whale Interpolation of Sightings-per-Unit-Effort (SPUE) in the Southern Gulf of Maine</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_north_atlantic_right_w_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_north_atlantic_right_w_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.011" miny="40.913" maxx="-66.829" maxy="43.576"/> <BoundingBox SRS="EPSG:26986" minx="241125.86" miny="750293.307" maxx="577739.945" maxy="1036279.781"/> <Style> <Name>MORIS.OM_NORTH_ATLANTIC_RIGHT_W_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_NORTH_ATLANTIC_RIGHT_W_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_N_ATL_RIGHT_W_CORE_IDS_POLY</Name> <Title>North Atlantic Right Whale Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_n_atl_right_w_core_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_n_atl_right_w_core_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.393" miny="41.608" maxx="-69.855" maxy="42.132"/> <BoundingBox SRS="EPSG:26986" minx="292280.0" miny="818877.0" maxx="336045.361" maxy="876377.0"/> <Style> <Name>MORIS.OM_N_ATL_RIGHT_W_CORE_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_N_ATL_RIGHT_W_CORE_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_N_ATL_RIGHT_W_CORE_POLY</Name> <Title>North Atlantic Right Whale Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_n_atl_right_w_core_poly.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_n_atl_right_w_core_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.393" miny="41.608" maxx="-69.855" maxy="42.132"/> <BoundingBox SRS="EPSG:26986" minx="292280.0" miny="818877.0" maxx="336045.361" maxy="876377.0"/> <Style> <Name>MORIS.OM_N_ATL_RIGHT_W_CORE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_N_ATL_RIGHT_W_CORE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ONE_MI_FROM_SHORELINE_POLY</Name> <Title>One Mile from Inhabited Shoreline</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_one_mi_from_shoreline_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_one_mi_from_shoreline_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.223" maxx="-69.88" maxy="42.875"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="776011.594" maxx="332380.627" maxy="958289.444"/> <Style> <Name>MORIS.OM_ONE_MI_FROM_SHORELINE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ONE_MI_FROM_SHORELINE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PILOT_BOARDING_AREAS_POLY</Name> <Title>Pilot Boarding Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_pilot_boarding_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_pilot_boarding_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.961" miny="41.335" maxx="-70.16" maxy="42.577"/> <BoundingBox SRS="EPSG:26986" minx="245105.097" miny="788096.63" maxx="310005.828" maxy="925272.885"/> <Style> <Name>MORIS.OM_PILOT_BOARDING_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PILOT_BOARDING_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PLANNING_AREA_IDS_POLY</Name> <Title>Massachusetts Ocean Management Planning Area Grid</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_planning_area_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_planning_area_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.83" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_PLANNING_AREA_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PLANNING_AREA_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PLANNING_AREA_POLY</Name> <Title>Massachusetts Ocean Management Planning Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_planning_area_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_planning_area_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.83" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_PLANNING_AREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PLANNING_AREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_POTENTIALLY_SUIT_DEEPW_POLY</Name> <Title>Areas Potentially Suitable for Deepwater Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_potentially_suit_deepw_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_potentially_suit_deepw_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.235" miny="40.828" maxx="-69.439" maxy="41.68"/> <BoundingBox SRS="EPSG:26986" minx="222393.459" miny="732985.506" maxx="371600.422" maxy="825583.844"/> <Style> <Name>MORIS.OM_POTENTIALLY_SUIT_DEEPW_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_POTENTIALLY_SUIT_DEEPW_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_POTENTIALLY_SUIT_FED_POLY</Name> <Title>Potentially Suitable Locations in Federal Waters</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_potentially_suit_fed_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_potentially_suit_fed_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124" miny="41.13" maxx="-70.713" maxy="41.39"/> <BoundingBox SRS="EPSG:26986" minx="231574.705" miny="764781.243" maxx="265860.449" maxy="793373.965"/> <Style> <Name>MORIS.OM_POTENTIALLY_SUIT_FED_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_POTENTIALLY_SUIT_FED_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_POTENTIAL_TIDAL_RES_POLY</Name> <Title>Potential Tidal Resources</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_potential_tidal_res_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_potential_tidal_res_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.671" miny="41.189" maxx="-69.888" maxy="41.57"/> <BoundingBox SRS="EPSG:26986" minx="269526.533" miny="772295.161" maxx="334453.835" maxy="813627.109"/> <Style> <Name>MORIS.OM_POTENTIAL_TIDAL_RES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_POTENTIAL_TIDAL_RES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PRECAUTIONARY_AREAS_POLY</Name> <Title>Precautionary Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_precautionary_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_precautionary_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.928" miny="41.739" maxx="-70.359" maxy="42.482"/> <BoundingBox SRS="EPSG:26986" minx="247610.875" miny="832711.934" maxx="293824.636" maxy="914792.446"/> <Style> <Name>MORIS.OM_PRECAUTIONARY_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PRECAUTIONARY_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROHIBITED_AREA_POLY</Name> <Title>Prohibited Area (ocean management)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_prohibited_area_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_prohibited_area_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.322" miny="41.487" maxx="-69.849" maxy="42.135"/> <BoundingBox SRS="EPSG:26986" minx="298335.306" miny="805405.374" maxx="336459.04" maxy="876752.239"/> <Style> <Name>MORIS.OM_PROHIBITED_AREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROHIBITED_AREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROPOSED_MREC_AREA_POLY</Name> <Title>Proposed New England Marine Renewable Energy Center (MREC) Test Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_proposed_mrec_area_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_proposed_mrec_area_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.495" miny="40.63" maxx="-70.151" maxy="41.403"/> <BoundingBox SRS="EPSG:26986" minx="285021.462" miny="709784.208" maxx="312833.279" maxy="795264.843"/> <Style> <Name>MORIS.OM_PROPOSED_MREC_AREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROPOSED_MREC_AREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROPOSED_SCREEN_FEASIB_POLY</Name> <Title>Areas Proposed for Screening and Feasibility Analysis</Title> <Abstract>http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_proposed_screen_feasib_poly.shp.xml</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_proposed_screen_feasib_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_proposed_screen_feasib_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124" miny="41.13" maxx="-70.713" maxy="41.39"/> <BoundingBox SRS="EPSG:26986" minx="231574.705" miny="764781.243" maxx="265860.449" maxy="793373.965"/> <Style> <Name>MORIS.OM_PROPOSED_SCREEN_FEASIB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROPOSED_SCREEN_FEASIB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROPOSED_TIDAL_EN_PROJ_POLY</Name> <Title>Proposed Tidal Energy Project Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_proposed_tidal_en_proj_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_proposed_tidal_en_proj_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.722" miny="41.32" maxx="-70.349" maxy="41.488"/> <BoundingBox SRS="EPSG:26986" minx="265153.529" miny="786194.891" maxx="296098.124" maxy="804546.102"/> <Style> <Name>MORIS.OM_PROPOSED_TIDAL_EN_PROJ_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROPOSED_TIDAL_EN_PROJ_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROVISIONAL_AREA_IDS_POLY</Name> <Title>Provisional Area (ocean management) (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_provisional_area_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_provisional_area_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.773" miny="41.916" maxx="-70.337" maxy="42.866"/> <BoundingBox SRS="EPSG:26986" minx="260280.0" miny="852377.0" maxx="295030.0" maxy="957566.807"/> <Style> <Name>MORIS.OM_PROVISIONAL_AREA_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROVISIONAL_AREA_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PROVISIONAL_AREA_POLY</Name> <Title>Provisional Area (ocean management)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_provisional_area_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_provisional_area_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.773" miny="41.916" maxx="-70.337" maxy="42.866"/> <BoundingBox SRS="EPSG:26986" minx="260280.0" miny="852377.0" maxx="295030.0" maxy="957566.807"/> <Style> <Name>MORIS.OM_PROVISIONAL_AREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PROVISIONAL_AREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_PUBLIC_OPEN_SPACES_POLY</Name> <Title>Public Open Space with Views of the Massachusetts Ocean Management Planning Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_public_open_spaces_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_public_open_spaces_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124" miny="41.238" maxx="-69.9" maxy="42.873"/> <BoundingBox SRS="EPSG:26986" minx="231517.368" miny="777614.941" maxx="330767.824" maxy="958162.441"/> <Style> <Name>MORIS.OM_PUBLIC_OPEN_SPACES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_PUBLIC_OPEN_SPACES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_REC_FISHING_MMTA_POLY</Name> <Title>Recreational Fishing Areas Identified by a Massachusetts Marine Trades Association Survey of Fishermen</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_rec_fishing_mmta_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_rec_fishing_mmta_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.116" miny="41.187" maxx="-69.834" maxy="42.738"/> <BoundingBox SRS="EPSG:26986" minx="232211.287" miny="772067.487" maxx="336458.561" maxy="943088.008"/> <Style> <Name>MORIS.OM_REC_FISHING_MMTA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_REC_FISHING_MMTA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_REGIONAL_PLANNING_AGEN_POLY</Name> <Title>Regional Planning Agencies</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_regional_planning_agen_poly.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_regional_planning_agen_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.662" miny="41.237" maxx="-69.898" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="186777.66" miny="777514.31" maxx="330846.09" maxy="959747.44"/> <Style> <Name>MORIS.OM_REGIONAL_PLANNING_AGEN_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_REGIONAL_PLANNING_AGEN_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ROSEATE_TERN_BR_ST_POLY</Name> <Title>Roseate Tern Breeding and Staging Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_roseate_tern_br_st_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_roseate_tern_br_st_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.93" miny="41.246" maxx="-69.913" maxy="42.093"/> <BoundingBox SRS="EPSG:26986" minx="247747.362" miny="778495.486" maxx="331282.686" maxy="871607.273"/> <Style> <Name>MORIS.OM_ROSEATE_TERN_BR_ST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ROSEATE_TERN_BR_ST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ROSEATE_TERN_CORE_IDS_POLY</Name> <Title>Roseate Tern Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_roseate_tern_core_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_roseate_tern_core_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.966" miny="41.244" maxx="-69.895" maxy="42.094"/> <BoundingBox SRS="EPSG:26986" minx="244780.0" miny="778377.0" maxx="332780.0" maxy="871627.0"/> <Style> <Name>MORIS.OM_ROSEATE_TERN_CORE_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ROSEATE_TERN_CORE_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ROSEATE_TERN_CORE_POLY</Name> <Title>Roseate Tern Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_roseate_tern_core_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_roseate_tern_core_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.966" miny="41.244" maxx="-69.895" maxy="42.094"/> <BoundingBox SRS="EPSG:26986" minx="244780.0" miny="778377.0" maxx="332780.0" maxy="871627.0"/> <Style> <Name>MORIS.OM_ROSEATE_TERN_CORE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ROSEATE_TERN_CORE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_ROSEATE_TERN_FORAGE_POLY</Name> <Title>Roseate Tern Foraging Areas</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_roseate_tern_forage_poly.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_roseate_tern_forage_poly.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.122" miny="41.18" maxx="-69.764" maxy="42.163"/> <BoundingBox SRS="EPSG:26986" minx="231689.456" miny="771401.772" maxx="343492.546" maxy="879227.771"/> <Style> <Name>MORIS.OM_ROSEATE_TERN_FORAGE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_ROSEATE_TERN_FORAGE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SC_TERN_BREED_STAGE_POLY</Name> <Title>Special Concern (Arctic, Least, and Common) Tern Breeding and Staging Sites</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_sc_tern_breed_stage_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_sc_tern_breed_stage_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.226" miny="41.232" maxx="-69.894" maxy="42.816"/> <BoundingBox SRS="EPSG:26986" minx="222970.147" miny="777026.444" maxx="331344.803" maxy="951738.839"/> <Style> <Name>MORIS.OM_SC_TERN_BREED_STAGE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SC_TERN_BREED_STAGE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SC_TERN_CORE_HAB_IDS_POLY</Name> <Title>Special Concern (Arctic, Least, and Common) Tern Core Habitat (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_sc_tern_core_hab_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_sc_tern_core_hab_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.228" miny="41.224" maxx="-69.861" maxy="42.817"/> <BoundingBox SRS="EPSG:26986" minx="222780.0" miny="776127.0" maxx="334030.0" maxy="951877.0"/> <Style> <Name>MORIS.OM_SC_TERN_CORE_HAB_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SC_TERN_CORE_HAB_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SC_TERN_CORE_HAB_POLY</Name> <Title>Special Concern (Arctic, Least, and Common) Tern Core Habitat</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_sc_tern_core_hab_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_sc_tern_core_hab_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.228" miny="41.224" maxx="-69.861" maxy="42.817"/> <BoundingBox SRS="EPSG:26986" minx="222780.0" miny="776127.0" maxx="334030.0" maxy="951877.0"/> <Style> <Name>MORIS.OM_SC_TERN_CORE_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SC_TERN_CORE_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SC_TERN_FORAGE_POLY</Name> <Title>Special Concern (Arctic, Least, and Common) Tern Foraging Areas</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_sc_tern_forage_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_sc_tern_forage_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.233" miny="41.198" maxx="-69.793" maxy="42.877"/> <BoundingBox SRS="EPSG:26986" minx="222400.304" miny="773330.325" maxx="339504.076" maxy="958575.937"/> <Style> <Name>MORIS.OM_SC_TERN_FORAGE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SC_TERN_FORAGE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SEPARATION_ZONE_POLY</Name> <Title>Separation Zone</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_separation_zone_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_separation_zone_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.412" miny="40.439" maxx="-68.93" maxy="42.356"/> <BoundingBox SRS="EPSG:26986" minx="207470.895" miny="690770.261" maxx="411810.669" maxy="900669.011"/> <Style> <Name>MORIS.OM_SEPARATION_ZONE_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SEPARATION_ZONE_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SHIPPING_LANES_POLY</Name> <Title>Shipping Lanes</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_shipping_lanes_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_shipping_lanes_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.435" miny="40.354" maxx="-68.882" maxy="42.55"/> <BoundingBox SRS="EPSG:26986" minx="205556.104" miny="681415.851" maxx="415068.651" maxy="922165.324"/> <Style> <Name>MORIS.OM_SHIPPING_LANES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SHIPPING_LANES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_SURFICIAL_SEDIMENTS_POLY</Name> <Title>Surficial Sediments (in the coastal area)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_surficial_sediments_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_surficial_sediments_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.83" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_SURFICIAL_SEDIMENTS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_SURFICIAL_SEDIMENTS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_VESSEL_MONITORING_SYS_POLY</Name> <Title>Vessel Monitoring System (VMS)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_vessel_monitoring_sys_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_vessel_monitoring_sys_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.124" miny="41.185" maxx="-69.831" maxy="42.815"/> <BoundingBox SRS="EPSG:26986" minx="231530.0" miny="771877.0" maxx="336530.0" maxy="951627.0"/> <Style> <Name>MORIS.OM_VESSEL_MONITORING_SYS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_VESSEL_MONITORING_SYS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_WIND_ENERGY_AREAS_IDS_POLY</Name> <Title>Wind Energy Areas (250-meter grid spacing)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_wind_energy_areas_ids_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_wind_energy_areas_ids_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.035" miny="41.198" maxx="-70.734" maxy="41.432"/> <BoundingBox SRS="EPSG:26986" minx="239030.0" miny="772327.306" maxx="264028.363" maxy="798127.0"/> <Style> <Name>MORIS.OM_WIND_ENERGY_AREAS_IDS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_WIND_ENERGY_AREAS_IDS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_WIND_ENERGY_AREAS_POLY</Name> <Title>Wind Energy Areas (in the coastal area)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_wind_energy_areas_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_wind_energy_areas_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.035" miny="41.198" maxx="-70.734" maxy="41.432"/> <BoundingBox SRS="EPSG:26986" minx="239030.0" miny="772327.306" maxx="264028.363" maxy="798127.0"/> <Style> <Name>MORIS.OM_WIND_ENERGY_AREAS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_WIND_ENERGY_AREAS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OM_WIND_SPEED_POLY</Name> <Title>Wind Speed (in the coastal area)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_om_wind_speed_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_om_wind_speed_poly.shp.xml</Keyword> <Keyword/> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="41.187" maxx="-69.83" maxy="42.878"/> <BoundingBox SRS="EPSG:26986" minx="231764.903" miny="772062.504" maxx="336460.465" maxy="958708.483"/> <Style> <Name>MORIS.OM_WIND_SPEED_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OM_WIND_SPEED_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OSTREA_EDULIS_2008_PT</Name> <Title>Ostrea edulis 2008 Points (European Oyster)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>2008</Keyword> <Keyword>Oyster)</Keyword> <Keyword>(European</Keyword> <Keyword>Ostrea</Keyword> <Keyword>MORIS.OSTREA_EDULIS_2008_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ostrea_edulis_2008_pt.htm</Keyword> <Keyword>Points</Keyword> <Keyword>edulis</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.86" miny="42.545" maxx="-70.86" maxy="42.545"/> <BoundingBox SRS="EPSG:26986" minx="252556.009" miny="921788.963" maxx="252558.009" maxy="921790.963"/> <Style> <Name>MORIS.OSTREA_EDULIS_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OSTREA_EDULIS_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OSTREA_EDULIS_2010_PT</Name> <Title>Ostrea edulis 2010 Points (European Oyster)</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/moris_ostrea_edulis_2010_pt.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ostrea_edulis_2010_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.917" miny="42.269" maxx="-70.917" maxy="42.269"/> <BoundingBox SRS="EPSG:26986" minx="248086.847" miny="891098.933" maxx="248088.847" maxy="891100.933"/> <Style> <Name>MORIS.OSTREA_EDULIS_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OSTREA_EDULIS_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OSTREA_EDULIS_2011_PT</Name> <Title>Ostrea edulis (European Oyster) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ostrea_edulis_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ostrea_edulis_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.882" miny="42.521" maxx="-70.882" maxy="42.521"/> <BoundingBox SRS="EPSG:26986" minx="250795.766" miny="919154.719" maxx="250797.766" maxy="919156.719"/> <Style> <Name>MORIS.OSTREA_EDULIS_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OSTREA_EDULIS_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.OUTFPIPE_ARC</Name> <Title>MWRA Outfall Pipe</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Pipe</Keyword> <Keyword>MORIS.OUTFPIPE_ARC</Keyword> <Keyword>MWRA</Keyword> <Keyword>Outfall</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_outfpipe_arc.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.958" miny="42.279" maxx="-70.78" maxy="42.39"/> <BoundingBox SRS="EPSG:26986" minx="244666.135" miny="892268.352" maxx="259275.61" maxy="904505.258"/> <Style> <Name>MORIS.OUTFPIPE_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.OUTFPIPE_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.PALAEMON_ELEGANS_2011_PT</Name> <Title>Palaemon elegans (European Rock Shrimp) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_palaemon_elegans_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_palaemon_elegans_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.886" miny="42.519" maxx="-70.492" maxy="43.348"/> <BoundingBox SRS="EPSG:26986" minx="250428.216" miny="919155.719" maxx="281775.826" maxy="1010977.176"/> <Style> <Name>MORIS.PALAEMON_ELEGANS_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PALAEMON_ELEGANS_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.PLANAREA_POLY</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Planning Area Outlines</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Atlantic</Keyword> <Keyword>Area</Keyword> <Keyword>Outlines</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_planarea_poly.htm</Keyword> <Keyword>Planning</Keyword> <Keyword>Offshore</Keyword> <Keyword>MORIS.PLANAREA_POLY</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_planarea_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.818" miny="23.675" maxx="-63.428" maxy="44.855"/> <BoundingBox SRS="EPSG:26986" minx="-1025301.103" miny="-1122760.343" maxx="840656.066" maxy="1178417.217"/> <Style> <Name>MORIS.PLANAREA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PLANAREA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.PROTLMT_POLY</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Official Protraction Diagram (OPD) Outlines - Limit</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>(OPD)</Keyword> <Keyword>Atlantic</Keyword> <Keyword>Outlines</Keyword> <Keyword>Diagram</Keyword> <Keyword>MORIS.PROTLMT_POLY</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_protlmtpoly.htm</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>Protraction</Keyword> <Keyword>Offshore</Keyword> <Keyword>Limit</Keyword> <Keyword>Official</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_protlmt_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-88.355" miny="22.514" maxx="-63.398" maxy="45.077"/> <BoundingBox SRS="EPSG:26986" minx="-1146280.292" miny="-1242451.329" maxx="840656.063" maxy="1203555.875"/> <Style> <Name>MORIS.PROTLMT_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PROTLMT_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.PROT_CLP_POLY</Name> <Title>Digital Offshore Cadastre - Atlantic 1983 - Official Protraction Diagram (OPD) Outlines - Clip</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>(OPD)</Keyword> <Keyword>Atlantic</Keyword> <Keyword>MORIS.PROT_CLP_POLY</Keyword> <Keyword>Clip</Keyword> <Keyword>Outlines</Keyword> <Keyword>Diagram</Keyword> <Keyword>-</Keyword> <Keyword>1983</Keyword> <Keyword>Cadastre</Keyword> <Keyword>Protraction</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_prot_clp_poly.htm</Keyword> <Keyword>Offshore</Keyword> <Keyword>Official</Keyword> <Keyword>Digital</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_prot_clp_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.818" miny="23.675" maxx="-63.428" maxy="44.855"/> <BoundingBox SRS="EPSG:26986" minx="-1025301.103" miny="-1122760.343" maxx="840656.066" maxy="1178417.217"/> <Style> <Name>MORIS.PROT_CLP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PROT_CLP_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.PROT_CLP_POLY::RFI_map</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PROT_CLP_POLY"/> </LegendURL> </Style> <Style> <Name>MORIS.PROT_CLP_POLY::Labels</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.PROT_CLP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_12NM_BUFFER_ARC</Name> <Title>12-nautical mile Buffer</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_12nm_buffer_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_12nm_buffer_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.384" miny="41.033" maxx="-69.621" maxy="43.056"/> <BoundingBox SRS="EPSG:26986" minx="209755.672" miny="755275.071" maxx="353085.334" maxy="978424.53"/> <Style> <Name>MORIS.RFI_12NM_BUFFER_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_12NM_BUFFER_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_AIS_GT50_POLY</Name> <Title>Automatic Identification System (AIS): greater than 50 vessels per 250x250-meter grid cell in 2008</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_ais_gt50_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_ais_gt50_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.525" miny="37.769" maxx="-65.493" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="34529.955" miny="406876.943" maxx="691529.955" maxy="959876.943"/> <Style> <Name>MORIS.RFI_AIS_GT50_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_AIS_GT50_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_AREA_OF_INTEREST_LTDU_POLY</Name> <Title>Area of Interest for Long-tailed Ducks</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_area_of_interest_ltdu_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_area_of_interest_ltdu_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.393" miny="40.666" maxx="-69.849" maxy="41.276"/> <BoundingBox SRS="EPSG:26986" minx="293623.065" miny="714213.461" maxx="338343.57" maxy="781316.136"/> <Style> <Name>MORIS.RFI_AREA_OF_INTEREST_LTDU_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_AREA_OF_INTEREST_LTDU_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_BATHYMETRY_RD</Name> <Title>Bathymetry in meters</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>MORIS.RFI_BATHYMETRY_RD</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_bathymetry_rd.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_rfi_bathymetry_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.5" miny="40.818" maxx="-69.603" maxy="43.015"/> <BoundingBox SRS="EPSG:26986" minx="200005.315" miny="731439.583" maxx="354674.721" maxy="973763.08"/> <Style> <Name>MORIS.RFI_BATHYMETRY_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_BATHYMETRY_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_BATHY_CONTOURS_ARC</Name> <Title>Bathymetric Contours (meters)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_bathy_contours_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_bathy_contours_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.5" miny="40.819" maxx="-69.605" maxy="43.009"/> <BoundingBox SRS="EPSG:26986" minx="200005.315" miny="731520.519" maxx="354517.907" maxy="973196.526"/> <Style> <Name>MORIS.RFI_BATHY_CONTOURS_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_BATHY_CONTOURS_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_BOUNDARY_ARC</Name> <Title>RFI Boundary Arc</Title> <Abstract/> <KeywordList> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_boundary_arc.shp.xml</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_boundary_arc.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.058" miny="40.449" maxx="-69.142" maxy="41.336"/> <BoundingBox SRS="EPSG:26986" minx="237480.411" miny="691447.103" maxx="397429.556" maxy="787464.929"/> <Style> <Name>MORIS.RFI_BOUNDARY_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_BOUNDARY_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RFI_VMS_GT25_POLY</Name> <Title>Vessel Monitoring System (VMS): greater than 25 vessels per 250x250-meter grid cell from Sept. 2007 to Aug. 2008</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rfi_vms_gt25_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_rfi_vms_gt25_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.665" miny="39.886" maxx="-67.617" maxy="42.815"/> <BoundingBox SRS="EPSG:26986" minx="186529.955" miny="633126.943" maxx="517779.955" maxy="951626.943"/> <Style> <Name>MORIS.RFI_VMS_GT25_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RFI_VMS_GT25_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RIGHT_WHALE_CRIT_HAB_POLY</Name> <Title>Marine Protected Areas Right Whale Critical Habitat</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Right</Keyword> <Keyword>Marine</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_right_whale_crit_hab_poly.htm</Keyword> <Keyword>MORIS.RIGHT_WHALE_CRIT_HAB_POLY</Keyword> <Keyword>Whale</Keyword> <Keyword>Areas</Keyword> <Keyword>Critical</Keyword> <Keyword>Protected</Keyword> <Keyword>Habitat</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.555" miny="40.932" maxx="-66.78" maxy="42.568"/> <BoundingBox SRS="EPSG:26986" minx="279534.469" miny="752880.808" maxx="587953.879" maxy="924573.683"/> <Style> <Name>MORIS.RIGHT_WHALE_CRIT_HAB_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RIGHT_WHALE_CRIT_HAB_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RI_MA_AMI_ARC</Name> <Title>RI/MA Area of Mutual Interest Boundary</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ri_ma_ami_arc.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ri_ma_ami_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.294" miny="40.951" maxx="-70.823" maxy="41.302"/> <BoundingBox SRS="EPSG:26986" minx="217318.425" miny="744757.509" maxx="256677.315" maxy="783560.588"/> <Style> <Name>MORIS.RI_MA_AMI_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RI_MA_AMI_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RI_SAMP_POLY</Name> <Title>Rhode Island Ocean SAMP Study Area</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_ri_samp_poly.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_ri_samp_poly.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.909" miny="40.91" maxx="-70.844" maxy="41.498"/> <BoundingBox SRS="EPSG:26986" minx="165876.697" miny="740252.147" maxx="254759.149" maxy="805318.196"/> <Style> <Name>MORIS.RI_SAMP_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RI_SAMP_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.RUGGED_RD</Name> <Title>Stellwagen Bank Terrain Ruggedness Analysis</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_rugged_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>RUGGED_RD</Keyword> <Keyword>MORIS.RUGGED_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=13</Keyword> <Keyword>BytesPerPixel=4</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>Bank</Keyword> <Keyword>Terrain</Keyword> <Keyword>Ruggedness</Keyword> <Keyword>Analysis </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_rugged_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.61" miny="42.078" maxx="-70.017" maxy="42.806"/> <BoundingBox SRS="EPSG:26986" minx="273624.611" miny="870728.073" maxx="321321.611" maxy="950964.073"/> <Style> <Name>MORIS.RUGGED_RD::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.RUGGED_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.SHELLFISH_LANDINGS_POLY</Name> <Title>Shellfish Landings MA 1990-2001</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.SHELLFISH_LANDINGS_POLY</Keyword> <Keyword>Landings</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_shellfish_landings_poly.htm</Keyword> <Keyword>Shellfish</Keyword> <Keyword>1990-2001</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.337" miny="41.184" maxx="-69.832" maxy="42.843"/> <BoundingBox SRS="EPSG:26986" minx="213657.539" miny="771781.313" maxx="336337.875" maxy="954720.937"/> <Style> <Name>MORIS.SHELLFISH_LANDINGS_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.SHELLFISH_LANDINGS_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.SHIPPINGLANES_POLY</Name> <Title>Shipping Lanes</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_shipping_lanes_poly.htm</Keyword> <Keyword>Lanes</Keyword> <Keyword>Shipping</Keyword> <Keyword>MORIS.SHIPPINGLANES_POLY</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.187" miny="39.673" maxx="-66.157" maxy="44.952"/> <BoundingBox SRS="EPSG:26986" minx="-10767.852" miny="614716.228" maxx="440523.232" maxy="1041722.515"/> <Style> <Name>MORIS.SHIPPINGLANES_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.SHIPPINGLANES_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.SLA_ARC</Name> <Title>Digital Offshore Cadastre (DOC) - Atlantic83 - Submerged Lands Act (SLA) Boundary Line</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Act</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_sla_arc.htm</Keyword> <Keyword>(SLA)</Keyword> <Keyword>-</Keyword> <Keyword>Cadastre</Keyword> <Keyword>(DOC)</Keyword> <Keyword>Boundary</Keyword> <Keyword>Submerged</Keyword> <Keyword>Offshore</Keyword> <Keyword>Atlantic83</Keyword> <Keyword>Line</Keyword> <Keyword>MORIS.SLA_ARC</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Lands</Keyword> <Keyword>Digital</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_sla_arc.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-86.65" miny="24.276" maxx="-66.912" maxy="44.849"/> <BoundingBox SRS="EPSG:26986" minx="-1011579.797" miny="-1054310.389" maxx="563362.338" maxy="1178417.215"/> <Style> <Name>MORIS.SLA_ARC::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.SLA_ARC"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.STRIPEDBASS_HARVEST_POLY</Name> <Title>Striped Bass Landings MA 1990-2001</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_stripedbass_harvest_poly.htm</Keyword> <Keyword>MORIS.STRIPEDBASS_HARVEST_POLY</Keyword> <Keyword>Landings</Keyword> <Keyword>Striped</Keyword> <Keyword>1990-2001</Keyword> <Keyword>MA</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Bass</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.708" miny="39.683" maxx="-65.339" maxy="44.115"/> <BoundingBox SRS="EPSG:26986" minx="183358.328" miny="620403.937" maxx="694348.5" maxy="1096052.125"/> <Style> <Name>MORIS.STRIPEDBASS_HARVEST_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.STRIPEDBASS_HARVEST_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.STYELA_CLAVA_2008_PT</Name> <Title>Styela clava 2008 Points (Club Tunicate)</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.STYELA_CLAVA_2008_PT</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>Styela</Keyword> <Keyword>clava</Keyword> <Keyword>2008</Keyword> <Keyword>Points</Keyword> <Keyword>(Club</Keyword> <Keyword>Tunicate)</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_styela_clava_2008_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.06500521471929" miny="41.57807701915919" maxx="-70.1248576367508" maxy="43.116930546816924"/> <BoundingBox SRS="EPSG:26986" minx="236273.403800003" miny="815087.747099999" maxx="311936.10980000306" maxy="985237.3022000011"/> <Style> <Name>MORIS.STYELA_CLAVA_2008_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.STYELA_CLAVA_2008_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.STYELA_CLAVA_2009_PT</Name> <Title>Styela clava 2009 Points (Club Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>Styela clava</Keyword> <Keyword>Club Tunicate</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_styela_clava_2009_pt.htm</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.381" maxx="-70.245" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="302923.277" maxy="934128.244"/> <Style> <Name>MORIS.STYELA_CLAVA_2009_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.STYELA_CLAVA_2009_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.STYELA_CLAVA_2010_PT</Name> <Title>Styela clava 2010 Points (Club Tunicate)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl= http://maps.massgis.state.ma.us/czm/moris/metadata/moris_styela_clava_2010_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_styela_clava_2010_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.17" maxy="42.707"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="939584.9"/> <Style> <Name>MORIS.STYELA_CLAVA_2010_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.STYELA_CLAVA_2010_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.STYELA_CLAVA_2011_PT</Name> <Title>Styela clava (Club Tunicate) 2011</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_styela_clava_2011_pt.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/moris_styela_clava_2011_pt.shp.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.518" miny="41.38" maxx="-70.149" maxy="43.656"/> <BoundingBox SRS="EPSG:26986" minx="198555.996" miny="793066.031" maxx="308988.384" maxy="1045008.395"/> <Style> <Name>MORIS.STYELA_CLAVA_2011_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.STYELA_CLAVA_2011_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.SUNILLUM_RD</Name> <Title>Stellwagen Bank Sun Illuminated Topographic Imagery</Title> <Abstract/> <KeywordList> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=9.9999805</Keyword> <Keyword>BytesPerPixel=2</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_sunillum_rd.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>MORIS.SUNILLUM_RD</Keyword> <Keyword>MORIS.SUNILLUM_RD</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>Stellwagen</Keyword> <Keyword>Bank</Keyword> <Keyword>Sun</Keyword> <Keyword>Illuminated</Keyword> <Keyword>Topographic</Keyword> <Keyword>Imagery</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_moris_sunillum_rd.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.61" miny="42.078" maxx="-70.017" maxy="42.806"/> <BoundingBox SRS="EPSG:26986" minx="273633.407" miny="870732.768" maxx="321313.314" maxy="950962.611"/> <Style> <Name>MORIS.SUNILLUM_RD::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.SUNILLUM_RD"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.TIDAL_CURRENTS_GT_3KNOTS_PT</Name> <Title>Tidal Currents Greater Than 3 Knots</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>3</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_tidal_currents_gt_3knots_pt.htm</Keyword> <Keyword>Currents</Keyword> <Keyword>Tidal</Keyword> <Keyword>Than</Keyword> <Keyword>Knots</Keyword> <Keyword>Greater</Keyword> <Keyword>MORIS.TIDAL_CURRENTS_GT_3KNOTS_PT</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.69213487035988" miny="41.348333331992315" maxx="-70.39841451629054" maxy="42.61001897171209"/> <BoundingBox SRS="EPSG:26986" minx="267612.40730000165" miny="789262.0489999814" maxx="290390.23489999876" maxy="929154.3295999861"/> <Style> <Name>MORIS.TIDAL_CURRENTS_GT_3KNOTS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.TIDAL_CURRENTS_GT_3KNOTS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.TIDE_STATIONS_PT</Name> <Title>Tide Gauge Stations</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.TIDE_STATIONS_PT</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_tide_stations_pt.htm</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.08656785627431" miny="41.25055312486226" maxx="-69.72846245374033" maxy="42.83903551036167"/> <BoundingBox SRS="EPSG:26986" minx="234648.78719999464" miny="779296.863899979" maxx="344852.2812000008" maxy="954354.841199991"/> <Style> <Name>MORIS.TIDE_STATIONS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.TIDE_STATIONS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.USCG_BASES_PT</Name> <Title>United States Coast Guard Bases</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MORIS.USCG_BASES_PT</Keyword> <Keyword>Bases</Keyword> <Keyword>Coast</Keyword> <Keyword>Guard</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_uscg_bases_pt.htm</Keyword> <Keyword>States</Keyword> <Keyword>United</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.0602840286403" miny="41.28831404494295" maxx="-69.9221489545682" maxy="42.81209259036266"/> <BoundingBox SRS="EPSG:26986" minx="236831.5456999978" miny="783189.2037999809" maxx="329066.5631999981" maxy="951372.8435999899"/> <Style> <Name>MORIS.USCG_BASES_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.USCG_BASES_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:MORIS.WMA_NHA_POLY</Name> <Title>Wildlife Management Areas/Natural Heritage Areas</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>Management</Keyword> <Keyword>Areas/Natural</Keyword> <Keyword>Wildlife</Keyword> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/czm/moris/metadata/moris_wma_nha_poly.htm</Keyword> <Keyword>Areas</Keyword> <Keyword>Heritage</Keyword> <Keyword>massgis_sde</Keyword> <Keyword>MORIS.WMA_NHA_POLY</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.476" miny="41.239" maxx="-70.008" maxy="42.853"/> <BoundingBox SRS="EPSG:26986" minx="38447.28" miny="778414.88" maxx="322001.88" maxy="955788.51"/> <Style> <Name>MORIS.WMA_NHA_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.WMA_NHA_POLY"/> </LegendURL> </Style> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=MORIS.WMA_NHA_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13006_1</Name> <Title>NOAA Chart West Quoddy Head To New York</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA_13006_1</Keyword> <Keyword>NOAA.NOAA_13006_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=58.44695879</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>West</Keyword> <Keyword>Quoddy</Keyword> <Keyword>Head</Keyword> <Keyword>To</Keyword> <Keyword>New</Keyword> <Keyword>York </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13006_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.639" miny="38.962" maxx="-64.033" maxy="45.129"/> <BoundingBox SRS="EPSG:26986" minx="-47316.656" miny="547003.226" maxx="789526.9" maxy="1211019.125"/> <Style> <Name>NOAA.NOAA_13006_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13006_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13009_1</Name> <Title>NOAA Chart Gulf Of Maine And Georges Bank</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA_13009_1</Keyword> <Keyword>NOAA.NOAA_13009_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>S-IMAGERY</Keyword> <Keyword>UnitsPerPixel=43.40083356</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Gulf</Keyword> <Keyword>Of</Keyword> <Keyword>Maine</Keyword> <Keyword>And</Keyword> <Keyword>Georges</Keyword> <Keyword>Bank </Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13009_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.238" miny="39.709" maxx="-63.916" maxy="44.424"/> <BoundingBox SRS="EPSG:26986" minx="222385.608" miny="631679.435" maxx="805996.617" maxy="1130485.215"/> <Style> <Name>NOAA.NOAA_13009_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13009_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13200_1</Name> <Title>NOAA Chart Georges Bank And Nantucket Shoals</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13200_1</Keyword> <Keyword>NOAA.NOAA_13200_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Georges</Keyword> <Keyword>Bank</Keyword> <Keyword>And</Keyword> <Keyword>Nantucket</Keyword> <Keyword>Shoals</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=33.76536797</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13200_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.233" miny="39.381" maxx="-65.277" maxy="42.931"/> <BoundingBox SRS="EPSG:26986" minx="222982.516" miny="587709.338" maxx="708899.927" maxy="964530.845"/> <Style> <Name>NOAA.NOAA_13200_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13200_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13203_1</Name> <Title>NOAA Chart Georges Bank Western Part</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13203_1</Keyword> <Keyword>NOAA.NOAA_13203_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Georges</Keyword> <Keyword>Bank</Keyword> <Keyword>Western</Keyword> <Keyword>Part</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=19.35323049</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13203_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-69.794" miny="40.013" maxx="-67.263" maxy="42.544"/> <BoundingBox SRS="EPSG:26986" minx="345592.696" miny="648715.973" maxx="548259.726" maxy="923028.662"/> <Style> <Name>NOAA.NOAA_13203_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13203_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13204_1</Name> <Title>NOAA Chart Georges Bank Eastern Part</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13204_1</Keyword> <Keyword>NOAA.NOAA_13204_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Georges</Keyword> <Keyword>Bank</Keyword> <Keyword>Eastern</Keyword> <Keyword>Part</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=19.32279622</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13204_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-68.038" miny="39.963" maxx="-65.382" maxy="42.433"/> <BoundingBox SRS="EPSG:26986" minx="495434.29" miny="652271.691" maxx="703792.002" maxy="915390.207"/> <Style> <Name>NOAA.NOAA_13204_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13204_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13218_1</Name> <Title>NOAA Chart Martha's Vineyard to Block Island</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13218_1</Keyword> <Keyword>NOAA.NOAA_13218_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Martha's</Keyword> <Keyword>Vineyard</Keyword> <Keyword>to</Keyword> <Keyword>Block</Keyword> <Keyword>Island</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.9184603</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13218_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.606" miny="40.975" maxx="-70.558" maxy="41.66"/> <BoundingBox SRS="EPSG:26986" minx="191177.513" miny="747686.818" maxx="278481.563" maxy="823347.099"/> <Style> <Name>NOAA.NOAA_13218_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13218_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13221_1</Name> <Title>NOAA Chart Narragansett Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13221_1</Keyword> <Keyword>NOAA.NOAA_13221_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Narragansett</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.5511271</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13221_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.49" miny="41.326" maxx="-71.087" maxy="41.833"/> <BoundingBox SRS="EPSG:26986" minx="200803.158" miny="786317.316" maxx="234283.185" maxy="842510.352"/> <Style> <Name>NOAA.NOAA_13221_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13221_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13224_1</Name> <Title>NOAA Chart Providence River and Head of Narragansett Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13224_1</Keyword> <Keyword>NOAA.NOAA_13224_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Providence</Keyword> <Keyword>River</Keyword> <Keyword>and</Keyword> <Keyword>Head</Keyword> <Keyword>of</Keyword> <Keyword>Narragansett</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7634899</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13224_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.459" miny="41.604" maxx="-71.249" maxy="41.836"/> <BoundingBox SRS="EPSG:26986" minx="203385.904" miny="817170.967" maxx="220830.346" maxy="842805.055"/> <Style> <Name>NOAA.NOAA_13224_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13224_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13224_2</Name> <Title>NOAA Chart Seekonk River, Cold Spring Point to Pawtucket</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13224_2</Keyword> <Keyword>NOAA.NOAA_13224_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Seekonk</Keyword> <Keyword>River</Keyword> <Keyword>Cold</Keyword> <Keyword>Spring</Keyword> <Keyword>Point</Keyword> <Keyword>to</Keyword> <Keyword>Pawtucket</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7806228</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13224_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.397" miny="41.814" maxx="-71.352" maxy="41.881"/> <BoundingBox SRS="EPSG:26986" minx="208535.09" miny="840428.286" maxx="212320.694" maxy="847881.973"/> <Style> <Name>NOAA.NOAA_13224_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13224_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13226_1</Name> <Title>NOAA Chart Mount Hope Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13226_1</Keyword> <Keyword>NOAA.NOAA_13226_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Mount</Keyword> <Keyword>Hope</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7622645</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13226_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.292" miny="41.594" maxx="-71.092" maxy="41.81"/> <BoundingBox SRS="EPSG:26986" minx="217332.402" miny="816034.066" maxx="233873.017" maxy="839988.528"/> <Style> <Name>NOAA.NOAA_13226_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13226_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13226_2</Name> <Title>NOAA Chart Continuation of Taunton River</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13226_2</Keyword> <Keyword>NOAA.NOAA_13226_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Continuation</Keyword> <Keyword>of</Keyword> <Keyword>Taunton</Keyword> <Keyword>River</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.8048056</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13226_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.137" miny="41.765" maxx="-71.068" maxy="41.923"/> <BoundingBox SRS="EPSG:26986" minx="230182.416" miny="835112.635" maxx="235827.848" maxy="852530.814"/> <Style> <Name>NOAA.NOAA_13226_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13226_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13227_1</Name> <Title>NOAA Chart Fall River Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13227_1</Keyword> <Keyword>NOAA.NOAA_13227_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Fall</Keyword> <Keyword>River</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.87882997</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13227_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.2" miny="41.669" maxx="-71.129" maxy="41.742"/> <BoundingBox SRS="EPSG:26986" minx="224943.881" miny="824357.534" maxx="230870.711" maxy="832452.437"/> <Style> <Name>NOAA.NOAA_13227_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13227_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13227_2</Name> <Title>NOAA Chart State Pier</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13227_2</Keyword> <Keyword>NOAA.NOAA_13227_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>State</Keyword> <Keyword>Pier</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.21724551</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13227_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.168" miny="41.702" maxx="-71.161" maxy="41.708"/> <BoundingBox SRS="EPSG:26986" minx="227640.255" miny="828062.311" maxx="228181.63" maxy="828641.705"/> <Style> <Name>NOAA.NOAA_13227_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13227_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13228_1</Name> <Title>NOAA Chart Westport River And Approaches</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13228_1</Keyword> <Keyword>NOAA.NOAA_13228_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Westport</Keyword> <Keyword>River</Keyword> <Keyword>And</Keyword> <Keyword>Approaches</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7586241</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13228_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.161" miny="41.413" maxx="-70.946" maxy="41.629"/> <BoundingBox SRS="EPSG:26986" minx="228323.819" miny="796045.11" maxx="246158.026" maxy="819944.812"/> <Style> <Name>NOAA.NOAA_13228_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13228_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_1</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Barnstable-Chatham)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_1</Keyword> <Keyword>NOAA.NOAA_13229_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Barnstable-Chatham)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.7676352</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.38" miny="41.5" maxx="-69.948" maxy="41.72"/> <BoundingBox SRS="EPSG:26986" minx="293526.453" miny="806685.035" maxx="329126.385" maxy="830637.634"/> <Style> <Name>NOAA.NOAA_13229_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_10</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Dartmouth-Falmouth)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_10</Keyword> <Keyword>NOAA.NOAA_13229_10</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Dartmouth-Falmouth)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.3870319</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_10.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.013" miny="41.485" maxx="-70.621" maxy="41.641"/> <BoundingBox SRS="EPSG:26986" minx="240632.528" miny="804262.643" maxx="273212.388" maxy="821343.445"/> <Style> <Name>NOAA.NOAA_13229_10::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_10"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_11</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (N Buzz Bay)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_11</Keyword> <Keyword>NOAA.NOAA_13229_11</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(N</Keyword> <Keyword>Buzz</Keyword> <Keyword>Bay)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.4304369</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_11.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.843" miny="41.607" maxx="-70.595" maxy="41.76"/> <BoundingBox SRS="EPSG:26986" minx="254763.259" miny="817842.276" maxx="275236.107" maxy="834678.861"/> <Style> <Name>NOAA.NOAA_13229_11::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_11"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_12</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (New Bedford Harbor)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_12</Keyword> <Keyword>NOAA.NOAA_13229_12</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(New</Keyword> <Keyword>Bedford</Keyword> <Keyword>Harbor)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7592508</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_12.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.938" miny="41.606" maxx="-70.864" maxy="41.682"/> <BoundingBox SRS="EPSG:26986" minx="246876.515" miny="817463.375" maxx="252912.504" maxy="825863.797"/> <Style> <Name>NOAA.NOAA_13229_12::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_12"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_13</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Cape Cod Canal)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_13</Keyword> <Keyword>NOAA.NOAA_13229_13</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>Canal)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_13.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.685" miny="41.488" maxx="-70.322" maxy="41.822"/> <BoundingBox SRS="EPSG:26986" minx="268019.058" miny="804864.854" maxx="297863.058" maxy="841652.854"/> <Style> <Name>NOAA.NOAA_13229_13::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_13"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_14</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Inset-Prince Cove)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_14</Keyword> <Keyword>NOAA.NOAA_13229_14</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Inset-Prince</Keyword> <Keyword>Cove)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4.4914761</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_14.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.421" miny="41.634" maxx="-70.396" maxy="41.653"/> <BoundingBox SRS="EPSG:26986" minx="289927.388" miny="820964.654" maxx="291984.484" maxy="823080.139"/> <Style> <Name>NOAA.NOAA_13229_14::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_14"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_3</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Inset-Hyannis Harbor)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_3</Keyword> <Keyword>NOAA.NOAA_13229_3</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Inset-Hyannis</Keyword> <Keyword>Harbor)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7061816</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_3.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.361" miny="41.578" maxx="-70.21" maxy="41.657"/> <BoundingBox SRS="EPSG:26986" minx="295005.301" miny="814985.604" maxx="307457.015" maxy="823565.991"/> <Style> <Name>NOAA.NOAA_13229_3::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_4</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Gosnold-Barnstable)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_4</Keyword> <Keyword>NOAA.NOAA_13229_4</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Gosnold-Barnstable)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=5.8168759</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_4.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.734" miny="41.394" maxx="-70.286" maxy="41.659"/> <BoundingBox SRS="EPSG:26986" minx="264086.384" miny="794424.889" maxx="301128.249" maxy="823480.184"/> <Style> <Name>NOAA.NOAA_13229_4::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_6</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Inset-Woods Hole)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_6</Keyword> <Keyword>NOAA.NOAA_13229_6</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Inset-Woods</Keyword> <Keyword>Hole)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.42759393</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_6.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.701" miny="41.51" maxx="-70.664" maxy="41.53"/> <BoundingBox SRS="EPSG:26986" minx="266719.112" miny="807014.113" maxx="269798.643" maxy="809138.4"/> <Style> <Name>NOAA.NOAA_13229_6::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_6"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_7</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Inset-Robinsons Hole)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_7</Keyword> <Keyword>NOAA.NOAA_13229_7</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Inset-Robinsons</Keyword> <Keyword>Hole)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.0537698</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_7.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.824" miny="41.435" maxx="-70.796" maxy="41.461"/> <BoundingBox SRS="EPSG:26986" minx="256491.701" miny="798512.791" maxx="258846.876" maxy="801419.088"/> <Style> <Name>NOAA.NOAA_13229_7::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_7"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_8</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Inset-Cuttyhunk Harbor)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_8</Keyword> <Keyword>NOAA.NOAA_13229_8</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Inset-Cuttyhunk</Keyword> <Keyword>Harbor)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.0552281</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_8.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.93" miny="41.41" maxx="-70.901" maxy="41.437"/> <BoundingBox SRS="EPSG:26986" minx="247645.831" miny="795746.912" maxx="250031.702" maxy="798711.047"/> <Style> <Name>NOAA.NOAA_13229_8::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_8"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13229_9</Name> <Title>NOAA Chart South Coast of Cape Cod and Buzzards Bay (Gosnold)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13229_9</Keyword> <Keyword>NOAA.NOAA_13229_9</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>South</Keyword> <Keyword>Coast</Keyword> <Keyword>of</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>and</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>(Gosnold)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.3975456</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13229_9.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.054" miny="41.365" maxx="-70.66" maxy="41.521"/> <BoundingBox SRS="EPSG:26986" minx="237348.892" miny="790854.684" maxx="270104.629" maxy="807910.363"/> <Style> <Name>NOAA.NOAA_13229_9::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13229_9"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13230_1</Name> <Title>NOAA Chart Buzzards Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13230_1</Keyword> <Keyword>NOAA.NOAA_13230_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Buzzards</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.5156667</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13230_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.001" miny="41.347" maxx="-70.564" maxy="41.78"/> <BoundingBox SRS="EPSG:26986" minx="241800.109" miny="788923.6" maxx="277849.755" maxy="836768.308"/> <Style> <Name>NOAA.NOAA_13230_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13230_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13230_2</Name> <Title>NOAA Chart Quicks Hole</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13230_2</Keyword> <Keyword>NOAA.NOAA_13230_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Quicks</Keyword> <Keyword>Hole</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7906329</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13230_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.863" miny="41.413" maxx="-70.825" maxy="41.47"/> <BoundingBox SRS="EPSG:26986" minx="253259.952" miny="796107.531" maxx="256357.747" maxy="802372.956"/> <Style> <Name>NOAA.NOAA_13230_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13230_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13232_1</Name> <Title>NOAA Chart New Bedford Harbor and Approaches</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13232_1</Keyword> <Keyword>NOAA.NOAA_13232_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>New</Keyword> <Keyword>Bedford</Keyword> <Keyword>Harbor</Keyword> <Keyword>and</Keyword> <Keyword>Approaches</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7506551</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13232_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.967" miny="41.491" maxx="-70.751" maxy="41.69"/> <BoundingBox SRS="EPSG:26986" minx="244523.324" miny="804784.934" maxx="262383.507" maxy="826820.429"/> <Style> <Name>NOAA.NOAA_13232_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13232_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13232_2</Name> <Title>NOAA Chart Continuation of Apponagansett Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13232_2</Keyword> <Keyword>NOAA.NOAA_13232_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Continuation</Keyword> <Keyword>of</Keyword> <Keyword>Apponagansett</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7688154</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13232_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.973" miny="41.567" maxx="-70.939" maxy="41.606"/> <BoundingBox SRS="EPSG:26986" minx="243977.653" miny="813162.909" maxx="246756.462" maxy="817452.286"/> <Style> <Name>NOAA.NOAA_13232_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13232_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13233_1</Name> <Title>NOAA Chart Marthas Vineyard</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13233_1</Keyword> <Keyword>NOAA.NOAA_13233_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Marthas</Keyword> <Keyword>Vineyard</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.445001</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13233_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.895" miny="41.208" maxx="-70.36" maxy="41.547"/> <BoundingBox SRS="EPSG:26986" minx="250738.444" miny="773697.125" maxx="295110.057" maxy="810968.591"/> <Style> <Name>NOAA.NOAA_13233_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13233_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13233_2</Name> <Title>NOAA Chart Menemsha Pond</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13233_2</Keyword> <Keyword>NOAA.NOAA_13233_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Menemsha</Keyword> <Keyword>Pond</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7863952</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13233_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.792" miny="41.319" maxx="-70.758" maxy="41.365"/> <BoundingBox SRS="EPSG:26986" minx="259307.079" miny="785661.427" maxx="262084.923" maxy="790811.605"/> <Style> <Name>NOAA.NOAA_13233_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13233_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13235_1</Name> <Title>NOAA Chart Woods Hole</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13235_1</Keyword> <Keyword>NOAA.NOAA_13235_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Woods</Keyword> <Keyword>Hole</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.42849584</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13235_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.712" miny="41.496" maxx="-70.642" maxy="41.536"/> <BoundingBox SRS="EPSG:26986" minx="265762.524" miny="805475.111" maxx="271562.644" maxy="809889.903"/> <Style> <Name>NOAA.NOAA_13235_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13235_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13236_1</Name> <Title>NOAA Chart Cape Cod Channel And Approaches</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13236_1</Keyword> <Keyword>NOAA.NOAA_13236_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>Channel</Keyword> <Keyword>And</Keyword> <Keyword>Approaches</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7193317</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13236_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.784" miny="41.614" maxx="-70.515" maxy="41.787"/> <BoundingBox SRS="EPSG:26986" minx="259650.156" miny="818627.048" maxx="281860.482" maxy="837622.225"/> <Style> <Name>NOAA.NOAA_13236_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13236_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13236_2</Name> <Title>NOAA Chart Cape Cod Channel And Approaches</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13236_2</Keyword> <Keyword>NOAA.NOAA_13236_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>Channel</Keyword> <Keyword>And</Keyword> <Keyword>Approaches</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7170767</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13236_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.551" miny="41.745" maxx="-70.475" maxy="41.794"/> <BoundingBox SRS="EPSG:26986" minx="278960.607" miny="833273.351" maxx="285217.635" maxy="838622.045"/> <Style> <Name>NOAA.NOAA_13236_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13236_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13237_1</Name> <Title>NOAA Chart Nantucket Sound And Approaches</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13237_1</Keyword> <Keyword>NOAA.NOAA_13237_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Nantucket</Keyword> <Keyword>Sound</Keyword> <Keyword>And</Keyword> <Keyword>Approaches</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8958634</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13237_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.707" miny="41.055" maxx="-69.626" maxy="41.755"/> <BoundingBox SRS="EPSG:26986" minx="266693.275" miny="757807.723" maxx="355856.788" maxy="834172.513"/> <Style> <Name>NOAA.NOAA_13237_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13237_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13238_1</Name> <Title>NOAA Chart Marthas Vineyard - Eastern Part</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13238_1</Keyword> <Keyword>NOAA.NOAA_13238_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Marthas</Keyword> <Keyword>Vineyard</Keyword> <Keyword>-</Keyword> <Keyword>Eastern</Keyword> <Keyword>Part</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7571698</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13238_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.624" miny="41.314" maxx="-70.418" maxy="41.514"/> <BoundingBox SRS="EPSG:26986" minx="273323.649" miny="785486.69" maxx="290357.654" maxy="807474.157"/> <Style> <Name>NOAA.NOAA_13238_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13238_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13238_2</Name> <Title>NOAA Chart Oak Bluffs Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13238_2</Keyword> <Keyword>NOAA.NOAA_13238_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Oak</Keyword> <Keyword>Bluffs</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.87471706</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13238_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.567" miny="41.45" maxx="-70.548" maxy="41.467"/> <BoundingBox SRS="EPSG:26986" minx="277931.546" miny="800452.289" maxx="279514.784" maxy="802347.801"/> <Style> <Name>NOAA.NOAA_13238_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13238_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13238_4</Name> <Title>NOAA Chart Edgartown Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13238_4</Keyword> <Keyword>NOAA.NOAA_13238_4</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Edgartown</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.88235313</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13238_4.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.518" miny="41.369" maxx="-70.495" maxy="41.393"/> <BoundingBox SRS="EPSG:26986" minx="282183.055" miny="791481.679" maxx="284060.703" maxy="794105.798"/> <Style> <Name>NOAA.NOAA_13238_4::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13238_4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13241_1</Name> <Title>NOAA Chart Nantucket Island</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13241_1</Keyword> <Keyword>NOAA.NOAA_13241_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Nantucket</Keyword> <Keyword>Island</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.4540372</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13241_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.416" miny="41.143" maxx="-69.895" maxy="41.485"/> <BoundingBox SRS="EPSG:26986" minx="290999.867" miny="767093.591" maxx="334037.171" maxy="804449.004"/> <Style> <Name>NOAA.NOAA_13241_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13241_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13242_1</Name> <Title>NOAA Chart Nantucket Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13242_1</Keyword> <Keyword>NOAA.NOAA_13242_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Nantucket</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.87735689</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13242_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.132" miny="41.26" maxx="-70.048" maxy="41.337"/> <BoundingBox SRS="EPSG:26986" minx="314681.167" miny="779894.719" maxx="321508.759" maxy="788320.854"/> <Style> <Name>NOAA.NOAA_13242_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13242_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13244_1</Name> <Title>NOAA Chart Eastern Entrance To Nantucket Sound</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13244_1</Keyword> <Keyword>NOAA.NOAA_13244_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Eastern</Keyword> <Keyword>Entrance</Keyword> <Keyword>To</Keyword> <Keyword>Nantucket</Keyword> <Keyword>Sound</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.4636932</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13244_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.125" miny="41.346" maxx="-69.693" maxy="41.659"/> <BoundingBox SRS="EPSG:26986" minx="315107.924" miny="790005.953" maxx="350482.622" maxy="824171.822"/> <Style> <Name>NOAA.NOAA_13244_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13244_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13246_1</Name> <Title>NOAA Chart Cape Cod Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13246_1</Keyword> <Keyword>NOAA.NOAA_13246_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8630995</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13246_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.778" miny="41.513" maxx="-69.683" maxy="42.198"/> <BoundingBox SRS="EPSG:26986" minx="260296.004" miny="808560.487" maxx="350072.208" maxy="883347.682"/> <Style> <Name>NOAA.NOAA_13246_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13246_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13248_1</Name> <Title>NOAA Chart Chatham Harbor And Pleasant Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13248_1</Keyword> <Keyword>NOAA.NOAA_13248_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Chatham</Keyword> <Keyword>Harbor</Keyword> <Keyword>And</Keyword> <Keyword>Pleasant</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7612347</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13248_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.011" miny="41.578" maxx="-69.803" maxy="41.795"/> <BoundingBox SRS="EPSG:26986" minx="324207.828" miny="815548.552" maxx="341054.038" maxy="839378.057"/> <Style> <Name>NOAA.NOAA_13248_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13248_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13249_1</Name> <Title>NOAA Chart Provincetown Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13249_1</Keyword> <Keyword>NOAA.NOAA_13249_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Provincetown</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7145821</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13249_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.31" miny="41.932" maxx="-70.038" maxy="42.106"/> <BoundingBox SRS="EPSG:26986" minx="298702.373" miny="854525.326" maxx="320907.926" maxy="873534.899"/> <Style> <Name>NOAA.NOAA_13249_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13249_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13250_1</Name> <Title>NOAA Chart Wellfleet Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13250_1</Keyword> <Keyword>NOAA.NOAA_13250_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Wellfleet</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.5075116</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13250_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.241" miny="41.702" maxx="-69.957" maxy="41.983"/> <BoundingBox SRS="EPSG:26986" minx="304778.02" miny="829132.7" maxx="327903.044" maxy="859949.697"/> <Style> <Name>NOAA.NOAA_13250_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13250_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13251_1</Name> <Title>NOAA Chart Barnstable Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13251_1</Keyword> <Keyword>NOAA.NOAA_13251_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Barnstable</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7078803</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13251_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.381" miny="41.668" maxx="-70.168" maxy="41.785"/> <BoundingBox SRS="EPSG:26986" minx="293147.56" miny="825050.654" maxx="310721.649" maxy="837813.644"/> <Style> <Name>NOAA.NOAA_13251_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13251_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13253_1</Name> <Title>NOAA Chart Harbors of Plymouth, Kingston And Duxbury</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>ArcSDE Raster</Keyword> <Keyword>NOAA.NOAA_13253_1</Keyword> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.761051</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>NOAA Chart Harbors of Plymouth, Kingston And Duxbury</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13253_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.745" miny="41.906" maxx="-70.565" maxy="42.103"/> <BoundingBox SRS="EPSG:26986" minx="262637.746" miny="851078.353" maxx="277356.61" maxy="872823.811"/> <Style> <Name>NOAA.NOAA_13253_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13253_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13260_1</Name> <Title>NOAA Chart Bay Of Fundy To Cape Cod</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13260_1</Keyword> <Keyword>NOAA.NOAA_13260_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Bay</Keyword> <Keyword>Of</Keyword> <Keyword>Fundy</Keyword> <Keyword>To</Keyword> <Keyword>Cape</Keyword> <Keyword>Cod</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=32.15647659</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13260_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.207" miny="41.564" maxx="-65.547" maxy="45.045"/> <BoundingBox SRS="EPSG:26986" minx="224344.862" miny="828252.075" maxx="670323.036" maxy="1199530.753"/> <Style> <Name>NOAA.NOAA_13260_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13260_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13267_1</Name> <Title>NOAA Chart Massachusetts Bay</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13267_1</Keyword> <Keyword>NOAA.NOAA_13267_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Massachusetts</Keyword> <Keyword>Bay</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8352463</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13267_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.112" miny="41.963" maxx="-69.984" maxy="42.658"/> <BoundingBox SRS="EPSG:26986" minx="232146.254" miny="858107.023" maxx="324319.551" maxy="934258.503"/> <Style> <Name>NOAA.NOAA_13267_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13267_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13267_2</Name> <Title>NOAA Chart North River</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13267_2</Keyword> <Keyword>NOAA.NOAA_13267_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>North</Keyword> <Keyword>River</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7367121</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13267_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.754" miny="42.119" maxx="-70.683" maxy="42.18"/> <BoundingBox SRS="EPSG:26986" minx="261717.295" miny="874650.93" maxx="267516.177" maxy="881285.17"/> <Style> <Name>NOAA.NOAA_13267_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13267_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13269_1</Name> <Title>NOAA Chart Cohasset And Scituate Harbors</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13269_1</Keyword> <Keyword>NOAA.NOAA_13269_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Cohasset</Keyword> <Keyword>And</Keyword> <Keyword>Scituate</Keyword> <Keyword>Harbors</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.87106429</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13269_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.8" miny="42.183" maxx="-70.691" maxy="42.283"/> <BoundingBox SRS="EPSG:26986" minx="257804.18" miny="881759.333" maxx="266700.359" maxy="892713.837"/> <Style> <Name>NOAA.NOAA_13269_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13269_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13270_1</Name> <Title>NOAA Chart Boston Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13270_1</Keyword> <Keyword>NOAA.NOAA_13270_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=2.1335383</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13270_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.081" miny="42.198" maxx="-70.726" maxy="42.411"/> <BoundingBox SRS="EPSG:26986" minx="234578.65" miny="883398.368" maxx="263705.714" maxy="906809.684"/> <Style> <Name>NOAA.NOAA_13270_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13270_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13272_1</Name> <Title>NOAA Chart Boston Inner Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13272_1</Keyword> <Keyword>NOAA.NOAA_13272_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Boston</Keyword> <Keyword>Inner</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.8539026</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13272_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.086" miny="42.319" maxx="-70.946" maxy="42.404"/> <BoundingBox SRS="EPSG:26986" minx="234126.46" miny="896612.18" maxx="245571.317" maxy="906065.735"/> <Style> <Name>NOAA.NOAA_13272_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13272_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13272_2</Name> <Title>NOAA Chart Mystic River Extension</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13272_2</Keyword> <Keyword>NOAA.NOAA_13272_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Mystic</Keyword> <Keyword>River</Keyword> <Keyword>Extension</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.9879017</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13272_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.121" miny="42.391" maxx="-71.079" maxy="42.421"/> <BoundingBox SRS="EPSG:26986" minx="231198.839" miny="904540.051" maxx="234635.921" maxy="907947.314"/> <Style> <Name>NOAA.NOAA_13272_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13272_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13274_1</Name> <Title>NOAA Chart Portsmouth Harbor to Boston Harbor (Hampton-Rockport)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13274_1</Keyword> <Keyword>NOAA.NOAA_13274_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Portsmouth</Keyword> <Keyword>Harbor</Keyword> <Keyword>to</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>(Hampton-Rockport)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8383815</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13274_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.959" miny="42.613" maxx="-70.583" maxy="42.931"/> <BoundingBox SRS="EPSG:26986" minx="244409.61" miny="929513.535" maxx="274819.892" maxy="964649.139"/> <Style> <Name>NOAA.NOAA_13274_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13274_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13274_2</Name> <Title>NOAA Chart Portsmouth Harbor to Boston Harbor (NH coast)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13274_2</Keyword> <Keyword>NOAA.NOAA_13274_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Portsmouth</Keyword> <Keyword>Harbor</Keyword> <Keyword>to</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>(NH</Keyword> <Keyword>coast)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8561843</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13274_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.893" miny="42.816" maxx="-70.484" maxy="43.133"/> <BoundingBox SRS="EPSG:26986" minx="249611.667" miny="952252.851" maxx="282706.469" maxy="987109.692"/> <Style> <Name>NOAA.NOAA_13274_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13274_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13274_3</Name> <Title>NOAA Chart Merrimack River Extension</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13274_3</Keyword> <Keyword>NOAA.NOAA_13274_3</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Merrimack</Keyword> <Keyword>River</Keyword> <Keyword>Extension</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.1793928</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13274_3.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.12" miny="42.729" maxx="-70.97" maxy="42.822"/> <BoundingBox SRS="EPSG:26986" minx="231085.5" miny="942156.429" maxx="243314.519" maxy="952395.683"/> <Style> <Name>NOAA.NOAA_13274_3::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13274_3"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13274_4</Name> <Title>NOAA Chart Merrimack River Extension</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13274_4</Keyword> <Keyword>NOAA.NOAA_13274_4</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Merrimack</Keyword> <Keyword>River</Keyword> <Keyword>Extension</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=3.7551693</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13274_4.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.042" miny="42.792" maxx="-70.898" maxy="42.85"/> <BoundingBox SRS="EPSG:26986" minx="237458.682" miny="949267.122" maxx="249171.055" maxy="955609.603"/> <Style> <Name>NOAA.NOAA_13274_4::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13274_4"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13274_5</Name> <Title>NOAA Chart Portsmouth Harbor to Boston Harbor (Rockport-Boston)</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13274_5</Keyword> <Keyword>NOAA.NOAA_13274_5</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Portsmouth</Keyword> <Keyword>Harbor</Keyword> <Keyword>to</Keyword> <Keyword>Boston</Keyword> <Keyword>Harbor</Keyword> <Keyword>(Rockport-Boston)</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=4</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13274_5.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.108" miny="42.29" maxx="-70.396" maxy="42.831"/> <BoundingBox SRS="EPSG:26986" minx="232334.423" miny="893819.705" maxx="290306.423" maxy="953463.705"/> <Style> <Name>NOAA.NOAA_13274_5::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13274_5"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13275_1</Name> <Title>NOAA Chart Salem and Lynn Harbors</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13275_1</Keyword> <Keyword>NOAA.NOAA_13275_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Salem</Keyword> <Keyword>and</Keyword> <Keyword>Lynn</Keyword> <Keyword>Harbors</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=2.1779015</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13275_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-71.0" miny="42.341" maxx="-70.725" maxy="42.599"/> <BoundingBox SRS="EPSG:26986" minx="241214.742" miny="899209.646" maxx="263629.705" maxy="927731.444"/> <Style> <Name>NOAA.NOAA_13275_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13275_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13275_2</Name> <Title>NOAA Chart Manchester Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13275_2</Keyword> <Keyword>NOAA.NOAA_13275_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Manchester</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.87170352</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13275_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.789" miny="42.553" maxx="-70.764" maxy="42.576"/> <BoundingBox SRS="EPSG:26986" minx="258405.821" miny="922722.933" maxx="260386.331" maxy="925327.583"/> <Style> <Name>NOAA.NOAA_13275_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13275_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13276_1</Name> <Title>NOAA Chart Salem, Marblehead and Beverly Harbors</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13276_1</Keyword> <Keyword>NOAA.NOAA_13276_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Salem</Keyword> <Keyword>Marblehead</Keyword> <Keyword>and</Keyword> <Keyword>Beverly</Keyword> <Keyword>Harbors</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.86348348</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13276_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.903" miny="42.479" maxx="-70.8" maxy="42.561"/> <BoundingBox SRS="EPSG:26986" minx="249070.812" miny="914464.194" maxx="257469.916" maxy="923531.634"/> <Style> <Name>NOAA.NOAA_13276_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13276_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13278_1</Name> <Title>NOAA Chart Portsmouth To Cape Ann</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13278_1</Keyword> <Keyword>NOAA.NOAA_13278_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Portsmouth</Keyword> <Keyword>To</Keyword> <Keyword>Cape</Keyword> <Keyword>Ann</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=6.8357895</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13278_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.953" miny="42.497" maxx="-69.948" maxy="43.166"/> <BoundingBox SRS="EPSG:26986" minx="244983.763" miny="917432.995" maxx="326206.613" maxy="990740.001"/> <Style> <Name>NOAA.NOAA_13278_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13278_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13278_2</Name> <Title>NOAA Chart Hampton Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13278_2</Keyword> <Keyword>NOAA.NOAA_13278_2</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Hampton</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=2.6185966</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13278_2.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.841" miny="42.858" maxx="-70.778" maxy="42.924"/> <BoundingBox SRS="EPSG:26986" minx="253818.902" miny="956672.428" maxx="258953.97" maxy="963965.22"/> <Style> <Name>NOAA.NOAA_13278_2::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13278_2"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13279_1</Name> <Title>NOAA Chart Ipswich Bay To Gloucester Harbor</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13279_1</Keyword> <Keyword>NOAA.NOAA_13279_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Ipswich</Keyword> <Keyword>Bay</Keyword> <Keyword>To</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Harbor</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7128315</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13279_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.789" miny="42.542" maxx="-70.54" maxy="42.713"/> <BoundingBox SRS="EPSG:26986" minx="258369.932" miny="921701.059" maxx="278608.749" maxy="940566.186"/> <Style> <Name>NOAA.NOAA_13279_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13279_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13281_1</Name> <Title>NOAA Chart Gloucester Harbor And Annisquam River</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13281_1</Keyword> <Keyword>NOAA.NOAA_13281_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Gloucester</Keyword> <Keyword>Harbor</Keyword> <Keyword>And</Keyword> <Keyword>Annisquam</Keyword> <Keyword>River</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=0.88763333</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13281_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.717" miny="42.567" maxx="-70.64" maxy="42.675"/> <BoundingBox SRS="EPSG:26986" minx="264305.777" miny="924354.995" maxx="270511.221" maxy="936381.539"/> <Style> <Name>NOAA.NOAA_13281_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13281_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_13282_1</Name> <Title>NOAA Chart Newburyport Harbor and Plum Island Sound</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>WCS</Keyword> <Keyword>NOAA.NOAA_13282_1</Keyword> <Keyword>NOAA.NOAA_13282_1</Keyword> <Keyword>ArcSDE</Keyword> <Keyword>NOAA</Keyword> <Keyword>Chart</Keyword> <Keyword>Newburyport</Keyword> <Keyword>Harbor</Keyword> <Keyword>and</Keyword> <Keyword>Plum</Keyword> <Keyword>Island</Keyword> <Keyword>Sound</Keyword> <Keyword>IS-IMAGERY</Keyword> <Keyword>UnitsPerPixel=1.7374229</Keyword> <Keyword>BytesPerPixel=1</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/czm/moris/XML/massgis_noaa_noaa_13282_1.tif.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.925" miny="42.659" maxx="-70.716" maxy="42.854"/> <BoundingBox SRS="EPSG:26986" minx="247132.006" miny="934617.906" maxx="264085.779" maxy="956055.968"/> <Style> <Name>NOAA.NOAA_13282_1::Default</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_13282_1"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:NOAA.NOAA_INDEX_POLY</Name> <Title>NOAA Charts Index</Title> <Abstract>Generated from massgis_sde</Abstract> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/noaacharts.htm</Keyword> <Keyword>Index</Keyword> <Keyword>NOAA.NOAA_INDEX_POLY</Keyword> <Keyword>NOAA</Keyword> <Keyword>Charts</Keyword> <Keyword>massgis_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.64" miny="38.949" maxx="-63.825" maxy="45.148"/> <BoundingBox SRS="EPSG:26986" minx="-47345.88" miny="546974.002" maxx="806018.317" maxy="1211048.348"/> <Style> <Name>NOAA.NOAA_INDEX_POLY::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_INDEX_POLY"/> </LegendURL> </Style> <Style> <Name>Black_Outlines</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=NOAA.NOAA_INDEX_POLY"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:SETB.MSAG_BOUNDARIES_POLYM_911</Name> <Title>MSAG Boundaries</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/metadata/MSAG_BOUNDARIES_METADATA.pdf</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.533" miny="41.231" maxx="-69.899" maxy="42.888"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.389" maxx="330836.972" maxy="959743.045"/> <Style> <Name>SETB.MSAG_BOUNDARIES_POLYM_911::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=SETB.MSAG_BOUNDARIES_POLYM_911"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:SETB.ROAD_DATA_ISSUES</Name> <Title>SETB Road Data Issues</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>SETB.ROAD_DATA_ISSUES</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-72.65030636964565" miny="42.082658426499414" maxx="-70.89831832306334" maxy="42.83461237518733"/> <BoundingBox SRS="EPSG:26986" minx="105943.60421999902" miny="870876.9868599836" maxx="249195.1702200014" maxy="953777.5338599867"/> <Style> <Name>Black_Points</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=SETB.ROAD_DATA_ISSUES"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:SETB.STREETS_911</Name> <Title>911 Streets</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://maps.massgis.state.ma.us/metadata/STREETS_911_METADATA.pdf</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-74.068" miny="41.222" maxx="-69.889" maxy="43.327"/> <BoundingBox SRS="EPSG:26986" minx="-8404.757" miny="777713.74" maxx="330696.964" maxy="1008453.878"/> <Style> <Name>SETB.STREETS_911::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=SETB.STREETS_911"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:SETB.STREETS_911_TO_EDIT</Name> <Title>Streets 911 to Edit</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.866" miny="41.171" maxx="-69.707" maxy="42.991"/> <BoundingBox SRS="EPSG:26986" minx="7003.124" miny="771561.041" maxx="346217.344" maxy="971195.951"/> <Style> <Name>SETB.STREETS_911_TO_EDIT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=SETB.STREETS_911_TO_EDIT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:WELLS.WELLS_PT</Name> <Title>DCR Well Points</Title> <Abstract>Generated from webeditor_sde</Abstract> <KeywordList> <Keyword>WELLS.WELLS_PT</Keyword> <Keyword>webeditor_sde</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.53331821222113" miny="41.23116987753426" maxx="-69.89858964987232" maxy="42.88811062709496"/> <BoundingBox SRS="EPSG:26986" minx="33863.73245999857" miny="777606.3746099799" maxx="330836.9724600009" maxy="959743.0446099902"/> <Style> <Name>WELLS.WELLS_PT::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=WELLS.WELLS_PT"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:archsites</Name> <Title>archsites</Title> <Abstract/> <KeywordList/> <SRS>EPSG:26713</SRS> <!--WKT definition of this CRS: PROJCS["NAD27 / UTM zone 13N", GEOGCS["NAD27", DATUM["North American Datum 1927", SPHEROID["Clarke 1866", 6378206.4, 294.9786982138982, AUTHORITY["EPSG","7008"]], TOWGS84[2.478, 149.752, 197.726, 0.526, -0.498, 0.501, 0.14129139227926102], AUTHORITY["EPSG","6267"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4267"]], PROJECTION["Transverse Mercator", AUTHORITY["EPSG","9807"]], PARAMETER["central_meridian", -105.0], PARAMETER["latitude_of_origin", 0.0], PARAMETER["scale_factor", 0.9996], PARAMETER["false_easting", 500000.0], PARAMETER["false_northing", 0.0], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26713"]]--> <LatLonBoundingBox minx="-103.872" miny="44.377" maxx="-103.638" maxy="44.488"/> <BoundingBox SRS="EPSG:26713" minx="589860.0" miny="4914479.0" maxx="608355.0" maxy="4926490.0"/> <Style> <Name>point</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a red square</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=archsites"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:l3_taxpar_poly_assess</Name> <Title>Level 3 Parcels Shapefile</Title> <Abstract/> <KeywordList> <Keyword>MassgisMetadataUrl=http://www.mass.gov/mgis/L3parcels.htm</Keyword> <Keyword>ExtractDoc=http://maps.massgis.state.ma.us/metadata/GISDATA.L3_TAXPAR_POLY_ASSESS.xml</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-73.532" miny="41.234" maxx="-69.913" maxy="42.834"/> <BoundingBox SRS="EPSG:26986" minx="33863.744" miny="777899.125" maxx="329784.623" maxy="953724.315"/> <Style> <Name>GISDATA.L3_TAXPAR_POLY_ASSESS::Default</Name> <Title/> <Abstract/> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=l3_taxpar_poly_assess"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:states</Name> <Title>states</Title> <Abstract/> <KeywordList/> <SRS>EPSG:4326</SRS> <!--WKT definition of this CRS: GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4326"]]--> <LatLonBoundingBox minx="-124.731" miny="24.956" maxx="-66.97" maxy="49.372"/> <BoundingBox SRS="EPSG:4326" minx="-124.731" miny="24.956" maxx="-66.97" maxy="49.372"/> <Style> <Name>line</Name> <Title>A boring default style</Title> <Abstract>A sample style that just prints out a green line</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=states"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>massgis:test ortho</Name> <Title>test ortho</Title> <Abstract/> <KeywordList> <Keyword>WCS</Keyword> <Keyword>GeoTIFF</Keyword> <Keyword>25078765</Keyword> </KeywordList> <SRS>EPSG:26986</SRS> <!--WKT definition of this CRS: PROJCS["NAD83 / Massachusetts Mainland", GEOGCS["NAD83", DATUM["North American Datum 1983", SPHEROID["GRS 1980", 6378137.0, 298.257222101, AUTHORITY["EPSG","7019"]], TOWGS84[1.0, 1.0, -1.0, 0.0, 0.0, 0.0, 0.0], AUTHORITY["EPSG","6269"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4269"]], PROJECTION["Lambert Conic Conformal (2SP)", AUTHORITY["EPSG","9802"]], PARAMETER["central_meridian", -71.5], PARAMETER["latitude_of_origin", 41.0], PARAMETER["standard_parallel_1", 42.68333333333334], PARAMETER["false_easting", 200000.0], PARAMETER["false_northing", 750000.0], PARAMETER["scale_factor", 1.0], PARAMETER["standard_parallel_2", 41.71666666666667], UNIT["m", 1.0], AXIS["Easting", EAST], AXIS["Northing", NORTH], AUTHORITY["EPSG","26986"]]--> <LatLonBoundingBox minx="-70.895" miny="42.131" maxx="-70.877" maxy="42.144"/> <BoundingBox SRS="EPSG:26986" minx="249986.436" miny="875771.025" maxx="251486.436" maxy="877271.025"/> <Style> <Name>raster</Name> <Title>A boring default style</Title> <Abstract>A sample style for rasters</Abstract> <LegendURL width="20" height="20"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://giswebservices.massgis.state.ma.us/geoserver/wms?request=GetLegendGraphic&amp;format=image%2Fpng&amp;width=20&amp;height=20&amp;layer=test+ortho"/> </LegendURL> </Style> </Layer> <Layer queryable="0"> <Name>massgis_basemap</Name> <Title>massgis_basemap</Title> <Abstract>Layer-Group type layer: massgis_basemap</Abstract> <SRS>EPSG:26986</SRS> <LatLonBoundingBox minx="-73.53330300059145" miny="41.231167111824064" maxx="-69.89857395504337" maxy="42.88810793022075"/> <BoundingBox SRS="EPSG:26986" minx="33863.733" miny="777606.375" maxx="330836.972" maxy="959743.045"/> </Layer> <Layer queryable="0"> <Name>test_layergroup1</Name> <Title>test_layergroup1</Title> <Abstract>Layer-Group type layer: test_layergroup1</Abstract> <SRS>EPSG:26986</SRS> <LatLonBoundingBox minx="-73.58706326502185" miny="41.212256335503035" maxx="-69.85598707440859" maxy="42.90575948520038"/> <BoundingBox SRS="EPSG:26986" minx="29517.435" miny="775607.662" maxx="334279.393" maxy="961705.21"/> </Layer> </Layer> </Capability> </WMT_MS_Capabilities> ������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_mesonet-caps-130.xml����������������������������������������������0000664�0000000�0000000�00000016420�13217064120�0022357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms" xmlns:sld="http://www.opengis.net/sld" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ms="http://mapserver.gis.umn.edu/mapserver" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://mapserver.gis.umn.edu/mapserver http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?service=WMS&amp;version=1.3.0&amp;request=GetSchemaExtension"> <!-- MapServer version 6.4.1 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG SUPPORTS=PROJ SUPPORTS=GD SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=ICONV SUPPORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=FASTCGI SUPPORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>WMS</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Daryl Herzmann</ContactPerson> <ContactOrganization>Iowa State University</ContactOrganization> </ContactPersonPrimary> </ContactInformation> <AccessConstraints>None</AccessConstraints> <MaxWidth>2048</MaxWidth> <MaxHeight>2048</MaxHeight> </Service> <Capability> <Request> <GetCapabilities> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <Format>application/x-pdf</Format> <Format>image/svg+xml</Format> <Format>image/tiff</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetFeatureInfo> <sld:DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </sld:DescribeLayer> <sld:GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </sld:GetLegendGraphic> <ms:GetStyles> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </ms:GetStyles> </Request> <Exception> <Format>XML</Format> <Format>INIMAGE</Format> <Format>BLANK</Format> </Exception> <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/> <Layer> <Name>nexrad_base_reflect</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <MinScaleDenominator>90000</MinScaleDenominator> <MaxScaleDenominator>4.65e+06</MaxScaleDenominator> <Layer queryable="0" opaque="0" cascaded="0"> <Name>time_idx</Name> <Title>NEXRAD BASE REFLECT</Title> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <Dimension name="time" units="ISO8601" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2015-12-31/PT5M</Dimension> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>nexrad-n0r-wmst</Name> <Title>NEXRAD BASE REFLECT</Title> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <Dimension name="time" units="ISO8601" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2015-12-31/PT5M</Dimension> </Layer> </Layer> </Capability> </WMS_Capabilities> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_mesonet-caps-130_bom.xml������������������������������������������0000664�0000000�0000000�00000016422�13217064120�0023216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms" xmlns:sld="http://www.opengis.net/sld" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ms="http://mapserver.gis.umn.edu/mapserver" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://mapserver.gis.umn.edu/mapserver http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?service=WMS&amp;version=1.3.0&amp;request=GetSchemaExtension"> <!-- MapServer version 6.4.1 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG SUPPORTS=PROJ SUPPORTS=GD SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=ICONV SUPPORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=FASTCGI SUPPORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>WMS</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Daryl Herzmann</ContactPerson> <ContactOrganization>Iowa State University</ContactOrganization> </ContactPersonPrimary> </ContactInformation> <AccessConstraints>None</AccessConstraints> <MaxWidth>2048</MaxWidth> <MaxHeight>2048</MaxHeight> </Service> <Capability> <Request> <GetCapabilities> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <Format>application/x-pdf</Format> <Format>image/svg+xml</Format> <Format>image/tiff</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetFeatureInfo> <sld:DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </sld:DescribeLayer> <sld:GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </sld:GetLegendGraphic> <ms:GetStyles> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </ms:GetStyles> </Request> <Exception> <Format>XML</Format> <Format>INIMAGE</Format> <Format>BLANK</Format> </Exception> <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/> <Layer> <Name>nexrad_base_reflect</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <MinScaleDenominator>90000</MinScaleDenominator> <MaxScaleDenominator>4.65e+06</MaxScaleDenominator> <Layer queryable="0" opaque="0" cascaded="0"> <Name>time_idx</Name> <Title>NEXRAD BASE REFLECT</Title> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <Dimension name="time" units="ISO8601" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2015-12-31/PT5M</Dimension> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>nexrad-n0r-wmst</Name> <Title>NEXRAD BASE REFLECT</Title> <CRS>EPSG:4326</CRS> <CRS>EPSG:900913</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:3857</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-126</westBoundLongitude> <eastBoundLongitude>-66</eastBoundLongitude> <southBoundLatitude>24</southBoundLatitude> <northBoundLatitude>50</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="EPSG:4326" minx="24" miny="-126" maxx="50" maxy="-66" /> <Dimension name="time" units="ISO8601" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2015-12-31/PT5M</Dimension> </Layer> </Layer> </Capability> </WMS_Capabilities> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_mesonet-caps.xml��������������������������������������������������0000664�0000000�0000000�00000016676�13217064120�0022073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd" [ <!ELEMENT VendorSpecificCapabilities EMPTY> ]> <!-- end of DOCTYPE declaration --> <WMT_MS_Capabilities version="1.1.1"> <!-- MapServer version 6.3-dev OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG SUPPORTS=PROJ SUPPORTS=GD SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_SERVER SUPPORTS=WFS_CLIENT SUPPORTS=FASTCGI SUPPORTS=GEOS INPUT=JPEG INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>OGC:WMS</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Daryl Herzmann</ContactPerson> <ContactOrganization>Iowa State University</ContactOrganization> </ContactPersonPrimary> </ContactInformation> <AccessConstraints>None</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <Format>application/x-pdf</Format> <Format>image/svg+xml</Format> <Format>image/tiff</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetFeatureInfo> <DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </DescribeLayer> <GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetLegendGraphic> <GetStyles> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r-t.cgi?"/></Post> </HTTP> </DCPType> </GetStyles> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> <Format>application/vnd.ogc.se_blank</Format> </Exception> <VendorSpecificCapabilities /> <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/> <Layer> <Name>nexrad_base_reflect</Name> <Title>IEM WMS Service</Title> <Abstract>IEM generated CONUS composite of NWS WSR-88D level III base reflectivity.</Abstract> <SRS>EPSG:4326</SRS> <SRS>EPSG:900913</SRS> <SRS>EPSG:102100</SRS> <SRS>EPSG:3857</SRS> <LatLonBoundingBox minx="-126" miny="24" maxx="-66" maxy="50" /> <BoundingBox SRS="EPSG:4326" minx="-126" miny="24" maxx="-66" maxy="50" /> <ScaleHint min="44.9012563586673" max="2319.89824519781" /> <Layer queryable="0" opaque="0" cascaded="0"> <Name>time_idx</Name> <Title>NEXRAD BASE REFLECT</Title> <SRS>EPSG:4326</SRS> <SRS>EPSG:900913</SRS> <SRS>EPSG:102100</SRS> <SRS>EPSG:3857</SRS> <LatLonBoundingBox minx="-126" miny="24" maxx="-66" maxy="50" /> <BoundingBox SRS="EPSG:4326" minx="-126" miny="24" maxx="-66" maxy="50" /> <Dimension name="time" units="ISO8601"/> <Extent name="time" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2013-12-31/PT5M</Extent> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>nexrad-n0r-wmst</Name> <Title>NEXRAD BASE REFLECT</Title> <SRS>EPSG:4326</SRS> <SRS>EPSG:900913</SRS> <SRS>EPSG:102100</SRS> <SRS>EPSG:3857</SRS> <LatLonBoundingBox minx="-126" miny="24" maxx="-66" maxy="50" /> <BoundingBox SRS="EPSG:4326" minx="-126" miny="24" maxx="-66" maxy="50" /> <Dimension name="time" units="ISO8601"/> <Extent name="time" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2013-12-31/PT5M</Extent> </Layer> </Layer> </Capability> </WMT_MS_Capabilities> ������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_nationalatlas_getcapabilities_111.xml�����������������������������0000664�0000000�0000000�00000043416�13217064120�0026112�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <!DOCTYPE WMT_MS_Capabilities SYSTEM "http://schemas.opengis.net/wms/1.1.1/WMS_MS_Capabilities.dtd" [ <!ELEMENT VendorSpecificCapabilities EMPTY> ]> <!-- end of DOCTYPE declaration --> <WMT_MS_Capabilities version="1.1.1"> <!-- MapServer version 6.0.0 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=THREADS SUPPORTS=GEOS INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>OGC:WMS</Name> <Title>1 Million Scale WMS Layers from the National Atlas of the United States</Title> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson></ContactPerson> <ContactOrganization>National Atlas of the United States</ContactOrganization> </ContactPersonPrimary> <ContactPosition>WMS Support Staff</ContactPosition> <ContactElectronicMailAddress>atlasmail@usgs.gov</ContactElectronicMailAddress> </ContactInformation> <Fees>none</Fees> <AccessConstraints>none</AccessConstraints> </Service> <Capability> <Request> <GetCapabilities> <Format>application/vnd.ogc.wms_xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <Format>image/tiff</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </GetFeatureInfo> <DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </DescribeLayer> <GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </GetLegendGraphic> <GetStyles> <Format>text/xml</Format> <DCPType> <HTTP> <Get><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Get> <Post><OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/></Post> </HTTP> </DCPType> </GetStyles> </Request> <Exception> <Format>application/vnd.ogc.se_xml</Format> <Format>application/vnd.ogc.se_inimage</Format> <Format>application/vnd.ogc.se_blank</Format> </Exception> <VendorSpecificCapabilities /> <UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0"/> <Layer> <Name>one_million</Name> <Title>1 Million Scale WMS Layers from the National Atlas of the United States</Title> <Abstract>one_million</Abstract> <SRS>CRS:84</SRS> <SRS>EPSG:4326</SRS> <SRS>EPSG:2163</SRS> <SRS>EPSG:102100</SRS> <SRS>EPSG:4269</SRS> <SRS>EPSG:4267</SRS> <SRS>EPSG:54004</SRS> <SRS>EPSG:54008</SRS> <SRS>EPSG:3785</SRS> <SRS>EPSG:3857</SRS> <SRS>EPSG:102113</SRS> <SRS>EPSG:900913</SRS> <LatLonBoundingBox minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398" /> <BoundingBox SRS="CRS:84" minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398" /> <BoundingBox SRS="EPSG:4326" minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398" /> <BoundingBox SRS="EPSG:2163" minx="-8.01362e+06" miny="-2.87546e+06" maxx="8.01713e+06" maxy="1.08097e+07" /> <BoundingBox SRS="EPSG:102100" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07" /> <BoundingBox SRS="EPSG:4269" minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398" /> <BoundingBox SRS="EPSG:4267" minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398" /> <BoundingBox SRS="EPSG:54004" minx="-1.9941e+07" miny="2.13115e+06" maxx="2.00139e+07" maxy="1.14992e+07" /> <BoundingBox SRS="EPSG:54008" minx="-1.88708e+07" miny="2.09231e+06" maxx="1.89398e+07" maxy="7.92496e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07" /> <BoundingBox SRS="EPSG:3857" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07" /> <BoundingBox SRS="EPSG:102113" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07" /> <BoundingBox SRS="EPSG:900913" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07" /> <Attribution> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://nationalatlas.gov/infodocs/wms_intro.html"/> </Attribution> <Layer queryable="1" opaque="0" cascaded="0"> <Name>airports1m</Name> <Title>1 Million Scale - Airports</Title> <LatLonBoundingBox minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854" /> <BoundingBox SRS="CRS:84" minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854" /> <BoundingBox SRS="EPSG:4326" minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854" /> <BoundingBox SRS="EPSG:2163" minx="-7.13345e+06" miny="-3.00665e+06" maxx="3.72355e+06" maxy="4.23839e+06" /> <BoundingBox SRS="EPSG:102100" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07" /> <BoundingBox SRS="EPSG:4269" minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854" /> <BoundingBox SRS="EPSG:4267" minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854" /> <BoundingBox SRS="EPSG:54004" minx="-1.96641e+07" miny="1.98966e+06" maxx="-7.21369e+06" maxy="1.14601e+07" /> <BoundingBox SRS="EPSG:54008" minx="-1.87389e+07" miny="1.95795e+06" maxx="-2.32152e+06" maxy="7.9124e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07" /> <BoundingBox SRS="EPSG:3857" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07" /> <BoundingBox SRS="EPSG:102113" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07" /> <BoundingBox SRS="EPSG:900913" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07" /> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=airports1m&amp;format=image/png&amp;STYLE=default"/> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>amtrak1m</Name> <Title>1 Million Scale - Railroad and Bus Passenger Stations</Title> <LatLonBoundingBox minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205" /> <BoundingBox SRS="CRS:84" minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205" /> <BoundingBox SRS="EPSG:4326" minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205" /> <BoundingBox SRS="EPSG:2163" minx="-2.41969e+06" miny="-2.11947e+06" maxx="3.09811e+06" maxy="862008" /> <BoundingBox SRS="EPSG:102100" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06" /> <BoundingBox SRS="EPSG:4269" minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205" /> <BoundingBox SRS="EPSG:4267" minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205" /> <BoundingBox SRS="EPSG:54004" minx="-1.38272e+07" miny="2.96187e+06" maxx="-7.64438e+06" maxy="6.19544e+06" /> <BoundingBox SRS="EPSG:54008" minx="-1.24516e+07" miny="2.8602e+06" maxx="-5.05281e+06" maxy="5.39854e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06" /> <BoundingBox SRS="EPSG:3857" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06" /> <BoundingBox SRS="EPSG:102113" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06" /> <BoundingBox SRS="EPSG:900913" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06" /> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=amtrak1m&amp;format=image/png&amp;STYLE=default"/> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>coast1m</Name> <Title>1 Million Scale - Coastlines</Title> <LatLonBoundingBox minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4326" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07" /> <BoundingBox SRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:4269" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4267" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07" /> <BoundingBox SRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=coast1m&amp;format=image/png&amp;STYLE=default"/> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>cdl</Name> <Title>1 Million Scale - 113th Congressional Districts</Title> <LatLonBoundingBox minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4326" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07" /> <BoundingBox SRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:4269" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4267" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07" /> <BoundingBox SRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=cdl&amp;format=image/png&amp;STYLE=default"/> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>cdp</Name> <Title>1 Million Scale - 113th Congressional Districts by Party</Title> <LatLonBoundingBox minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4326" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07" /> <BoundingBox SRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:4269" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:4267" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892" /> <BoundingBox SRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07" /> <BoundingBox SRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06" /> <BoundingBox SRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <BoundingBox SRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07" /> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.1.1&amp;service=WMS&amp;request=GetLegendGraphic&amp;layer=cdp&amp;format=image/png&amp;STYLE=default"/> </LegendURL> </Style> </Layer> </Layer> </Capability> </WMT_MS_Capabilities> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_nationalatlas_getcapabilities_130.xml�����������������������������0000664�0000000�0000000�00000206710�13217064120�0026111�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding="ISO-8859-1" standalone="no" ?> <WMS_Capabilities version="1.3.0" xmlns="http://www.opengis.net/wms" xmlns:sld="http://www.opengis.net/sld" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ms="http://mapserver.gis.umn.edu/mapserver" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/sld_capabilities.xsd http://mapserver.gis.umn.edu/mapserver http://webservices.nationalatlas.gov/wms?service=WMS&amp;version=1.3.0&amp;request=GetSchemaExtension"> <!-- MapServer version 6.0.0 OUTPUT=GIF OUTPUT=PNG OUTPUT=JPEG SUPPORTS=PROJ SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=ICONV SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT SUPPORTS=WFS_CLIENT SUPPORTS=WCS_SERVER SUPPORTS=SOS_SERVER SUPPORTS=THREADS SUPPORTS=GEOS INPUT=POSTGIS INPUT=OGR INPUT=GDAL INPUT=SHAPEFILE --> <Service> <Name>WMS</Name> <Title>1 Million Scale WMS Layers from the National Atlas of the United States</Title> <Abstract>Test Data for 1 Million Scale</Abstract> <KeywordList> <Keyword>United States</Keyword> <Keyword>National Atlas</Keyword> </KeywordList> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson/> <ContactOrganization>National Atlas of the United States</ContactOrganization> </ContactPersonPrimary><ContactPosition>WMS Support Staff</ContactPosition> <ContactElectronicMailAddress>atlasmail@usgs.gov</ContactElectronicMailAddress> </ContactInformation> <Fees>none</Fees> <AccessConstraints>none</AccessConstraints> <MaxWidth>2048</MaxWidth> <MaxHeight>2048</MaxHeight> </Service> <Capability> <Request> <GetCapabilities> <Format>text/xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <Format>image/tiff</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </GetMap> <GetFeatureInfo> <Format>text/plain</Format> <Format>application/vnd.ogc.gml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </GetFeatureInfo> <sld:DescribeLayer> <Format>text/xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </sld:DescribeLayer> <sld:GetLegendGraphic> <Format>image/png</Format> <Format>image/jpeg</Format> <Format>image/gif</Format> <Format>image/png; mode=8bit</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </sld:GetLegendGraphic> <ms:GetStyles> <Format>text/xml</Format> <DCPType> <HTTP> <Get> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Get> <Post> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://webservices.nationalatlas.gov/wms?"/> </Post> </HTTP> </DCPType> </ms:GetStyles> </Request> <Exception> <Format>XML</Format> <Format>INIMAGE</Format> <Format>BLANK</Format> </Exception> <sld:UserDefinedSymbolization SupportSLD="1" UserLayer="0" UserStyle="1" RemoteWFS="0" InlineFeature="0" RemoteWCS="0"/> <Layer> <Name>one_million</Name> <Title>1 Million Scale WMS Layers from the National Atlas of the United States</Title> <Abstract>one_million</Abstract> <CRS>CRS:84</CRS> <CRS>EPSG:4326</CRS> <CRS>EPSG:2163</CRS> <CRS>EPSG:102100</CRS> <CRS>EPSG:4269</CRS> <CRS>EPSG:4267</CRS> <CRS>EPSG:54004</CRS> <CRS>EPSG:54008</CRS> <CRS>EPSG:3785</CRS> <CRS>EPSG:3857</CRS> <CRS>EPSG:102113</CRS> <CRS>EPSG:900913</CRS> <EX_GeographicBoundingBox> <westBoundLongitude>-179.133</westBoundLongitude> <eastBoundLongitude>179.788</eastBoundLongitude> <southBoundLatitude>18.9155</southBoundLatitude> <northBoundLatitude>71.398</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.133" miny="18.9155" maxx="179.788" maxy="71.398"/> <BoundingBox CRS="EPSG:4326" minx="18.9155" miny="-179.133" maxx="71.398" maxy="179.788"/> <BoundingBox CRS="EPSG:2163" minx="-8.01362e+06" miny="-2.87546e+06" maxx="8.01713e+06" maxy="1.08097e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07"/> <BoundingBox CRS="EPSG:4269" minx="18.9155" miny="-179.133" maxx="71.398" maxy="179.788"/> <BoundingBox CRS="EPSG:4267" minx="18.9155" miny="-179.133" maxx="71.398" maxy="179.788"/> <BoundingBox CRS="EPSG:54004" minx="-1.9941e+07" miny="2.13115e+06" maxx="2.00139e+07" maxy="1.14992e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.88708e+07" miny="2.09231e+06" maxx="1.89398e+07" maxy="7.92496e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.9941e+07" miny="2.14499e+06" maxx="2.00139e+07" maxy="1.15398e+07"/> <Attribution> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://nationalatlas.gov/infodocs/wms_intro.html"/> </Attribution> <Layer queryable="1" opaque="0" cascaded="0"> <Name>airports1m</Name> <Title>1 Million Scale - Airports</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-176.646</westBoundLongitude> <eastBoundLongitude>-64.8017</eastBoundLongitude> <southBoundLatitude>17.7016</southBoundLatitude> <northBoundLatitude>71.2854</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-176.646" miny="17.7016" maxx="-64.8017" maxy="71.2854"/> <BoundingBox CRS="EPSG:4326" minx="17.7016" miny="-176.646" maxx="71.2854" maxy="-64.8017"/> <BoundingBox CRS="EPSG:2163" minx="-7.13345e+06" miny="-3.00665e+06" maxx="3.72355e+06" maxy="4.23839e+06"/> <BoundingBox CRS="EPSG:102100" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.7016" miny="-176.646" maxx="71.2854" maxy="-64.8017"/> <BoundingBox CRS="EPSG:4267" minx="17.7016" miny="-176.646" maxx="71.2854" maxy="-64.8017"/> <BoundingBox CRS="EPSG:54004" minx="-1.96641e+07" miny="1.98966e+06" maxx="-7.21369e+06" maxy="1.14601e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.87389e+07" miny="1.95795e+06" maxx="-2.32152e+06" maxy="7.9124e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.96641e+07" miny="2.00265e+06" maxx="-7.21369e+06" maxy="1.15006e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=airports1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>amtrak1m</Name> <Title>1 Million Scale - Railroad and Bus Passenger Stations</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-124.212</westBoundLongitude> <eastBoundLongitude>-68.6706</eastBoundLongitude> <southBoundLatitude>25.8498</southBoundLatitude> <northBoundLatitude>48.7205</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-124.212" miny="25.8498" maxx="-68.6706" maxy="48.7205"/> <BoundingBox CRS="EPSG:4326" minx="25.8498" miny="-124.212" maxx="48.7205" maxy="-68.6706"/> <BoundingBox CRS="EPSG:2163" minx="-2.41969e+06" miny="-2.11947e+06" maxx="3.09811e+06" maxy="862008"/> <BoundingBox CRS="EPSG:102100" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06"/> <BoundingBox CRS="EPSG:4269" minx="25.8498" miny="-124.212" maxx="48.7205" maxy="-68.6706"/> <BoundingBox CRS="EPSG:4267" minx="25.8498" miny="-124.212" maxx="48.7205" maxy="-68.6706"/> <BoundingBox CRS="EPSG:54004" minx="-1.38272e+07" miny="2.96187e+06" maxx="-7.64438e+06" maxy="6.19544e+06"/> <BoundingBox CRS="EPSG:54008" minx="-1.24516e+07" miny="2.8602e+06" maxx="-5.05281e+06" maxy="5.39854e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06"/> <BoundingBox CRS="EPSG:3857" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06"/> <BoundingBox CRS="EPSG:102113" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06"/> <BoundingBox CRS="EPSG:900913" minx="-1.38272e+07" miny="2.9805e+06" maxx="-7.64438e+06" maxy="6.22757e+06"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=amtrak1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>coast1m</Name> <Title>1 Million Scale - Coastlines</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.147</westBoundLongitude> <eastBoundLongitude>179.778</eastBoundLongitude> <southBoundLatitude>17.6744</southBoundLatitude> <northBoundLatitude>71.3892</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892"/> <BoundingBox CRS="EPSG:4326" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:4267" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <Dimension name="elevation" units="meters" default="500" multipleValues="1" nearestValue="0" current="true" unitSymbol="m">500, 490, 480</Dimension> <Dimension name="time" units="ISO8601" default="2006-06-23T03:10:00Z" nearestValue="0">1995-01-01/2013-12-31/PT5M</Dimension> <MetadataURL type="FGDC"> <Format>text/xml</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="9250AA67-F3AC-6C12-0CB9-0662231AA181_fgdc.xml"/> </MetadataURL> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=coast1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>cdl</Name> <Title>1 Million Scale - 113th Congressional Districts</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.147</westBoundLongitude> <eastBoundLongitude>179.778</eastBoundLongitude> <southBoundLatitude>17.6744</southBoundLatitude> <northBoundLatitude>71.3892</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892"/> <BoundingBox CRS="EPSG:4326" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:4267" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=cdl&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>cdp</Name> <Title>1 Million Scale - 113th Congressional Districts by Party</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.147</westBoundLongitude> <eastBoundLongitude>179.778</eastBoundLongitude> <southBoundLatitude>17.6744</southBoundLatitude> <northBoundLatitude>71.3892</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892"/> <BoundingBox CRS="EPSG:4326" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:4267" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=cdp&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>elevation</Name> <Title>1 Million Scale - Elevation 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.9541</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.9541"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.9541" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.9541" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.9541" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.98701e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17367e+07"/> <Style> <Name>elevi0100g</Name> <Title>elevi0100g</Title> <LegendURL width="190" height="526"> <Format>image/gif</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/images/elevi0100g.gif"/> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>elsli0100g</Name> <Title>1 Million Scale - Color-Sliced Elevation 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=elsli0100g&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>impervious</Name> <Title>1 Million Scale - Impervious Surface 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>-62.6641</eastBoundLongitude> <southBoundLatitude>17.06</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.06" maxx="-62.6641" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:2163" minx="-7.36962e+06" miny="-3.07607e+06" maxx="3.95469e+06" maxy="4.36977e+06"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:4267" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91528e+06" maxx="-6.97574e+06" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88695e+06" maxx="-2.16752e+06" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <Style> <Name>impei0100a</Name> <Title>impei0100a</Title> <LegendURL width="144" height="430"> <Format>image/gif</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/images/impei0100a.gif"/> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>landcov100m</Name> <Title>1 Million Scale - Land Cover 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.06</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.06" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.06" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19671e+06" miny="-3.07572e+06" maxx="8.1974e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92781e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.06" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.06" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91528e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88695e+06" maxx="1.91613e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92781e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92781e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92781e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92781e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=landcov100m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>landwatermask</Name> <Title>1 Million Scale - Land/Water Mask 100 Meter Resolution</Title> <Abstract>This Land/Water Mask is a 100-meter resolution image of the conterminous United States, Alaska, Hawaii, Puerto Rico and the U.S. Virgin Islands, with separate values for oceans and for land areas of the United States, Canada, Mexico, the Bahamas and Cuba, Russia, and the British Virgin Islands.</Abstract> <KeywordList> <Keyword>Land Surface</Keyword> <Keyword> Oceans</Keyword> <Keyword> imageryBaseMapsEarthCover</Keyword> <Keyword> Mask</Keyword> <Keyword> Land/water</Keyword> <Keyword> United States</Keyword> <Keyword> US</Keyword> <Keyword> USA</Keyword> <Keyword> Alabama</Keyword> <Keyword> Arizona</Keyword> <Keyword> Arkansas</Keyword> <Keyword> California</Keyword> <Keyword> Colorado</Keyword> <Keyword> Connecticut</Keyword> <Keyword> Delaware</Keyword> <Keyword> District of Columbia</Keyword> <Keyword> Florida</Keyword> <Keyword> Georgia</Keyword> <Keyword> Idaho</Keyword> <Keyword> Illinois</Keyword> <Keyword> Indiana</Keyword> <Keyword> Iowa</Keyword> <Keyword> Kansas</Keyword> <Keyword> Kentucky</Keyword> <Keyword> Louisiana</Keyword> <Keyword> Maine</Keyword> <Keyword> Maryland</Keyword> <Keyword> Massachusetts</Keyword> <Keyword> Michigan</Keyword> <Keyword> Minnesota</Keyword> <Keyword> Mississippi</Keyword> <Keyword> Missouri</Keyword> <Keyword> Montana</Keyword> <Keyword> Nebraska</Keyword> <Keyword> Nevada</Keyword> <Keyword> New Hampshire</Keyword> <Keyword> New Jersey</Keyword> <Keyword> New Mexico</Keyword> <Keyword> New York</Keyword> <Keyword> North Carolina</Keyword> <Keyword> North Dakota</Keyword> <Keyword> Ohio</Keyword> <Keyword> Oklahoma</Keyword> <Keyword> Oregon</Keyword> <Keyword> Pennsylvania</Keyword> <Keyword> Rhode Island</Keyword> <Keyword> South Carolina</Keyword> <Keyword> South Dakota</Keyword> <Keyword> Tennessee</Keyword> <Keyword> Texas</Keyword> <Keyword> Utah</Keyword> <Keyword> Vermont</Keyword> <Keyword> Virginia</Keyword> <Keyword> Washington</Keyword> <Keyword> West Virginia</Keyword> <Keyword> Wisconsin</Keyword> <Keyword> Wyoming</Keyword> <Keyword> Alaska</Keyword> <Keyword> Hawaii</Keyword> <Keyword> Puerto Rico</Keyword> <Keyword> Virgin Islands</Keyword> <Keyword> U.S. Virgin Islands</Keyword> </KeywordList> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <MetadataURL type="FGDC"> <Format>text/xml</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/metadata/mask48i0100a.xml"/> </MetadataURL> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=landwatermask&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>national1m</Name> <Title>1 Million Scale - National Boundary</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.147</westBoundLongitude> <eastBoundLongitude>179.778</eastBoundLongitude> <southBoundLatitude>17.6744</southBoundLatitude> <northBoundLatitude>71.3892</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892"/> <BoundingBox CRS="EPSG:4326" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:4267" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=national1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>naturalearth</Name> <Title>1 Million Scale - Natural Earth Shaded Relief 100 Meter Resolution</Title> <Abstract>This map layer contains a natural-earth image of the conterminous United States, Alaska, Hawaii, Puerto Rico and the U.S. Virgin Islands. The image is land cover in natural colors combined with shaded relief, which produces a naturalistic rendition of the Earth&#39;s surface.</Abstract> <KeywordList> <Keyword>Elevation</Keyword> <Keyword> Land cover</Keyword> <Keyword> Land cover characteristics</Keyword> <Keyword> Satellite image</Keyword> <Keyword> Topographic</Keyword> <Keyword> Topography</Keyword> <Keyword> Natural earth</Keyword> <Keyword> United States</Keyword> <Keyword> US</Keyword> <Keyword> USA</Keyword> <Keyword> Alabama</Keyword> <Keyword> Arizona</Keyword> <Keyword> Arkansas</Keyword> <Keyword> California</Keyword> <Keyword> Colorado</Keyword> <Keyword> Connecticut</Keyword> <Keyword> Delaware</Keyword> <Keyword> District of Columbia</Keyword> <Keyword> Florida</Keyword> <Keyword> Georgia</Keyword> <Keyword> Idaho</Keyword> <Keyword> Illinois</Keyword> <Keyword> Indiana</Keyword> <Keyword> Iowa</Keyword> <Keyword> Kansas</Keyword> <Keyword> Kentucky</Keyword> <Keyword> Louisiana</Keyword> <Keyword> Maine</Keyword> <Keyword> Maryland</Keyword> <Keyword> Massachusetts</Keyword> <Keyword> Michigan</Keyword> <Keyword> Minnesota</Keyword> <Keyword> Mississippi</Keyword> <Keyword> Missouri</Keyword> <Keyword> Montana</Keyword> <Keyword> Nebraska</Keyword> <Keyword> Nevada</Keyword> <Keyword> New Hampshire</Keyword> <Keyword> New Jersey</Keyword> <Keyword> New Mexico</Keyword> <Keyword> New York</Keyword> <Keyword> North Carolina</Keyword> <Keyword> North Dakota</Keyword> <Keyword> Ohio</Keyword> <Keyword> Oklahoma</Keyword> <Keyword> Oregon</Keyword> <Keyword> Pennsylvania</Keyword> <Keyword> Rhode Island</Keyword> <Keyword> South Carolina</Keyword> <Keyword> South Dakota</Keyword> <Keyword> Tennessee</Keyword> <Keyword> Texas</Keyword> <Keyword> Utah</Keyword> <Keyword> Vermont</Keyword> <Keyword> Virginia</Keyword> <Keyword> Washington</Keyword> <Keyword> West Virginia</Keyword> <Keyword> Wisconsin</Keyword> <Keyword> Wyoming</Keyword> <Keyword> Alaska</Keyword> <Keyword> Hawaii</Keyword> <Keyword> Puerto Rico</Keyword> <Keyword> Virgin Islands</Keyword> <Keyword> U.S. Virgin Islands</Keyword> </KeywordList> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <MetadataURL type="FGDC"> <Format>text/xml</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/metadata/nate48i0100a.xml"/> </MetadataURL> <Style> <Name>natei0100g</Name> <Title>natei0100g</Title> <LegendURL width="275" height="645"> <Format>image/jpeg</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/images/natei0100g.jpg"/> </LegendURL> </Style> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>ports1m</Name> <Title>1 Million Scale - Ports</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-166.532</westBoundLongitude> <eastBoundLongitude>-64.7707</eastBoundLongitude> <southBoundLatitude>17.706</southBoundLatitude> <northBoundLatitude>66.8998</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-166.532" miny="17.706" maxx="-64.7707" maxy="66.8998"/> <BoundingBox CRS="EPSG:4326" minx="17.706" miny="-166.532" maxx="66.8998" maxy="-64.7707"/> <BoundingBox CRS="EPSG:2163" minx="-6.4645e+06" miny="-3.00625e+06" maxx="3.7265e+06" maxy="3.66602e+06"/> <BoundingBox CRS="EPSG:102100" minx="-1.85383e+07" miny="2.00317e+06" maxx="-7.21024e+06" maxy="1.01276e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.706" miny="-166.532" maxx="66.8998" maxy="-64.7707"/> <BoundingBox CRS="EPSG:4267" minx="17.706" miny="-166.532" maxx="66.8998" maxy="-64.7707"/> <BoundingBox CRS="EPSG:54004" minx="-1.85383e+07" miny="1.99018e+06" maxx="-7.21024e+06" maxy="1.00882e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.76656e+07" miny="1.95845e+06" maxx="-2.83691e+06" maxy="7.42318e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.85383e+07" miny="2.00317e+06" maxx="-7.21024e+06" maxy="1.01276e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.85383e+07" miny="2.00317e+06" maxx="-7.21024e+06" maxy="1.01276e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.85383e+07" miny="2.00317e+06" maxx="-7.21024e+06" maxy="1.01276e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.85383e+07" miny="2.00317e+06" maxx="-7.21024e+06" maxy="1.01276e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=ports1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>satvi0100g</Name> <Title>1 Million Scale - Satellite View 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>srcoi0100g</Name> <Title>1 Million Scale - Color Shaded Relief 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=srcoi0100g&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>srgri0100g</Name> <Title>1 Million Scale - Gray Shaded Relief 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> </Layer> <Layer queryable="1" opaque="0" cascaded="0"> <Name>states1m</Name> <Title>1 Million Scale - States</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.147</westBoundLongitude> <eastBoundLongitude>179.778</eastBoundLongitude> <southBoundLatitude>17.6744</southBoundLatitude> <northBoundLatitude>71.3892</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.147" miny="17.6744" maxx="179.778" maxy="71.3892"/> <BoundingBox CRS="EPSG:4326" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:2163" minx="-8.13616e+06" miny="-3.00973e+06" maxx="8.13829e+06" maxy="1.0882e+07"/> <BoundingBox CRS="EPSG:102100" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:4267" minx="17.6744" miny="-179.147" maxx="71.3892" maxy="179.778"/> <BoundingBox CRS="EPSG:54004" minx="-1.99426e+07" miny="1.98651e+06" maxx="2.00128e+07" maxy="1.14961e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.90071e+07" miny="1.95494e+06" maxx="1.90741e+07" maxy="7.92398e+06"/> <BoundingBox CRS="EPSG:3785" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:3857" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:102113" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <BoundingBox CRS="EPSG:900913" minx="-1.99426e+07" miny="1.99947e+06" maxx="2.00128e+07" maxy="1.15367e+07"/> <Style> <Name>default</Name> <Title>default</Title> <LegendURL width="71" height="21"> <Format>image/png</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://webservices.nationalatlas.gov/wms?version=1.3.0&amp;service=WMS&amp;request=GetLegendGraphic&amp;sld_version=1.1.0&amp;layer=states1m&amp;format=image/png&amp;STYLE=default" /> </LegendURL> </Style> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>svsri0100g</Name> <Title>1 Million Scale - Satellite View with Shaded Relief 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>180</eastBoundLongitude> <southBoundLatitude>17.0592</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.0592" maxx="180" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:2163" minx="-8.19679e+06" miny="-3.07581e+06" maxx="8.19748e+06" maxy="1.09171e+07"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:4267" minx="17.0592" miny="-179.998" maxx="71.954" maxy="180"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91518e+06" maxx="2.00375e+07" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88685e+06" maxx="1.91614e+07" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92771e+06" maxx="2.00375e+07" maxy="1.17366e+07"/> </Layer> <Layer queryable="0" opaque="0" cascaded="0"> <Name>treecanopy</Name> <Title>1 Million Scale - Tree Canopy 100 Meter Resolution</Title> <EX_GeographicBoundingBox> <westBoundLongitude>-179.998</westBoundLongitude> <eastBoundLongitude>-62.6641</eastBoundLongitude> <southBoundLatitude>17.06</southBoundLatitude> <northBoundLatitude>71.954</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-179.998" miny="17.06" maxx="-62.6641" maxy="71.954"/> <BoundingBox CRS="EPSG:4326" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:2163" minx="-7.36962e+06" miny="-3.07607e+06" maxx="3.95469e+06" maxy="4.36977e+06"/> <BoundingBox CRS="EPSG:102100" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:4269" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:4267" minx="17.06" miny="-179.998" maxx="71.954" maxy="-62.6641"/> <BoundingBox CRS="EPSG:54004" minx="-2.00373e+07" miny="1.91528e+06" maxx="-6.97574e+06" maxy="1.1696e+07"/> <BoundingBox CRS="EPSG:54008" minx="-1.91612e+07" miny="1.88695e+06" maxx="-2.16752e+06" maxy="7.987e+06"/> <BoundingBox CRS="EPSG:3785" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:3857" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:102113" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <BoundingBox CRS="EPSG:900913" minx="-2.00373e+07" miny="1.92781e+06" maxx="-6.97574e+06" maxy="1.17366e+07"/> <Style> <Name>treei0100a</Name> <Title>treei0100a</Title> <LegendURL width="109" height="430"> <Format>image/gif</Format> <OnlineResource xmlns:xlink="http://www.w3.org/1999/xlink" xlink:type="simple" xlink:href="http://nationalatlas.gov/images/treei0100a.gif"/> </LegendURL> </Style> </Layer> </Layer> </Capability> </WMS_Capabilities> ��������������������������������������������������������OWSLib-0.16.0/tests/resources/wms_nccs_nasa_getcap_130.xml������������������������������������������0000664�0000000�0000000�00000420065�13217064120�0023322�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <WMS_Capabilities version="1.3.0" updateSequence="2015-08-12T21:21:32.525Z" xmlns="http://www.opengis.net/wms" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wms http://schemas.opengis.net/wms/1.3.0/capabilities_1_3_0.xsd"> <Service> <Name>WMS</Name> <Title>Data Catalog</Title> <Abstract>Scientific Data</Abstract> <KeywordList> <Keyword>meteorology</Keyword> <Keyword>atmosphere</Keyword> <Keyword>climate</Keyword> <Keyword>ocean</Keyword> <Keyword>earth science</Keyword> </KeywordList> <OnlineResource xlink:type="simple" xlink:href="http://www.nccs.nasa.gov"/> <ContactInformation> <ContactPersonPrimary> <ContactPerson>Support</ContactPerson> <ContactOrganization>NCCS Data Services Group</ContactOrganization> </ContactPersonPrimary> <ContactVoiceTelephone></ContactVoiceTelephone> <ContactElectronicMailAddress>support@nccs.nasa.gov</ContactElectronicMailAddress> </ContactInformation> <Fees>none</Fees> <AccessConstraints>none</AccessConstraints> <LayerLimit>1</LayerLimit> <MaxWidth>2048</MaxWidth> <MaxHeight>2048</MaxHeight> </Service> <Capability> <Request> <GetCapabilities> <Format>text/xml</Format> <DCPType><HTTP><Get><OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll"/></Get></HTTP></DCPType> </GetCapabilities> <GetMap> <Format>image/png</Format> <Format>image/png;mode=32bit</Format> <Format>image/gif</Format> <Format>image/jpeg</Format> <Format>application/vnd.google-earth.kmz</Format> <DCPType><HTTP><Get><OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll"/></Get></HTTP></DCPType> </GetMap> <GetFeatureInfo> <Format>image/png</Format> <Format>text/xml</Format> <DCPType><HTTP><Get><OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll"/></Get></HTTP></DCPType> </GetFeatureInfo> </Request> <Exception> <Format>XML</Format> </Exception> <Layer> <Title>Data Catalog</Title> <CRS>EPSG:4326</CRS> <CRS>CRS:84</CRS> <CRS>EPSG:41001</CRS> <CRS>EPSG:27700</CRS> <CRS>EPSG:3408</CRS> <CRS>EPSG:3409</CRS> <CRS>EPSG:3857</CRS> <CRS>EPSG:32661</CRS> <CRS>EPSG:32761</CRS> <Layer> <Title>Seasonal OCN_ANA_3D_ll</Title> <Layer queryable="1"> <Name>T</Name> <Title>potential_temperature</Title> <Abstract>potential_temperature</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=T&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>S</Name> <Title>salinity</Title> <Abstract>salinity</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=S&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>U</Name> <Title>eastward_current</Title> <Abstract>eastward_current</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=U&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>V</Name> <Title>northward_current</Title> <Abstract>northward_current</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=V&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>RHO</Name> <Title>density</Title> <Abstract>density</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=RHO&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>WMO</Name> <Title>upward_mass_transport</Title> <Abstract>upward_mass_transport</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=WMO&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> <Layer queryable="1"> <Name>current</Name> <Title>current</Title> <Abstract>Automatically-generated vector field, composed of the fields eastward_current and northward_current</Abstract> <EX_GeographicBoundingBox> <westBoundLongitude>-180.0</westBoundLongitude> <eastBoundLongitude>179.0</eastBoundLongitude> <southBoundLatitude>-90.0</southBoundLatitude> <northBoundLatitude>90.0</northBoundLatitude> </EX_GeographicBoundingBox> <BoundingBox CRS="CRS:84" minx="-180.0" maxx="179.0" miny="-90.0" maxy="90.0"/> <Dimension name="elevation" units="layer" default="-1.0"> -1.0,-2.0,-3.0,-4.0,-5.0,-6.0,-7.0,-8.0,-9.0,-10.0,-11.0,-12.0,-13.0,-14.0,-15.0,-16.0,-17.0,-18.0,-19.0,-20.0,-21.0,-22.0,-23.0,-24.0,-25.0,-26.0,-27.0,-28.0,-29.0,-30.0,-31.0,-32.0,-33.0,-34.0,-35.0,-36.0,-37.0,-38.0,-39.0,-40.0 </Dimension> <Dimension name="time" units="ISO8601" multipleValues="true" current="true" default="2015-07-01T12:00:00Z"> 1993-01-01T12:00:00Z,1993-02-01T12:00:00Z,1993-03-01T12:00:00Z,1993-04-01T12:00:00Z,1993-05-01T12:00:00Z,1993-06-01T12:00:00Z,1993-07-01T12:00:00Z,1993-08-01T12:00:00Z,1993-09-01T12:00:00Z,1993-10-01T12:00:00Z,1993-11-01T12:00:00Z,1993-12-01T12:00:00Z,1994-01-01T12:00:00Z,1994-02-01T12:00:00Z,1994-03-01T12:00:00Z,1994-04-01T12:00:00Z,1994-05-01T12:00:00Z,1994-06-01T12:00:00Z,1994-07-01T12:00:00Z,1994-08-01T12:00:00Z,1994-09-01T12:00:00Z,1994-10-01T12:00:00Z,1994-11-01T12:00:00Z,1994-12-01T12:00:00Z,1995-01-01T12:00:00Z,1995-02-01T12:00:00Z,1995-03-01T12:00:00Z,1995-04-01T12:00:00Z,1995-05-01T12:00:00Z,1995-06-01T12:00:00Z,1995-07-01T12:00:00Z,1995-08-01T12:00:00Z,1995-09-01T12:00:00Z,1995-10-01T12:00:00Z,1995-11-01T12:00:00Z,1995-12-01T12:00:00Z,1996-01-01T12:00:00Z,1996-02-01T12:00:00Z,1996-03-01T12:00:00Z,1996-04-01T12:00:00Z,1996-05-01T12:00:00Z,1996-06-01T12:00:00Z,1996-07-01T12:00:00Z,1996-08-01T12:00:00Z,1996-09-01T12:00:00Z,1996-10-01T12:00:00Z,1996-11-01T12:00:00Z,1996-12-01T12:00:00Z,1997-01-01T12:00:00Z,1997-02-01T12:00:00Z,1997-03-01T12:00:00Z,1997-04-01T12:00:00Z,1997-05-01T12:00:00Z,1997-06-01T12:00:00Z,1997-07-01T12:00:00Z,1997-08-01T12:00:00Z,1997-09-01T12:00:00Z,1997-10-01T12:00:00Z,1997-11-01T12:00:00Z,1997-12-01T12:00:00Z,1998-01-01T12:00:00Z,1998-02-01T12:00:00Z,1998-03-01T12:00:00Z,1998-04-01T12:00:00Z,1998-05-01T12:00:00Z,1998-06-01T12:00:00Z,1998-07-01T12:00:00Z,1998-08-01T12:00:00Z,1998-09-01T12:00:00Z,1998-10-01T12:00:00Z,1998-11-01T12:00:00Z,1998-12-01T12:00:00Z,1999-01-01T12:00:00Z,1999-02-01T12:00:00Z,1999-03-01T12:00:00Z,1999-04-01T12:00:00Z,1999-05-01T12:00:00Z,1999-06-01T12:00:00Z,1999-07-01T12:00:00Z,1999-08-01T12:00:00Z,1999-09-01T12:00:00Z,1999-10-01T12:00:00Z,1999-11-01T12:00:00Z,1999-12-01T12:00:00Z,2000-01-01T12:00:00Z,2000-02-01T12:00:00Z,2000-03-01T12:00:00Z,2000-04-01T12:00:00Z,2000-05-01T12:00:00Z,2000-06-01T12:00:00Z,2000-07-01T12:00:00Z,2000-08-01T12:00:00Z,2000-09-01T12:00:00Z,2000-10-01T12:00:00Z,2000-11-01T12:00:00Z,2000-12-01T12:00:00Z,2001-01-01T12:00:00Z,2001-02-01T12:00:00Z,2001-03-01T12:00:00Z,2001-04-01T12:00:00Z,2001-05-01T12:00:00Z,2001-06-01T12:00:00Z,2001-07-01T12:00:00Z,2001-08-01T12:00:00Z,2001-09-01T12:00:00Z,2001-10-01T12:00:00Z,2001-11-01T12:00:00Z,2001-12-01T12:00:00Z,2002-01-01T12:00:00Z,2002-02-01T12:00:00Z,2002-03-01T12:00:00Z,2002-04-01T12:00:00Z,2002-05-01T12:00:00Z,2002-06-01T12:00:00Z,2002-07-01T12:00:00Z,2002-08-01T12:00:00Z,2002-09-01T12:00:00Z,2002-10-01T12:00:00Z,2002-11-01T12:00:00Z,2002-12-01T12:00:00Z,2003-01-01T12:00:00Z,2003-02-01T12:00:00Z,2003-03-01T12:00:00Z,2003-04-01T12:00:00Z,2003-05-01T12:00:00Z,2003-06-01T12:00:00Z,2003-07-01T12:00:00Z,2003-08-01T12:00:00Z,2003-09-01T12:00:00Z,2003-10-01T12:00:00Z,2003-11-01T12:00:00Z,2003-12-01T12:00:00Z,2004-01-01T12:00:00Z,2004-02-01T12:00:00Z,2004-03-01T12:00:00Z,2004-04-01T12:00:00Z,2004-05-01T12:00:00Z,2004-06-01T12:00:00Z,2004-07-01T12:00:00Z,2004-08-01T12:00:00Z,2004-09-01T12:00:00Z,2004-10-01T12:00:00Z,2004-11-01T12:00:00Z,2004-12-01T12:00:00Z,2005-01-01T12:00:00Z,2005-02-01T12:00:00Z,2005-03-01T12:00:00Z,2005-04-01T12:00:00Z,2005-05-01T12:00:00Z,2005-06-01T12:00:00Z,2005-07-01T12:00:00Z,2005-08-01T12:00:00Z,2005-09-01T12:00:00Z,2005-10-01T12:00:00Z,2005-11-01T12:00:00Z,2005-12-01T12:00:00Z,2006-01-01T12:00:00Z,2006-02-01T12:00:00Z,2006-03-01T12:00:00Z,2006-04-01T12:00:00Z,2006-05-01T12:00:00Z,2006-06-01T12:00:00Z,2006-07-01T12:00:00Z,2006-08-01T12:00:00Z,2006-09-01T12:00:00Z,2006-10-01T12:00:00Z,2006-11-01T12:00:00Z,2006-12-01T12:00:00Z,2007-01-01T12:00:00Z,2007-02-01T12:00:00Z,2007-03-01T12:00:00Z,2007-04-01T12:00:00Z,2007-05-01T12:00:00Z,2007-06-01T12:00:00Z,2007-07-01T12:00:00Z,2007-08-01T12:00:00Z,2007-09-01T12:00:00Z,2007-10-01T12:00:00Z,2007-11-01T12:00:00Z,2007-12-01T12:00:00Z,2008-01-01T12:00:00Z,2008-02-01T12:00:00Z,2008-03-01T12:00:00Z,2008-04-01T12:00:00Z,2008-05-01T12:00:00Z,2008-06-01T12:00:00Z,2008-07-01T12:00:00Z,2008-08-01T12:00:00Z,2008-09-01T12:00:00Z,2008-10-01T12:00:00Z,2008-11-01T12:00:00Z,2008-12-01T12:00:00Z,2009-01-01T12:00:00Z,2009-02-01T12:00:00Z,2009-03-01T12:00:00Z,2009-04-01T12:00:00Z,2009-05-01T12:00:00Z,2009-06-01T12:00:00Z,2009-07-01T12:00:00Z,2009-08-01T12:00:00Z,2009-09-01T12:00:00Z,2009-10-01T12:00:00Z,2009-11-01T12:00:00Z,2009-12-01T12:00:00Z,2010-01-01T12:00:00Z,2010-02-01T12:00:00Z,2010-03-01T12:00:00Z,2010-04-01T12:00:00Z,2010-05-01T12:00:00Z,2010-06-01T12:00:00Z,2010-07-01T12:00:00Z,2010-08-01T12:00:00Z,2010-09-01T12:00:00Z,2010-10-01T12:00:00Z,2010-11-01T12:00:00Z,2010-12-01T12:00:00Z,2011-01-01T12:00:00Z,2011-02-01T12:00:00Z,2011-03-01T12:00:00Z,2011-04-01T12:00:00Z,2011-05-01T12:00:00Z,2011-06-01T12:00:00Z,2011-07-01T12:00:00Z,2011-08-01T12:00:00Z,2011-09-01T12:00:00Z,2011-10-01T12:00:00Z,2011-11-01T12:00:00Z,2011-12-01T12:00:00Z,2012-01-01T12:00:00Z,2012-02-01T12:00:00Z,2012-03-01T12:00:00Z,2012-04-01T12:00:00Z,2012-05-01T12:00:00Z,2012-06-01T12:00:00Z,2012-07-01T12:00:00Z,2012-08-01T12:00:00Z,2012-09-01T12:00:00Z,2012-10-01T12:00:00Z,2012-11-01T12:00:00Z,2012-12-01T12:00:00Z,2013-01-01T12:00:00Z,2013-02-01T12:00:00Z,2013-03-01T12:00:00Z,2013-04-01T12:00:00Z,2013-05-01T12:00:00Z,2013-06-01T12:00:00Z,2013-07-01T12:00:00Z,2013-08-01T12:00:00Z,2013-09-01T12:00:00Z,2013-10-01T12:00:00Z,2013-11-01T12:00:00Z,2013-12-01T12:00:00Z,2014-01-01T12:00:00Z,2014-02-01T12:00:00Z,2014-03-01T12:00:00Z,2014-04-01T12:00:00Z,2014-05-01T12:00:00Z,2014-06-01T12:00:00Z,2014-07-01T12:00:00Z,2014-08-01T12:00:00Z,2014-09-01T12:00:00Z,2014-10-01T12:00:00Z,2014-11-01T12:00:00Z,2014-12-01T12:00:00Z,2015-01-01T12:00:00Z,2015-02-01T12:00:00Z,2015-03-01T12:00:00Z,2015-04-01T12:00:00Z,2015-05-01T12:00:00Z,2015-06-01T12:00:00Z,2015-07-01T12:00:00Z </Dimension> <Style> <Name>barb/alg2</Name> <Title>barb/alg2</Title> <Abstract>barb style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>barb/rainbow</Name> <Title>barb/rainbow</Title> <Abstract>barb style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>barb/ncview</Name> <Title>barb/ncview</Title> <Abstract>barb style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>barb/occam</Name> <Title>barb/occam</Title> <Abstract>barb style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>barb/greyscale</Name> <Title>barb/greyscale</Title> <Abstract>barb style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>barb/redblue</Name> <Title>barb/redblue</Title> <Abstract>barb style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>barb/alg</Name> <Title>barb/alg</Title> <Abstract>barb style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>barb/occam_pastel-30</Name> <Title>barb/occam_pastel-30</Title> <Abstract>barb style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>barb/ferret</Name> <Title>barb/ferret</Title> <Abstract>barb style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>barb/sst_36</Name> <Title>barb/sst_36</Title> <Abstract>barb style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>fancyvec/alg2</Name> <Title>fancyvec/alg2</Title> <Abstract>fancyvec style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>fancyvec/rainbow</Name> <Title>fancyvec/rainbow</Title> <Abstract>fancyvec style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>fancyvec/ncview</Name> <Title>fancyvec/ncview</Title> <Abstract>fancyvec style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>fancyvec/occam</Name> <Title>fancyvec/occam</Title> <Abstract>fancyvec style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>fancyvec/greyscale</Name> <Title>fancyvec/greyscale</Title> <Abstract>fancyvec style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>fancyvec/redblue</Name> <Title>fancyvec/redblue</Title> <Abstract>fancyvec style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>fancyvec/alg</Name> <Title>fancyvec/alg</Title> <Abstract>fancyvec style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>fancyvec/occam_pastel-30</Name> <Title>fancyvec/occam_pastel-30</Title> <Abstract>fancyvec style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>fancyvec/ferret</Name> <Title>fancyvec/ferret</Title> <Abstract>fancyvec style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>fancyvec/sst_36</Name> <Title>fancyvec/sst_36</Title> <Abstract>fancyvec style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>trivec/alg2</Name> <Title>trivec/alg2</Title> <Abstract>trivec style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>trivec/rainbow</Name> <Title>trivec/rainbow</Title> <Abstract>trivec style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>trivec/ncview</Name> <Title>trivec/ncview</Title> <Abstract>trivec style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>trivec/occam</Name> <Title>trivec/occam</Title> <Abstract>trivec style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>trivec/greyscale</Name> <Title>trivec/greyscale</Title> <Abstract>trivec style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>trivec/redblue</Name> <Title>trivec/redblue</Title> <Abstract>trivec style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>trivec/alg</Name> <Title>trivec/alg</Title> <Abstract>trivec style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>trivec/occam_pastel-30</Name> <Title>trivec/occam_pastel-30</Title> <Abstract>trivec style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>trivec/ferret</Name> <Title>trivec/ferret</Title> <Abstract>trivec style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>trivec/sst_36</Name> <Title>trivec/sst_36</Title> <Abstract>trivec style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>stumpvec/alg2</Name> <Title>stumpvec/alg2</Title> <Abstract>stumpvec style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>stumpvec/rainbow</Name> <Title>stumpvec/rainbow</Title> <Abstract>stumpvec style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>stumpvec/ncview</Name> <Title>stumpvec/ncview</Title> <Abstract>stumpvec style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>stumpvec/occam</Name> <Title>stumpvec/occam</Title> <Abstract>stumpvec style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>stumpvec/greyscale</Name> <Title>stumpvec/greyscale</Title> <Abstract>stumpvec style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>stumpvec/redblue</Name> <Title>stumpvec/redblue</Title> <Abstract>stumpvec style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>stumpvec/alg</Name> <Title>stumpvec/alg</Title> <Abstract>stumpvec style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>stumpvec/occam_pastel-30</Name> <Title>stumpvec/occam_pastel-30</Title> <Abstract>stumpvec style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>stumpvec/ferret</Name> <Title>stumpvec/ferret</Title> <Abstract>stumpvec style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>stumpvec/sst_36</Name> <Title>stumpvec/sst_36</Title> <Abstract>stumpvec style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>linevec/alg2</Name> <Title>linevec/alg2</Title> <Abstract>linevec style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>linevec/rainbow</Name> <Title>linevec/rainbow</Title> <Abstract>linevec style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>linevec/ncview</Name> <Title>linevec/ncview</Title> <Abstract>linevec style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>linevec/occam</Name> <Title>linevec/occam</Title> <Abstract>linevec style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>linevec/greyscale</Name> <Title>linevec/greyscale</Title> <Abstract>linevec style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>linevec/redblue</Name> <Title>linevec/redblue</Title> <Abstract>linevec style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>linevec/alg</Name> <Title>linevec/alg</Title> <Abstract>linevec style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>linevec/occam_pastel-30</Name> <Title>linevec/occam_pastel-30</Title> <Abstract>linevec style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>linevec/ferret</Name> <Title>linevec/ferret</Title> <Abstract>linevec style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>linevec/sst_36</Name> <Title>linevec/sst_36</Title> <Abstract>linevec style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>vector/alg2</Name> <Title>vector/alg2</Title> <Abstract>vector style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>vector/rainbow</Name> <Title>vector/rainbow</Title> <Abstract>vector style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>vector/ncview</Name> <Title>vector/ncview</Title> <Abstract>vector style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>vector/occam</Name> <Title>vector/occam</Title> <Abstract>vector style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>vector/greyscale</Name> <Title>vector/greyscale</Title> <Abstract>vector style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>vector/redblue</Name> <Title>vector/redblue</Title> <Abstract>vector style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>vector/alg</Name> <Title>vector/alg</Title> <Abstract>vector style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>vector/occam_pastel-30</Name> <Title>vector/occam_pastel-30</Title> <Abstract>vector style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>vector/ferret</Name> <Title>vector/ferret</Title> <Abstract>vector style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>vector/sst_36</Name> <Title>vector/sst_36</Title> <Abstract>vector style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> <Style> <Name>boxfill/alg2</Name> <Title>boxfill/alg2</Title> <Abstract>boxfill style, using the alg2 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg2"/> </LegendURL> </Style> <Style> <Name>boxfill/rainbow</Name> <Title>boxfill/rainbow</Title> <Abstract>boxfill style, using the rainbow palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=rainbow"/> </LegendURL> </Style> <Style> <Name>boxfill/ncview</Name> <Title>boxfill/ncview</Title> <Abstract>boxfill style, using the ncview palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ncview"/> </LegendURL> </Style> <Style> <Name>boxfill/occam</Name> <Title>boxfill/occam</Title> <Abstract>boxfill style, using the occam palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam"/> </LegendURL> </Style> <Style> <Name>boxfill/greyscale</Name> <Title>boxfill/greyscale</Title> <Abstract>boxfill style, using the greyscale palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=greyscale"/> </LegendURL> </Style> <Style> <Name>boxfill/redblue</Name> <Title>boxfill/redblue</Title> <Abstract>boxfill style, using the redblue palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=redblue"/> </LegendURL> </Style> <Style> <Name>boxfill/alg</Name> <Title>boxfill/alg</Title> <Abstract>boxfill style, using the alg palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=alg"/> </LegendURL> </Style> <Style> <Name>boxfill/occam_pastel-30</Name> <Title>boxfill/occam_pastel-30</Title> <Abstract>boxfill style, using the occam_pastel-30 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=occam_pastel-30"/> </LegendURL> </Style> <Style> <Name>boxfill/ferret</Name> <Title>boxfill/ferret</Title> <Abstract>boxfill style, using the ferret palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=ferret"/> </LegendURL> </Style> <Style> <Name>boxfill/sst_36</Name> <Title>boxfill/sst_36</Title> <Abstract>boxfill style, using the sst_36 palette</Abstract> <LegendURL width="110" height="264"> <Format>image/png</Format> <OnlineResource xlink:type="simple" xlink:href="http://dataserver.nccs.nasa.gov/thredds/wms/seasonal/ocn_ana_3D_ll?REQUEST=GetLegendGraphic&amp;LAYER=current&amp;PALETTE=sst_36"/> </LegendURL> </Style> </Layer> </Layer> </Layer> </Capability> </WMS_Capabilities>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_52nCapabilities.xml�����������������������������������������������0000664�0000000�0000000�00000012074�13217064120�0022402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <wps:Capabilities xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xml:lang="en-US" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsGetCapabilities_response.xsd" updateSequence="1"> <ows:ServiceIdentification> <ows:Title>52°North WPS 3.3.1</ows:Title> <ows:Abstract>Service based on the 52°North implementation of WPS 1.0.0</ows:Abstract> <ows:Keywords> <ows:Keyword>WPS</ows:Keyword> <ows:Keyword>geospatial</ows:Keyword> <ows:Keyword>geoprocessing</ows:Keyword> </ows:Keywords> <ows:ServiceType>WPS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>NONE</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>52North</ows:ProviderName> <ows:ProviderSite xlink:href="http://www.52north.org/"/> <ows:ServiceContact> <ows:IndividualName>Benjamin Pross</ows:IndividualName> <ows:PositionName>Software engineer, Geoprocessing Community Lead</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>+49 (0)251.396371-42</ows:Voice> <ows:Facsimile>+49 (0)251.396371-11</ows:Facsimile> </ows:Phone> <ows:Address> <ows:DeliveryPoint>Martin-Luther-King-Weg 24</ows:DeliveryPoint> <ows:City>Münster</ows:City> <ows:AdministrativeArea>NRW</ows:AdministrativeArea> <ows:PostalCode>48155</ows:PostalCode> <ows:Country>Germany</ows:Country> <ows:ElectronicMailAddress>b.pross @52north.org</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService?"/> <ows:Post xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="DescribeProcess"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService?"/> <ows:Post xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="Execute"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService?"/> <ows:Post xlink:href="http://geoprocessing.demo.52north.org:8080/52n-wps-webapp-3.3.1/WebProcessingService"/> </ows:HTTP> </ows:DCP> </ows:Operation> </ows:OperationsMetadata> <wps:ProcessOfferings> <wps:Process wps:processVersion="1.1.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.MultiReferenceInputAlgorithm</ows:Identifier> <ows:Title>for testing multiple inputs by reference</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.EchoProcess</ows:Identifier> <ows:Title>Echo process</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.1.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.MultiReferenceBinaryInputAlgorithm</ows:Identifier> <ows:Title>for testing multiple binary inputs by reference</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.LongRunningDummyTestClass</ows:Identifier> <ows:Title>org.n52.wps.server.algorithm.test.LongRunningDummyTestClass</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.1.0"> <ows:Identifier>org.n52.wps.server.algorithm.JTSConvexHullAlgorithm</ows:Identifier> <ows:Title>org.n52.wps.server.algorithm.JTSConvexHullAlgorithm</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.MultipleComplexInAndOutputsDummyTestClass</ows:Identifier> <ows:Title>org.n52.wps.server.algorithm.test.MultipleComplexInAndOutputsDummyTestClass</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>org.n52.wps.server.algorithm.test.DummyTestClass</ows:Identifier> <ows:Title>org.n52.wps.server.algorithm.test.DummyTestClass</ows:Title> </wps:Process> </wps:ProcessOfferings> <wps:Languages> <wps:Default> <ows:Language>en-US</ows:Language> </wps:Default> <wps:Supported> <ows:Language>en-US</ows:Language> </wps:Supported> </wps:Languages> </wps:Capabilities>��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_CEDACapabilities.xml����������������������������������������������0000664�0000000�0000000�00000032427�13217064120�0022476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <Capabilities xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.opengeospatial.net/wps" xmlns:ows="http://www.opengeospatial.net/ows" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0.0" xsi:schemaLocation="http://www.opengeospatial.net/wps ..\wpsGetCapabilities.xsd"> <ows:ServiceIdentification> <ows:Title>WPS Pylons Test Server</ows:Title> <ows:Abstract/> <ows:Keywords> <ows:Keyword>keyword</ows:Keyword><ows:Keyword>keyword2</ows:Keyword> </ows:Keywords> <ows:ServiceType>WPS</ows:ServiceType> <ows:Fees/> <ows:AccessConstraints/> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>British Atmospheric Data Centre</ows:ProviderName> <ows:ProviderSite xlink:href="http://badc.nerc.ac.uk"/> <ows:ServiceContact> <ows:IndividualName>Stephen Pascoe</ows:IndividualName> <ows:PositionName/> <ows:ContactInfo> <ows:Phone> <ows:Voice/> <ows:Facsimile/> </ows:Phone> <ows:Address> <ows:DeliveryPoint>-</ows:DeliveryPoint> <ows:City/> <ows:AdministrativeArea/> <ows:PostalCode/> <ows:Country/> <ows:ElectronicMailAddress>S.Pascoe@rl.ac.uk</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ceda-wps2.badc.rl.ac.uk/wps?"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="DescribeProcess"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ceda-wps2.badc.rl.ac.uk/wps?"/> <ows:Post xlink:href="http://ceda-wps2.badc.rl.ac.uk/wps?"/> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="Execute"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://ceda-wps2.badc.rl.ac.uk/wps?"/> <ows:Post xlink:href="http://ceda-wps2.badc.rl.ac.uk/wps?"/> </ows:HTTP> </ows:DCP> </ows:Operation> </ows:OperationsMetadata> <ProcessOfferings> <Process processVersion="1"> <ows:Identifier>CDMSSubsetVariable</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>NCDumpIt</ows:Identifier> <ows:Title>Calls ncdump on the input file path and writes it to an output file.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>TestDap</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CDMSDescribeVariableDomain</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CFCheck</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>DoubleIt</ows:Identifier> <ows:Title>Doubles the input number and returns value</ows:Title> <ows:Abstract>This is test process used to demonstrate how the WPS and the WPS User Interface work. The process accepts an integer or floating point number and returns some XML containing the input number double.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>SimplePlot</ows:Identifier> <ows:Title>Creates a simple map plot.</ows:Title> <ows:Abstract>This process demonstrates the visualisation capabilities of the WPS. When using the WPS User Interface, the submission form renders a map from which the user can choose a bounding box. The user can also decide on a title for the plot. On submission, the plot is written to a file and the jobviewer page shows that the User Interface can provide a quick look of the output if requested. This process uses the matplotlib and basemap tools to render the map.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CDMSListDatasets</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CDMSListVariables</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>WCSWrapper</ows:Identifier> <ows:Title>Web Coverage Service Wrapper Process</ows:Title> <ows:Abstract>The "WCSWrapper" process provides a method of requesting a chain of Web Coverage Service (WCS) calls within a single Web Processing Service (WPS) request. The user can potentially define a large set of individual WCS requests across such dimensions as "Coverage", "Time" and "Level" that may not be permitted with a direct WCS call. The asynchronous nature of WPS allows these requests to be scheduled and queued in a manner appropriate to the WPS. The resulting outputs are then zipped up and the user is informed where to download them.&lt;br /&gt;&lt;br /&gt;Since each coverage provided by a WCS may be defined against different dimensions (such as "Level") the client must consult various WCS methods to populate the options available for each parameter. The process configuration file defines a set of known (and supported) WCS End Points. Once the user has selected a WCS End Point the client can interrogate the "GetCapabilities" method of that particular WCS to dynamically populate the "Coverage" options. Once the user has selected the coverage then the client calls the WCS "DescribeCoverage" method with the appropriate coverage to populate the "TimeStep" option. Once the time steps have been selected the client can call the WPS "Execute" method which will manage a series of calls to the chosen WCS "GetCoverage" method, saving the outputs locally and returning information about them in the WPS "ExecuteResponse" document.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>GetWeatherStations</ows:Identifier> <ows:Title>Writes a text file with one weather station per line</ows:Title> <ows:Abstract>The "GetWeatherStations" process allows the user to identify a set of Weather Station numeric IDs. These can be selected using temporal and spatial filters to derive a list of stations that the user is interested in. The output is a text file containing one station ID per line.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>ListPPFileHeader</ows:Identifier> <ows:Title>Writes a text file that contains a listing of pp-records in a file.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>TakeAges</ows:Identifier> <ows:Title>A test process to last a long time.</ows:Title> <ows:Abstract>It takes 10 minutes to run. That's it.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CMIP5FileFinder</ows:Identifier> <ows:Title>Writes a test file of matched CMIP5 files.</ows:Title> <ows:Abstract>Given a Modelling Centre, Model, Experiment, Realm and Variable Pattern (a regular expression pattern), this process matches all revelant files in the "latest" version of the CMIP5 archive and returns the paths to that files in "checkm" format.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>SubsetPPFile</ows:Identifier> <ows:Title>Filters a PP-file to generate a new subset PP-file.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>ExtractUKStationData</ows:Identifier> <ows:Title>ExtractUKStationData</ows:Title> <ows:Abstract>The "ExtractUKStationData" process provides tools to access surface station weather observations for a range of variables throughout the UK. These include temperature, rainfall and wind measurements. These records are available from 1859 to this year.&lt;br /&gt;&lt;br /&gt;You can select which stations you require using either a bounding box, a list of UK counties, a list of station IDs or an uploaded file containing station IDs. Data is returned in CSV or tab-delimited text files.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CDOWrapper1</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>MMDNCDiff</ows:Identifier> <ows:Title>MMDNCDiff</ows:Title> <ows:Abstract>Takes two URLs to NetCDF files, a variable ID, time and depth indices and differences the two variables returning a plot and netcdf file.</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>PlotRotatedGrid</ows:Identifier> <ows:Title>Creates a plot - to show we can plot a rotated grid.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>MMDAsync</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>MashMyDataMultiplier</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>Delegator</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>ExArchProc1</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>CDOShowInfo</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>PostTest</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>StatusTestProcess</ows:Identifier> <ows:Title>An process to test status responses</ows:Title> <ows:Abstract>An process to test status responses</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>WaitForFileDeletionCached</ows:Identifier> <ows:Title>An asynchronous job that waits for a file to be deleted</ows:Title> <ows:Abstract>Test process that will not finish untill the file is deleted</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>WaitForAllFilesToBeDeleted</ows:Identifier> <ows:Title>An asynchronous job that waits for a number of files to be deleted</ows:Title> <ows:Abstract>Test process that will not finish untill all the watched files are deleted</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>AsyncTest</ows:Identifier> <ows:Title>Does an asynchronous test job run</ows:Title> <ows:Abstract>Pretend process to handle asynchronous running</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>SyncTest1</ows:Identifier> <ows:Title>Just creates a file.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>WaitForFileDeletion</ows:Identifier> <ows:Title>An asynchronous job that waits for a file to be deleted</ows:Title> <ows:Abstract>Test process that will not finish untill the file is deleted</ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> <Process processVersion="1"> <ows:Identifier>ProcessTemplate</ows:Identifier> <ows:Title>Writes a text file and returns an output.</ows:Title> <ows:Abstract></ows:Abstract> <ows:Metadata xlink:title="none"/> </Process> </ProcessOfferings> </Capabilities>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_CEDADescribeProcess.xml�������������������������������������������0000664�0000000�0000000�00000004665�13217064120�0023167�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> <ProcessDescriptions xsi:schemaLocation="http://www.ogcnetwork.net/schemas/wps/1.0.0/wpsDescribeProcess.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ProcessDescription processVersion="none" statusSupported="False" storeSupported="True"> <ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">DoubleIt</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">Doubles the input number and returns value</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">This is test process used to demonstrate how the WPS and the WPS User Interface work. The process accepts an integer or floating point number and returns some XML containing the input number double.</ns1:Abstract> <ns1:Metadata xlink:title="none" xmlns:ns1="http://www.opengeospatial.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" /> <ns1:Metadata xlink:title="none" xmlns:ns1="http://www.opengeospatial.net/ows" xmlns:xlink="http://www.w3.org/1999/xlink" /> <DataInputs> <Input> <ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">NumberToDouble</ns1:Abstract> <LiteralData> <ns1:AnyValue xmlns:ns1="http://www.opengeospatial.net/ows"> </ns1:AnyValue> </LiteralData> <MinimumOccurs>1</MinimumOccurs> </Input> </DataInputs> <ProcessOutputs> <Output> <ns1:Identifier xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengeospatial.net/ows">OutputXML</ns1:Abstract> <ComplexOutput defaultEncoding="UTF-8" defaultFormat="text/XML" defaultSchema="NONE"> <SupportedComplexData> <Format>text/XML</Format> <Encoding>UTF-8</Encoding> <Schema>NONE</Schema> </SupportedComplexData> </ComplexOutput> </Output> </ProcessOutputs> </ProcessDescription> </ProcessDescriptions>���������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_EmuExecuteRequest11.xml�������������������������������������������0000664�0000000�0000000�00000001467�13217064120�0023254�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps100:Execute xmlns:wps100="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">bbox</ows110:Identifier><wps100:DataInputs><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">bbox</ows110:Identifier><wps100:Data><wps100:BoundingBoxData crs="epsg:4326" dimensions="2"><ows110:LowerCorner xmlns:ows110="http://www.opengis.net/ows/1.1">51.9 7.0</ows110:LowerCorner><ows110:UpperCorner xmlns:ows110="http://www.opengis.net/ows/1.1">53.0 8.0</ows110:UpperCorner></wps100:BoundingBoxData></wps100:Data></wps100:Input></wps100:DataInputs></wps100:Execute> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_EmuExecuteRequest7.xml��������������������������������������������0000664�0000000�0000000�00000001216�13217064120�0023171�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps100:Execute xmlns:wps100="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">wordcount</ows110:Identifier><wps100:DataInputs><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">text</ows110:Identifier><wps100:Reference xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://emu.readthedocs.org/en/latest/index.html"/></wps100:Input></wps100:DataInputs></wps100:Execute> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_EmuExecuteRequest8.xml��������������������������������������������0000664�0000000�0000000�00000001200�13217064120�0023163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps100:Execute xmlns:wps100="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">wordcount</ows110:Identifier><wps100:DataInputs><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">text</ows110:Identifier><wps100:Data><wps100:ComplexData>Alice was beginning to get very tired ...</wps100:ComplexData></wps100:Data></wps100:Input></wps100:DataInputs></wps100:Execute> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_EmuExecuteRequest9.xml��������������������������������������������0000664�0000000�0000000�00000001135�13217064120�0023173�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps100:Execute xmlns:wps100="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">helloworld</ows110:Identifier><wps100:DataInputs><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">user</ows110:Identifier><wps100:Data><wps100:LiteralData>Pingu</wps100:LiteralData></wps100:Data></wps100:Input></wps100:DataInputs></wps100:Execute> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_PMLExecuteRequest4.xml��������������������������������������������0000664�0000000�0000000�00000002125�13217064120�0023070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>reprojectImage</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>inputImage</ows:Identifier><wps:Data><wps:LiteralData>http://rsg.pml.ac.uk/wps/testdata/elev_srtm_30m.img</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>outputSRS</ows:Identifier><wps:Data><wps:LiteralData>EPSG:4326</wps:LiteralData></wps:Data></wps:Input></wps:DataInputs><wps:ResponseForm><wps:ResponseDocument status="true" storeExecuteResponse="true"><wps:Output asReference="true"><ows:Identifier>outputImage</ows:Identifier></wps:Output></wps:ResponseDocument></wps:ResponseForm></wps:Execute>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_PMLExecuteRequest5.xml��������������������������������������������0000664�0000000�0000000�00000001771�13217064120�0023077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>reprojectCoords</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>coords</ows:Identifier><wps:Data><wps:LiteralData>http://rsg.pml.ac.uk/wps/testdata/coords.txt</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>outputSRS</ows:Identifier><wps:Data><wps:LiteralData>EPSG:32630</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>inputSRS</ows:Identifier><wps:Data><wps:LiteralData>EPSG:4326</wps:LiteralData></wps:Data></wps:Input></wps:DataInputs></wps:Execute>�������OWSLib-0.16.0/tests/resources/wps_PMLExecuteRequest6.xml��������������������������������������������0000664�0000000�0000000�00000001654�13217064120�0023100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>v.net.path</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>input</ows:Identifier><wps:Data><wps:LiteralData>http://rsg.pml.ac.uk/wps/example/graph.gml</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>file</ows:Identifier><wps:Data><wps:LiteralData>1 -960123.1421801624 4665723.56559387 -101288.65106088226 5108200.011823481</wps:LiteralData></wps:Data></wps:Input></wps:DataInputs></wps:Execute>������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_PMLExecuteResponse5.xml�������������������������������������������0000664�0000000�0000000�00000003531�13217064120�0023241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<ns0:ExecuteResponse service="WPS" serviceInstance="http://rsg.pml.ac.uk/wps/generic.cgi?service=WPS&amp;request=GetCapabilities&amp;version=1.0.0" statusLocation="http://rsg.pml.ac.uk/wps/wpsoutputs/pywps-132078821036.xml" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd" xml:lang="en-CA" xmlns:ns0="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ns0:Process ns0:processVersion="1.0"> <ows:Identifier xmlns:ows="http://www.opengis.net/ows/1.1">reprojectCoords</ows:Identifier> <ows:Title xmlns:ows="http://www.opengis.net/ows/1.1">reproject coordinates</ows:Title> <ows:Abstract xmlns:ows="http://www.opengis.net/ows/1.1">reprojectCoords uses gdaltransform to reproject a list of coordinates from one projection to another. DataInputs example using 3 UK points in lat/long to UTM 30N e.g: '[coords=http://rsg.pml.ac.uk/wps/testdata/coords.txt;outputSRS=EPSG:32630;inputSRS=EPSG:4326]'</ows:Abstract> </ns0:Process> <ns0:Status creationTime="2011-11-08T21:36:55Z"> <ns0:ProcessSucceeded>PyWPS Process reprojectCoords successfully calculated</ns0:ProcessSucceeded> </ns0:Status> <ns0:ProcessOutputs> <ns0:Output> <ows:Identifier xmlns:ows="http://www.opengis.net/ows/1.1">stdout</ows:Identifier> <ows:Title xmlns:ows="http://www.opengis.net/ows/1.1">List of output coordinates in the form of x1 y1,x2 y2,x3 y3..</ows:Title> <ns0:Data> <ns0:ComplexData mimeType="text/plain"> 7504912.93758151 -764109.175074507,7750849.82379226 -22141.8611641468,8561828.42371234 -897195.923493867,7724946.16844165 -602984.014261927 </ns0:ComplexData> </ns0:Data> </ns0:Output> </ns0:ProcessOutputs> </ns0:ExecuteResponse>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_PMLExecuteResponse6.xml�������������������������������������������0000664�0000000�0000000�00000007442�13217064120�0023247�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<ns0:ExecuteResponse service="WPS" serviceInstance="http://rsg.pml.ac.uk/wps/vector.cgi?service=WPS&amp;request=GetCapabilities&amp;version=1.0.0" statusLocation="http://rsg.pml.ac.uk/wps/wpsoutputs/pywps-132084838963.xml" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd" xml:lang="en-CA" xmlns:ns0="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ns0:Process ns0:processVersion="1"> <ows:Identifier xmlns:ows="http://www.opengis.net/ows/1.1">v.net.path</ows:Identifier> <ows:Title xmlns:ows="http://www.opengis.net/ows/1.1">Finds shortest path on vector network.</ows:Title> <ows:Abstract xmlns:ows="http://www.opengis.net/ows/1.1">http://grass.osgeo.org/grass70/manuals/html70_user/v.net.path.html</ows:Abstract> <ows:Metadata xlink:href="http://rsg.pml.ac.uk/wps/vector.cgi?service=WPS&amp;request=DescribeProcess&amp;version=1.0.0&amp;identifier=v.net.path" xlink:title="vector" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" /> <ows:Metadata xlink:href="http://rsg.pml.ac.uk/wps/vector.cgi?service=WPS&amp;request=DescribeProcess&amp;version=1.0.0&amp;identifier=v.net.path" xlink:title="networking" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" /> </ns0:Process> <ns0:Status creationTime="2011-11-09T14:19:50Z"> <ns0:ProcessSucceeded>PyWPS Process v.net.path successfully calculated</ns0:ProcessSucceeded> </ns0:Status> <ns0:ProcessOutputs> <ns0:Output> <ows:Identifier xmlns:ows="http://www.opengis.net/ows/1.1">output</ows:Identifier> <ows:Title xmlns:ows="http://www.opengis.net/ows/1.1">Name for output vector map</ows:Title> <ns0:Data> <ns0:ComplexData encoding="UTF-8" mimeType="text/xml" schema="http://schemas.opengis.net/gml/2.1.2/feature.xsd"> <ns3:FeatureCollection xsi:schemaLocation="http://ogr.maptools.org/ output_0n7ij9D.xsd" xmlns:ns3="http://ogr.maptools.org/"> <gml:boundedBy xmlns:gml="http://www.opengis.net/gml"> <gml:Box> <gml:coord><gml:X>-960123.1421801626</gml:X><gml:Y>4665723.56559387</gml:Y></gml:coord> <gml:coord><gml:X>-101288.6510608822</gml:X><gml:Y>5108200.011823481</gml:Y></gml:coord> </gml:Box> </gml:boundedBy> <gml:featureMember xmlns:gml="http://www.opengis.net/gml"> <ns3:output fid="F0"> <ns3:geometryProperty><gml:LineString><gml:coordinates>-960123.142180162365548,4665723.565593870356679,0 -960123.142180162365548,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -960123.142180162598379,4665723.565593870356679,0 -711230.141176006174646,4710278.48552671354264,0 -711230.141176006174646,4710278.48552671354264,0 -623656.677859728806652,4848552.374973464757204,0 -623656.677859728806652,4848552.374973464757204,0 -410100.337491964863148,4923834.82589447684586,0 -410100.337491964863148,4923834.82589447684586,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882242746,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0 -101288.651060882257298,5108200.011823480948806,0</gml:coordinates></gml:LineString></ns3:geometryProperty> <ns3:cat>1</ns3:cat> <ns3:id>1</ns3:id> <ns3:fcat>0</ns3:fcat> <ns3:tcat>0</ns3:tcat> <ns3:sp>0</ns3:sp> <ns3:cost>1002619.181</ns3:cost> <ns3:fdist>0</ns3:fdist> <ns3:tdist>0</ns3:tdist> </ns3:output> </gml:featureMember> </ns3:FeatureCollection> </ns0:ComplexData> </ns0:Data> </ns0:Output> </ns0:ProcessOutputs> </ns0:ExecuteResponse>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSCapabilities.xml����������������������������������������������0000664�0000000�0000000�00000012113�13217064120�0022551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <wps:Capabilities service="WPS" version="1.0.0" xml:lang="en-US" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsGetCapabilities_response.xsd" updateSequence="1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ows:ServiceIdentification> <ows:Title>Geo Data Portal WPS Implementation</ows:Title> <ows:Abstract>A Geo Data Portal Service based on the 52north implementation of WPS 1.0.0</ows:Abstract> <ows:Keywords> <ows:Keyword>WPS</ows:Keyword> <ows:Keyword>AAFC</ows:Keyword> <ows:Keyword>geospatial</ows:Keyword> <ows:Keyword>geoprocessing</ows:Keyword> </ows:Keywords> <ows:ServiceType>WPS</ows:ServiceType> <ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> <ows:ServiceTypeVersion>0.4.0</ows:ServiceTypeVersion> <ows:Fees>NONE</ows:Fees> <ows:AccessConstraints>NONE</ows:AccessConstraints> </ows:ServiceIdentification> <ows:ServiceProvider> <ows:ProviderName>CIDA</ows:ProviderName> <ows:ProviderSite xlink:href="http://cida.usgs.gov/" /> <ows:ServiceContact> <ows:IndividualName>Ivan Suftin</ows:IndividualName> <ows:PositionName>Technical Lead</ows:PositionName> <ows:ContactInfo> <ows:Phone> <ows:Voice>608-821-3899</ows:Voice> <ows:Facsimile /> </ows:Phone> <ows:Address> <ows:DeliveryPoint>8505 Research Way</ows:DeliveryPoint> <ows:City>Middleton</ows:City> <ows:AdministrativeArea>WI</ows:AdministrativeArea> <ows:PostalCode>53562</ows:PostalCode> <ows:Country>US</ows:Country> <ows:ElectronicMailAddress>isuftin@usgs.gov</ows:ElectronicMailAddress> </ows:Address> </ows:ContactInfo> </ows:ServiceContact> </ows:ServiceProvider> <ows:OperationsMetadata> <ows:Operation name="GetCapabilities"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://localhost:8080/gdp-utility-wps/WebProcessingService" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="DescribeProcess"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://localhost:8080/gdp-utility-wps/WebProcessingService" /> </ows:HTTP> </ows:DCP> </ows:Operation> <ows:Operation name="Execute"> <ows:DCP> <ows:HTTP> <ows:Get xlink:href="http://localhost:8080/gdp-utility-wps/WebProcessingService" /> <ows:Post xlink:href="http://localhost:8080/gdp-utility-wps/WebProcessingService" /> </ows:HTTP> </ows:DCP> </ows:Operation> </ows:OperationsMetadata> <wps:ProcessOfferings> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.filemanagement.ReceiveFiles</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.discovery.CalculateWCSCoverageInfo</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.discovery.CalculateWCSCoverageInfo</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.communication.EmailWhenFinishedAlgorithm</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.communication.EmailWhenFinishedAlgorithm</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.communication.GeoserverManagementAlgorithm</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.communication.GeoserverManagementAlgorithm</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.discovery.GetWcsCoverages</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.discovery.GetWcsCoverages</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.filemanagement.GetWatersGeom</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.filemanagement.GetWatersGeom</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.discovery.ListOpendapGrids</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.discovery.ListOpendapGrids</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.filemanagement.CreateNewShapefileDataStore</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.filemanagement.CreateNewShapefileDataStore</ows:Title> </wps:Process> <wps:Process wps:processVersion="1.0.0"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.discovery.GetGridTimeRange</ows:Identifier> <ows:Title>gov.usgs.cida.gdp.wps.algorithm.discovery.GetGridTimeRange</ows:Title> </wps:Process> </wps:ProcessOfferings> <wps:Languages> <wps:Default> <ows:Language>en-US</ows:Language> </wps:Default> <wps:Supported> <ows:Language>en-US</ows:Language> </wps:Supported> </wps:Languages> </wps:Capabilities>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSDescribeProcess.xml�������������������������������������������0000664�0000000�0000000�00000027055�13217064120�0023252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <ns:ProcessDescriptions xmlns:ns="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsDescribeProcess_response.xsd" xml:lang="en-US" service="WPS" version="1.0.0"> <ProcessDescription statusSupported="true" storeSupported="true" ns:processVersion="1.0.0"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Feature Weighted Grid Statistics</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">This algorithm generates area weighted statistics of a gridded dataset for a set of vector polygon features. Using the bounding-box that encloses the feature data and the time range, if provided, a subset of the gridded dataset is requested from the remote gridded data server. Polygon representations are generated for cells in the retrieved grid. The polygon grid-cell representations are then projected to the feature data coordinate reference system. The grid-cells are used to calculate per grid-cell feature coverage fractions. Area-weighted statistics are then calculated for each feature using the grid values and fractions as weights. If the gridded dataset has a time range the last step is repeated for each time step within the time range or all time steps if a time range was not supplied.</ns1:Abstract> <DataInputs> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">FEATURE_COLLECTION</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Feature Collection</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">A feature collection encoded as a WFS request or one of the supported GML profiles.</ns1:Abstract> <ComplexData> <Default> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/2.0.0/feature.xsd</Schema> </Format> </Default> <Supported> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/2.0.0/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/2.1.1/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/2.1.2/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/2.1.2.1/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/3.0.0/base/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/3.0.1/base/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/3.1.0/base/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/3.1.1/base/feature.xsd</Schema> </Format> <Format> <MimeType>text/xml</MimeType> <Encoding>UTF-8</Encoding> <Schema>http://schemas.opengis.net/gml/3.2.1/base/feature.xsd</Schema> </Format> </Supported> </ComplexData> </Input> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">DATASET_URI</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Dataset URI</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The base data web service URI for the dataset of interest.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:anyURI" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="2147483647"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">DATASET_ID</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Dataset Identifier</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The unique identifier for the data type or variable of interest.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:string" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">REQUIRE_FULL_COVERAGE</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Require Full Coverage</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">If turned on, the service will require that the dataset of interest fully cover the polygon analysis zone data.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:boolean" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> <DefaultValue>true</DefaultValue> </LiteralData> </Input> <Input minOccurs="0" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">TIME_START</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Time Start</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The date to begin analysis.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:dateTime" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> </LiteralData> </Input> <Input minOccurs="0" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">TIME_END</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Time End</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The date to end analysis.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:dateTime" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">FEATURE_ATTRIBUTE_NAME</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Feature Attribute Name</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The attribute that will be used to label column headers in processing output.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:string" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">DELIMITER</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Delimiter</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">The delimiter that will be used to separate columns in the processing output.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:string" /> <ns1:AllowedValues xmlns:ns1="http://www.opengis.net/ows/1.1"> <ns1:Value>COMMA</ns1:Value> <ns1:Value>TAB</ns1:Value> <ns1:Value>SPACE</ns1:Value> </ns1:AllowedValues> <DefaultValue>COMMA</DefaultValue> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="7"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">STATISTICS</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Statistics</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">Statistics that will be returned for each feature in the processing output.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:string" /> <ns1:AllowedValues xmlns:ns1="http://www.opengis.net/ows/1.1"> <ns1:Value>MEAN</ns1:Value> <ns1:Value>MINIMUM</ns1:Value> <ns1:Value>MAXIMUM</ns1:Value> <ns1:Value>VARIANCE</ns1:Value> <ns1:Value>STD_DEV</ns1:Value> <ns1:Value>WEIGHT_SUM</ns1:Value> <ns1:Value>COUNT</ns1:Value> </ns1:AllowedValues> </LiteralData> </Input> <Input minOccurs="1" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">GROUP_BY</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Group By</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">If multiple features and statistics are selected, this will change whether the processing output columns are sorted according to statistics or feature attributes.</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:string" /> <ns1:AllowedValues xmlns:ns1="http://www.opengis.net/ows/1.1"> <ns1:Value>STATISTIC</ns1:Value> <ns1:Value>FEATURE_ATTRIBUTE</ns1:Value> </ns1:AllowedValues> </LiteralData> </Input> <Input minOccurs="0" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">SUMMARIZE_TIMESTEP</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Summarize Timestep</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">If selected, processing output will include columns with summarized statistics for all feature attribute values for each timestep</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:boolean" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> <DefaultValue>false</DefaultValue> </LiteralData> </Input> <Input minOccurs="0" maxOccurs="1"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">SUMMARIZE_FEATURE_ATTRIBUTE</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Summarize Feature Attribute</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">If selected, processing output will include a final row of statistics summarizing all timesteps for each feature attribute value</ns1:Abstract> <LiteralData> <ns1:DataType xmlns:ns1="http://www.opengis.net/ows/1.1" ns1:reference="xs:boolean" /> <ns1:AnyValue xmlns:ns1="http://www.opengis.net/ows/1.1" /> <DefaultValue>false</DefaultValue> </LiteralData> </Input> </DataInputs> <ProcessOutputs> <Output> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">OUTPUT</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Output File</ns1:Title> <ns1:Abstract xmlns:ns1="http://www.opengis.net/ows/1.1">A delimited text file containing requested process output.</ns1:Abstract> <ComplexOutput> <Default> <Format> <MimeType>text/csv</MimeType> <Encoding>UTF-8</Encoding> </Format> </Default> <Supported> <Format> <MimeType>text/csv</MimeType> <Encoding>UTF-8</Encoding> </Format> </Supported> </ComplexOutput> </Output> </ProcessOutputs> </ProcessDescription> </ns:ProcessDescriptions>�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteInvalidRequest.xml�������������������������������������0000664�0000000�0000000�00000010320�13217064120�0024440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <wps:Execute xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"> <ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows:Identifier> <wps:DataInputs> <wps:Input> <ows:Identifier>FEATURE_COLLECTION</ows:Identifier> <wps:Reference xlink:href="http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs"> <wps:Body> <wfs:GetFeature xmlns:wfs="http://www.opengis.net/wfs" xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" service="WFS" version="1.1.0" outputFormat="text/xml; subtype=gml/3.1.1" xsi:schemaLocation="http://www.opengis.net/wfs ../wfs/1.1.0/WFS.xsd"> <wfs:Query typeName="sample:CONUS_States"> <wfs:PropertyName>the_geom</wfs:PropertyName> <wfs:PropertyName>STATE</wfs:PropertyName> <ogc:Filter> <ogc:GmlObjectId gml:id="CONUS_States.508"/> </ogc:Filter> </wfs:Query> </wfs:GetFeature> </wps:Body> </wps:Reference> </wps:Input> <!-- <wps:Input> <ows:Identifier>FEATURE_ATTRIBUTE_NAME</ows:Identifier> <wps:Data> <wps:LiteralData>STATE</wps:LiteralData> </wps:Data> </wps:Input> --> <wps:Input> <ows:Identifier>DATASET_URI</ows:Identifier> <wps:Data> <wps:LiteralData>dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>DATASET_ID</ows:Identifier> <wps:Data> <wps:LiteralData>ccsm3_a1b_tmax</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>TIME_START</ows:Identifier> <wps:Data> <wps:LiteralData>1960-01-01T00:00:00.000Z</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>TIME_END</ows:Identifier> <wps:Data> <wps:LiteralData>1960-12-31T00:00:00.000Z</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>REQUIRE_FULL_COVERAGE</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>DELIMITER</ows:Identifier> <wps:Data> <wps:LiteralData>COMMA</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>MEAN</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>MINIMUM</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>MAXIMUM</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>VARIANCE</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>STD_DEV</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>WEIGHT_SUM</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>COUNT</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>GROUP_BY</ows:Identifier> <wps:Data> <wps:LiteralData>STATISTIC</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>SUMMARIZE_TIMESTEP</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>SUMMARIZE_FEATURE_ATTRIBUTE</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> </wps:DataInputs> <wps:ResponseForm> <wps:ResponseDocument storeExecuteResponse="true" status="true"> <wps:Output asReference="true"> <ows:Identifier>OUTPUT</ows:Identifier> </wps:Output> </wps:ResponseDocument> </wps:ResponseForm> </wps:Execute> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteInvalidRequestResponse.xml�����������������������������0000664�0000000�0000000�00000002152�13217064120�0026163�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<ns0:ExecuteResponse service="WPS" serviceInstance="http://cida.usgs.gov/climate/gdp/process/WebProcessingService?REQUEST=GetCapabilities&amp;SERVICE=WPS" statusLocation="http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1320676004359" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd" xml:lang="en-US" xmlns:ns0="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><ns0:Process ns0:processVersion="1.0.0"><ows:Identifier xmlns:ows="http://www.opengis.net/ows/1.1">gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows:Identifier><ows:Title xmlns:ows="http://www.opengis.net/ows/1.1">Feature Weighted Grid Statistics</ows:Title></ns0:Process><ns0:Status creationTime="2011-11-07T08:26:44.359-06:00"><ns0:ProcessFailed><ows:ExceptionReport xmlns:ows="http://www.opengis.net/ows/1.1"><ows:Exception><ows:ExceptionText>Attribute null not found in feature collection</ows:ExceptionText></ows:Exception></ows:ExceptionReport></ns0:ProcessFailed></ns0:Status></ns0:ExecuteResponse>����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteRequest1.xml�������������������������������������������0000664�0000000�0000000�00000006010�13217064120�0023213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>FEATURE_ATTRIBUTE_NAME</ows:Identifier><wps:Data><wps:LiteralData>the_geom</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_URI</ows:Identifier><wps:Data><wps:LiteralData>dods://cida.usgs.gov/qa/thredds/dodsC/derivatives/derivative-days_above_threshold.pr.ncml</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ensemble_b1_pr-days_above_threshold</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_START</ows:Identifier><wps:Data><wps:LiteralData>2010-01-01T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_END</ows:Identifier><wps:Data><wps:LiteralData>2011-01-01T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>REQUIRE_FULL_COVERAGE</ows:Identifier><wps:Data><wps:LiteralData>false</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DELIMITER</ows:Identifier><wps:Data><wps:LiteralData>COMMA</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MEAN</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>GROUP_BY</ows:Identifier><wps:Data><wps:LiteralData>STATISTIC</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_TIMESTEP</ows:Identifier><wps:Data><wps:LiteralData>false</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_FEATURE_ATTRIBUTE</ows:Identifier><wps:Data><wps:LiteralData>false</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>FEATURE_COLLECTION</ows:Identifier><wps:Reference xlink:href="http://cida.usgs.gov/climate/gdp/proxy/http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs"><wps:Body><wfs:GetFeature xsi:schemaLocation="http://www.opengis.net/wfs ../wfs/1.1.0/WFS.xsd" outputFormat="text/xml; subtype=gml/3.1.1" version="1.1.0" service="WFS"><wfs:Query typeName="sample:CSC_Boundaries"><wfs:PropertyName>the_geom</wfs:PropertyName><wfs:PropertyName>area_name</wfs:PropertyName><ogc:Filter><ogc:GmlObjectId gml:id="CSC_Boundaries.2"/></ogc:Filter></wfs:Query></wfs:GetFeature></wps:Body></wps:Reference></wps:Input></wps:DataInputs><wps:ResponseForm><wps:ResponseDocument status="true" storeExecuteResponse="true"><wps:Output asReference="true"><ows:Identifier>OUTPUT</ows:Identifier></wps:Output></wps:ResponseDocument></wps:ResponseForm></wps:Execute>������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteRequest2.xml�������������������������������������������0000664�0000000�0000000�00000010027�13217064120�0023217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>FEATURE_ATTRIBUTE_NAME</ows:Identifier><wps:Data><wps:LiteralData>STATE</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_URI</ows:Identifier><wps:Data><wps:LiteralData>dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1b_tmax</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1b_pr</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1fi_tmax</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_START</ows:Identifier><wps:Data><wps:LiteralData>1960-01-01T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_END</ows:Identifier><wps:Data><wps:LiteralData>1960-12-31T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>REQUIRE_FULL_COVERAGE</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DELIMITER</ows:Identifier><wps:Data><wps:LiteralData>COMMA</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MEAN</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MINIMUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MAXIMUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>WEIGHT_SUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>VARIANCE</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>STD_DEV</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>COUNT</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>GROUP_BY</ows:Identifier><wps:Data><wps:LiteralData>STATISTIC</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_TIMESTEP</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_FEATURE_ATTRIBUTE</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>FEATURE_COLLECTION</ows:Identifier><wps:Reference xlink:href="http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs"><wps:Body><wfs:GetFeature xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd" outputFormat="text/xml; subtype=gml/3.1.1" version="1.1.0" service="WFS"><wfs:Query typeName="sample:CONUS_States"><wfs:PropertyName>the_geom</wfs:PropertyName><wfs:PropertyName>STATE</wfs:PropertyName><ogc:Filter><ogc:GmlObjectId gml:id="CONUS_States.508"/><ogc:GmlObjectId gml:id="CONUS_States.469"/></ogc:Filter></wfs:Query></wfs:GetFeature></wps:Body></wps:Reference></wps:Input></wps:DataInputs><wps:ResponseForm><wps:ResponseDocument status="true" storeExecuteResponse="true"><wps:Output asReference="true"><ows:Identifier>OUTPUT</ows:Identifier></wps:Output></wps:ResponseDocument></wps:ResponseForm></wps:Execute>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteRequest3.xml�������������������������������������������0000664�0000000�0000000�00000012221�13217064120�0023216�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps100:Execute xmlns:wps100="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows110:Identifier><wps100:DataInputs><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">FEATURE_ATTRIBUTE_NAME</ows110:Identifier><wps100:Data><wps100:LiteralData>the_geom</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">DATASET_URI</ows110:Identifier><wps100:Data><wps100:LiteralData>dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">DATASET_ID</ows110:Identifier><wps100:Data><wps100:LiteralData>ccsm3_a1b_tmax</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">TIME_START</ows110:Identifier><wps100:Data><wps100:LiteralData>1960-01-01T00:00:00.000Z</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">TIME_END</ows110:Identifier><wps100:Data><wps100:LiteralData>1960-12-31T00:00:00.000Z</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">REQUIRE_FULL_COVERAGE</ows110:Identifier><wps100:Data><wps100:LiteralData>true</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">DELIMITER</ows110:Identifier><wps100:Data><wps100:LiteralData>COMMA</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>MEAN</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>MINIMUM</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>MAXIMUM</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>WEIGHT_SUM</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>VARIANCE</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>STD_DEV</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">STATISTICS</ows110:Identifier><wps100:Data><wps100:LiteralData>COUNT</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">GROUP_BY</ows110:Identifier><wps100:Data><wps100:LiteralData>STATISTIC</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">SUMMARIZE_TIMESTEP</ows110:Identifier><wps100:Data><wps100:LiteralData>false</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">SUMMARIZE_FEATURE_ATTRIBUTE</ows110:Identifier><wps100:Data><wps100:LiteralData>false</wps100:LiteralData></wps100:Data></wps100:Input><wps100:Input><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">FEATURE_COLLECTION</ows110:Identifier><wps100:Data><wps100:ComplexData encoding="UTF-8" mimeType="text/xml" schema="http://schemas.opengis.net/gml/3.1.1/base/feature.xsd"><gml311:featureMembers xmlns:gml311="http://www.opengis.net/gml" xsi:schemaLocation="gov.usgs.cida.gdp.draw http://cida.usgs.gov/climate/derivative/xsd/draw.xsd"><gml311:box gml311:id="box.1"><gml311:the_geom><gml311:MultiPolygon srsDimension="2" srsName="http://www.opengis.net/gml/srs/epsg.xml#4326"><gml311:polygonMember><gml311:Polygon><gml311:exterior><gml311:LinearRing><gml311:posList>-102.8184 39.5273 -102.8184 37.418 -101.2363 37.418 -101.2363 39.5273 -102.8184 39.5273</gml311:posList></gml311:LinearRing></gml311:exterior></gml311:Polygon></gml311:polygonMember></gml311:MultiPolygon></gml311:the_geom><gml311:ID>0</gml311:ID></gml311:box></gml311:featureMembers></wps100:ComplexData></wps100:Data></wps100:Input></wps100:DataInputs><wps100:ResponseForm><wps100:ResponseDocument status="true" storeExecuteResponse="true"><wps100:Output asReference="true"><ows110:Identifier xmlns:ows110="http://www.opengis.net/ows/1.1">OUTPUT</ows110:Identifier></wps100:Output></wps100:ResponseDocument></wps100:ResponseForm></wps100:Execute> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteRequest4.xml�������������������������������������������0000664�0000000�0000000�00000010045�13217064120�0023221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<wps:Execute xmlns:ogc="http://www.opengis.net/ogc" xmlns:gml="http://www.opengis.net/gml" xmlns:wfs="http://www.opengis.net/wfs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns="http://www.opengis.net/wps/1.0.0" service="WPS" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_request.xsd"><ows:Identifier>gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ows:Identifier><wps:DataInputs><wps:Input><ows:Identifier>FEATURE_ATTRIBUTE_NAME</ows:Identifier><wps:Data><wps:LiteralData>STATE</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_URI</ows:Identifier><wps:Data><wps:LiteralData>dods://igsarm-cida-thredds1.er.usgs.gov:8080/thredds/dodsC/dcp/conus_grid.w_meta.ncml</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1b_tmax</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1b_pr</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DATASET_ID</ows:Identifier><wps:Data><wps:LiteralData>ccsm3_a1fi_tmax</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_START</ows:Identifier><wps:Data><wps:LiteralData>1960-01-01T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>TIME_END</ows:Identifier><wps:Data><wps:LiteralData>1960-12-31T00:00:00.000Z</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>REQUIRE_FULL_COVERAGE</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>DELIMITER</ows:Identifier><wps:Data><wps:LiteralData>COMMA</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MEAN</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MINIMUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>MAXIMUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>WEIGHT_SUM</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>VARIANCE</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>STD_DEV</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>STATISTICS</ows:Identifier><wps:Data><wps:LiteralData>COUNT</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>GROUP_BY</ows:Identifier><wps:Data><wps:LiteralData>STATISTIC</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_TIMESTEP</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>SUMMARIZE_FEATURE_ATTRIBUTE</ows:Identifier><wps:Data><wps:LiteralData>true</wps:LiteralData></wps:Data></wps:Input><wps:Input><ows:Identifier>FEATURE_COLLECTION</ows:Identifier><wps:Reference xlink:href="http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs" method="POST"><wps:Body><wfs:GetFeature xsi:schemaLocation="http://www.opengis.net/wfs http://schemas.opengis.net/wfs/1.1.0/wfs.xsd" outputFormat="text/xml; subtype=gml/3.1.1" version="1.1.0" service="WFS"><wfs:Query typeName="sample:CONUS_States"><wfs:PropertyName>the_geom</wfs:PropertyName><wfs:PropertyName>STATE</wfs:PropertyName><ogc:Filter><ogc:GmlObjectId gml:id="CONUS_States.508"/><ogc:GmlObjectId gml:id="CONUS_States.469"/></ogc:Filter></wfs:Query></wfs:GetFeature></wps:Body></wps:Reference></wps:Input></wps:DataInputs><wps:ResponseForm><wps:ResponseDocument status="true" storeExecuteResponse="true"><wps:Output asReference="true"><ows:Identifier>OUTPUT</ows:Identifier></wps:Output></wps:ResponseDocument></wps:ResponseForm></wps:Execute>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteResponse1a.xml�����������������������������������������0000664�0000000�0000000�00000001704�13217064120�0023527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <ns:ExecuteResponse xmlns:ns="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd" serviceInstance="http://cida.usgs.gov/climate/gdp/process/WebProcessingService?REQUEST=GetCapabilities&amp;SERVICE=WPS" xml:lang="en-US" service="WPS" version="1.0.0" statusLocation="http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1317765263148"> <ns:Process ns:processVersion="1.0.0"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Feature Weighted Grid Statistics</ns1:Title> </ns:Process> <ns:Status creationTime="2011-10-04T16:54:23.148-05:00"> <ns:ProcessStarted /> </ns:Status> </ns:ExecuteResponse>������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_USGSExecuteResponse1b.xml�����������������������������������������0000664�0000000�0000000�00000010101�13217064120�0023517�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version='1.0' encoding='UTF-8'?> <ns:ExecuteResponse xmlns:ns="http://www.opengis.net/wps/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd" serviceInstance="http://cida.usgs.gov/climate/gdp/process/WebProcessingService?REQUEST=GetCapabilities&amp;SERVICE=WPS" xml:lang="en-US" service="WPS" version="1.0.0" statusLocation="http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1318528582026"> <ns:Process ns:processVersion="1.0.0"> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">gov.usgs.cida.gdp.wps.algorithm.FeatureWeightedGridStatisticsAlgorithm</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Feature Weighted Grid Statistics</ns1:Title> </ns:Process> <ns:Status creationTime="2011-10-13T12:56:22.025-05:00"> <ns:ProcessSucceeded>Process successful</ns:ProcessSucceeded> </ns:Status> <wps:DataInputs xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink"> <wps:Input> <ows:Identifier>FEATURE_ATTRIBUTE_NAME</ows:Identifier> <wps:Data> <wps:LiteralData>ID</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>DATASET_URI</ows:Identifier> <wps:Data> <wps:LiteralData>dods://hydra.fsl.noaa.gov/thredds/dodsC/oc_gis_downscaling/sresb1/ncar_ccsm3_0.1/Prcp/ncar_ccsm3_0.1.sresb1.monthly.Prcp.1950.nc</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>DATASET_ID</ows:Identifier> <wps:Data> <wps:LiteralData>Prcp</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>TIME_START</ows:Identifier> <wps:Data> <wps:LiteralData>1950-01-16T00:00:00.000Z</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>TIME_END</ows:Identifier> <wps:Data> <wps:LiteralData>1950-12-15T00:00:00.000Z</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>REQUIRE_FULL_COVERAGE</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>DELIMITER</ows:Identifier> <wps:Data> <wps:LiteralData>COMMA</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>STATISTICS</ows:Identifier> <wps:Data> <wps:LiteralData>MEAN</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>GROUP_BY</ows:Identifier> <wps:Data> <wps:LiteralData>STATISTIC</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>SUMMARIZE_TIMESTEP</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>SUMMARIZE_FEATURE_ATTRIBUTE</ows:Identifier> <wps:Data> <wps:LiteralData>true</wps:LiteralData> </wps:Data> </wps:Input> <wps:Input> <ows:Identifier>FEATURE_COLLECTION</ows:Identifier> <wps:Reference xlink:href="http://igsarm-cida-gdp2.er.usgs.gov:8082/geoserver/wfs"> <wps:Body> <wfs:GetFeature xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc" xmlns:wfs="http://www.opengis.net/wfs" outputFormat="text/xml; subtype=gml/3.1.1" service="WFS" version="1.1.0" xsi:schemaLocation="http://www.opengis.net/wfs ../wfs/1.1.0/WFS.xsd"> <wfs:Query typeName="draw:luca"> <wfs:PropertyName>the_geom</wfs:PropertyName> <wfs:PropertyName>ID</wfs:PropertyName> </wfs:Query> </wfs:GetFeature> </wps:Body> </wps:Reference> </wps:Input> </wps:DataInputs> <ns:ProcessOutputs> <ns:Output> <ns1:Identifier xmlns:ns1="http://www.opengis.net/ows/1.1">OUTPUT</ns1:Identifier> <ns1:Title xmlns:ns1="http://www.opengis.net/ows/1.1">Output File</ns1:Title> <ns:Reference encoding="UTF-8" mimeType="text/csv" href="http://cida.usgs.gov/climate/gdp/process/RetrieveResultServlet?id=1318528582026OUTPUT.601bb3d0-547f-4eab-8642-7c7d2834459e" /> </ns:Output> </ns:ProcessOutputs> </ns:ExecuteResponse>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/resources/wps_bbox_DescribeProcess.xml������������������������������������������0000664�0000000�0000000�00000003530�13217064120�0023552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8"?> <wps:ProcessDescriptions xmlns:wps="http://www.opengis.net/wps/1.0.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wps/1.0.0 http://schemas.openg is.net/wps/1.0.0/wpsDescribeProcess_response.xsd" service="WPS" version="1.0.0" xml:lang="en-CA"> <ProcessDescription wps:processVersion="0.1" storeSupported="true" statusSupported="true"> <ows:Identifier>bbox</ows:Identifier> <ows:Title>Bounding Box</ows:Title> <ows:Abstract>Testing BoundingBox Input/Output Parameter</ows:Abstract> <ows:Metadata xlink:title="home" xlink:href="http://emu.readthedocs.org/en/latest/index.html"/> <DataInputs> <Input minOccurs="1" maxOccurs="1"> <ows:Identifier>bbox</ows:Identifier> <ows:Title>Bounding Box</ows:Title> <BoundingBoxData> <Default> <CRS>EPSG:4326</CRS> </Default> <Supported> <CRS>EPSG:4326</CRS> <CRS>EPSG:3035</CRS> </Supported> </BoundingBoxData> </Input> </DataInputs> <ProcessOutputs> <Output> <ows:Identifier>bbox</ows:Identifier> <ows:Title>Bounding Box</ows:Title> <BoundingBoxOutput> <Default> <CRS>EPSG:4326</CRS> </Default> <Supported> <CRS>EPSG:4326</CRS> </Supported> </BoundingBoxOutput> </Output> </ProcessOutputs> </ProcessDescription> </wps:ProcessDescriptions> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/scratch/������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13217064120�0015462�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/scratch/.gitkeep����������������������������������������������������������������0000664�0000000�0000000�00000000010�13217064120�0017102�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������.gitkeep������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tests/utils.py������������������������������������������������������������������������0000664�0000000�0000000�00000004126�13217064120�0015550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������from __future__ import (absolute_import, division, print_function) import logging import os import sys from owslib.etree import etree, ElementType try: # Python 3 from urllib.parse import urlparse except ImportError: # Python 2 from urlparse import urlparse def setup_logging(loglevel='INFO'): """Helper function to setup logging for tests""" logger = logging.getLogger('owslib') logger.setLevel(getattr(logging, loglevel)) sh = logging.StreamHandler(sys.stdout) formatter = logging.Formatter('%(message)s') sh.setFormatter(formatter) logger.addHandler(sh) return logger def resource_file(filepath): return os.path.join(test_directory(), 'resources', filepath) def test_directory(): """Helper function to return path to the tests directory""" return os.path.dirname(__file__) def scratch_directory(): """Helper function to return path to the tests scratch directory""" return os.path.join(test_directory(), 'scratch') def scratch_file(filename): """Helper function to return file path in the tests scratch directory""" return os.path.join(scratch_directory(), filename) def compare_xml(a,b): if not isinstance(a, ElementType): a = etree.fromstring(a) if not isinstance(b, ElementType): b = etree.fromstring(b) return compare_elements(a,b) def compare_elements(a,b): # Tag if a.tag != b.tag: return False # Value if a.text != b.text: return False # Attributes if sorted(a.items()) != sorted(b.items()): return False # Children if len(list(a)) != len(list(b)): return False # Recurse for ac, bc in zip(list(a), list(b)): if not compare_elements(ac, bc): return False return True def cast_tuple_int_list(tup): """Set tuple float values to int for more predictable test results""" return [int(a) for a in tup] def cast_tuple_int_list_srs(tup): tup2 = cast_tuple_int_list(tup[:4]) tup2.append(tup[-1]) return tup2 def sorted_url_query(url): return sorted(urlparse(url).query.split("&")) ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������OWSLib-0.16.0/tox.ini�������������������������������������������������������������������������������0000664�0000000�0000000�00000001552�13217064120�0014207�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������[pytest] addopts = -v -rxs -s --color=yes --tb=native --ignore=setup.py --doctest-modules --doctest-glob 'tests/**/*.txt' --cov-report term-missing --cov owslib norecursedirs = .git docs examples etc cov* *.egg* pytest* .tox python_files=check_*.py python_functions=check [tox] skipsdist=True envlist=py27-with-lxml,py27-with-old-lxml,py27-without-lxml [testenv:py27-with-lxml] basepython = /opt/python-2.7.6/bin/python deps=-rrequirements.txt -rrequirements-dev.txt lxml [testenv:py27-with-old-lxml] basepython = /opt/python-2.7.6/bin/python deps=-rrequirements.txt -rrequirements-dev.txt lxml<2.3 [testenv:py27-without-lxml] basepython = /opt/python-2.7.6/bin/python deps=-rrequirements.txt -rrequirements-dev.txt [testenv] recreate=False commands= python setup.py develop py.test \ --basetemp={envtmpdir} \ {posargs} ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������