scenProc big area tips (2)

Here is another tip when using scenProc to process big areas. If you are working with raster data this can mean that you have to load a big amount of files. But there is an easier way. scenProc uses the GDAL library that supports reading GeoTIFF, JPEG2000 and other common formats. But it also supports WMS.

WMS stands for Web Mapping Service and is a technology to distribute imagery over the internet. It is this kind of technology that gives you the images you see in Google Earth for example.

To allow scenProc to read the imagery all you have to do is make a XML configuration file that specifies the WMS service. Below you will find an example and all details can be found in the GDAL documentation. Then you use this XML file as filename in the ImportGDAL step. Then the images from the WMS can be used in the steps that use raster features. Be aware that grabbing all the data might take a while.

<GDAL_WMS>
 <Service name="WMS">
 <Version>1.1.1</Version>
 <ServerUrl>http://gis.apfo.usda.gov/arcgis/services/NAIP/Florida_2013_1m/ImageServer/WMSServer?service=WMS</ServerUrl>
 <Layers>0</Layers>
 <SRS>EPSG:4326</SRS>
 <ImageFormat>image/jpeg</ImageFormat>
 <Transparent>FALSE</Transparent>
 <BBoxOrder>xyXY</BBoxOrder>
 </Service>
 <DataWindow>
 <UpperLeftX>-87.71</UpperLeftX>
 <UpperLeftY>31.09</UpperLeftY>
 <LowerRightX>-79.96</LowerRightX>
 <LowerRightY>24.42</LowerRightY>
 <SizeX>855776</SizeX>
 <SizeY>826421</SizeY>
 </DataWindow>
 <BandsCount>3</BandsCount>
</GDAL_WMS>

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.