Working with WMS: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
m New page: == Find out what a WMS service can do == Start with the basic URL http://wms.oregonexplorer.info/ImageX/ecw_wms.dll? Then add the capabilities request http://wms.oregonexplorer.info/Im...
 
Brian Wilson (talk | contribs)
mNo edit summary
Line 1: Line 1:
== Find out what a WMS service can do ==
== Find out what a WMS service can do ==


Start with the basic URL
Start with the basic URL, this is the OGC reference server. This will just return a (relatively useless) informational message.


http://wms.oregonexplorer.info/ImageX/ecw_wms.dll?
http://metaspatial.net/cgi-bin/ogc-wms.xml


Then add the capabilities request
Then add the GetCapabilities request (note these are not supposed to be case sensitive, so REQUEST=request)


http://wms.oregonexplorer.info/ImageX/ecw_wms.dll?request=GetCapabilities&service=wms
http://metaspatial.net/cgi-bin/ogc-wms.xml?request=GetCapabilities&service=wms
 
This will return an extensive XML file with the capabilities of the server listed.
 
== Find out about a layer ==
 
Plucking the name of a layer from the GetCapabilities request, I can ask for more information.
If I omit the version I get an error.
 
http://metaspatial.net/cgi-bin/ogc-wms.xml?service=wms&request=DescribeLayer&layer=OGC-WMS_reference-server_with_Ordnance_Survey_OpenData&version=1.3.0


This should return an XML file with the capabilities of the server listed.


=== Setting the SRS ===
=== Setting the SRS ===

Revision as of 20:27, 28 February 2020

Find out what a WMS service can do

Start with the basic URL, this is the OGC reference server. This will just return a (relatively useless) informational message.

http://metaspatial.net/cgi-bin/ogc-wms.xml

Then add the GetCapabilities request (note these are not supposed to be case sensitive, so REQUEST=request)

http://metaspatial.net/cgi-bin/ogc-wms.xml?request=GetCapabilities&service=wms

This will return an extensive XML file with the capabilities of the server listed.

Find out about a layer

Plucking the name of a layer from the GetCapabilities request, I can ask for more information. If I omit the version I get an error.

http://metaspatial.net/cgi-bin/ogc-wms.xml?service=wms&request=DescribeLayer&layer=OGC-WMS_reference-server_with_Ordnance_Survey_OpenData&version=1.3.0


Setting the SRS

In my case, the default for this server is to return its images in the spatial referece setting "EPSG=4326" which is unprojected WGS84. What I need is Oregon state system which is "EPSG=2992"

I can add the SRS like this:

http://wms.oregonexplorer.info/ImageX/ecw_wms.dll?SRS=EPSG:2992