WMS -- Web Map Services

Accessing several different types of web image services is possible using the WMS format in GDAL. Services are accessed by creating a local service description XML file -- there are examples below for each of the supported image services. It is important that there be no spaces or other content before the <GDAL_WMS> element.

<GDAL_WMS>
<Service name="WMS"> Define what mini-driver to use, currently supported are: WMS, WorldWind, TileService. (required)
<Version>1.1.1</Version> WMS version. (optional, defaults to 1.1.1)
<ServerURL>http://onearth.jpl.nasa.gov/wms.cgi?</ServerUrl> WMS server URL. (required)
<SRS>EPSG:4326</SRS> Image projection (optional, defaults to EPSG:4326, WMS version 1.1.1 or below only)
<CRS>CRS:83</CRS> Image projection (optional, defaults to EPSG:4326, WMS version 1.3.0 or above only)
<ImageFormat>image/jpeg</ImageFormat> Format in which to request data. Paletted formats like image/gif will be converted to RGB. (optional, defaults to image/jpeg)
<Layers>modis,global_mosaic</Layers> Comma separated list of layers. (required)
<Styles></Styles> Comma separated list of styles. (optional)
<BBoxOrder>xyXY</BBoxOrder> Reorder bbox coordinates arbitrarly. May be required for version 1.3 servers. (optional)
x - low X coordinate, y - low Y coordinate, X - high X coordinate, Y - high Y coordinate
</Service>
<DataWindow> Define size and extents of the data. (required)
<UpperLeftX>-180.0</UpperLeftX> X (longitude) coordinate of upper-left corner. (optional, defaults to -180.0)
<UpperLeftY>90.0</UpperLeftY> Y (latitude) coordinate of upper-left corner. (optional, defaults to 90.0)
<LowerRightX>180.0</LowerRightX> X (longitude) coordinate of lower-right corner. (optional, defaults to 180.0)
<LowerRightY>-90.0</LowerRightY> Y (latitude) coordinate of lower-right corner. (optional, defaults to -90.0)
<SizeX>2666666</SizeX> Image size in pixels.
<SizeY>1333333</SizeY> Image size in pixels.
<TileX>0</TileX> Added to tile X value at highest resolution. (ignored for WMS, tiled image sources only, optional, defaults to 0)
<TileY>0</TileY> Added to tile Y value at highest resolution. (ignored for WMS, tiled image sources only, optional, defaults to 0)
<TileLevel>0</TileLevel> Tile level at highest resolution. (tiled image sources only, optional, defaults to 0)
<TileCountX>0</TileCountX> Can be used to define image size, SizeX = TileCountX * BlockSizeX * 2TileLevel. (tiled image sources only, optional, defaults to 0)
<TileCountY>0</TileCountY> Can be used to define image size, SizeY = TileCountY * BlockSizeY * 2TileLevel. (tiled image sources only, optional, defaults to 0)
</DataWindow>
<Projection>EPSG:4326</Projection> Image projection (optional, defaults to value reported by mini-driver or EPSG:4326)
<BandsCount>3</BandsCount> Number of bands/channels, 1 for grayscale data, 3 for RGB. (optional, defaults to 3)
<BlockSizeX>1024</BlockSizeX> Block size in pixels. (optional, defaults to 1024)
<BlockSizeY>1024</BlockSizeY> Block size in pixels. (optional, defaults to 1024)
<OverviewCount>10</OverviewCount> Count of reduced resolution layers each having 2 times lower resolution. (optional, default is calculated at runtime)
<Cache> Enable local disk cache. Allows for offline operation. (optional, defaults to no cache)
<Path>./gdalwmscache</Path> Location where to store cache files. It is safe to use same cache path for different data sources. (optional, defaults to ./gdalwmscache)
<Depth>2</Depth> Number of directory layers. 2 will result in files being written as cache_path/A/B/ABCDEF... (optional, defaults to 2)
<Extension>.jpg</Extension> Append to cache files. (optional, defaults to none)
</Cache>
<MaxConnections>2</MaxConnections> Maximum number of simultaneous connections. (optional, defaults to 2)
<Timeout>300</Timeout> Connection timeout in seconds. (optional, defaults to 300)
<OfflineMode>true</OfflineMode> Do not download any new images, use only what is in cache. Usefull only with cache enabled. (optional, defaults to false)
<AdviseRead>true</AdviseRead> Enable AdviseRead API call - download images into cache. (optional, defaults to false)
<VerifyAdviseRead>true</VerifyAdviseRead> Open each downloaded image and do some basic checks before writing into cache. Disabling can save some CPU cycles if server is trusted to always return correct images. (optional, defaults to true)
<ClampRequests>false</ClampRequests> Should requests, that otherwise would be partially outside of defined data window, be clipped resulting in smaller than block size request. (optional, defaults to true)
</GDAL_WMS>

Examples

See Also: